similar to: Control + Function key doesn't work in VB form

Displaying 20 results from an estimated 20000 matches similar to: "Control + Function key doesn't work in VB form"

2000 Dec 15
2
debugger not recognizing C routine names
Something seems to have changed with the debugger option since I used it last, unless I've forgotten something really stupid (much more likely) . The debugger doesn't seem to recognise the names of C routines ***************** [jonm at localhost jonm]$ cat test.c #include "S.h" void test(int *x,int *y){ y[0]=x[0]+2; } [jonm at localhost jonm]$ R COMPILE test.c gcc
2000 Jul 09
1
minor typos in help pages (PR#598)
Dear R Team, A few monor typos in help pages that I noticed. Thank you very much. Rashid Nassar 1. help(gl) Examples: # First control, then treatment: gl(2,8, label=c("Ctnrl","Treat")) ^^^^ I assume "Cntrl" is meant. ========================================== 2. help(pmatch) Details: The behaviour
2011 Sep 29
3
grep and PCRE fun
Hello, I think I've found a bug in the C function do_grep located in src/main/grep.c. It seems to affect both the latest revisions of R-2-13-branch and trunk when compiling R without optimizations and with it's own version of pcre located in src/extra, at least on ubuntu 10.04. According to the pcre_exec API (I presume the later versions), the ovecsize argument must be a multiple of 3 ,
2010 Jul 15
2
Conflict with Ctrl key in MacOS?
After a switch from Windows to Macintosh (running Mac OSX 10.6), I wanted to be able to run a dear old text editor, NoteTab Pro, which is only available in a Windows version. I did an installation using Wine, and after some initial issues in finding the supporting files to the editor (the path to them turned out to have 14(!) levels), everything was running smoothly. But pretty soon the MacBook
2001 Oct 09
3
vb-control or dll?
Hi. I want to do a program which uses ogg, but i only have vb. Is tjere a control (ocx) or a dll and if there is, what functions do i have to call? Thanks in advance, Felix --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'vorbis-request@xiph.org' containing only the word
2017 Dec 01
0
[PATCH] virtio_balloon: fix increment of vb->num_pfns in fill_balloon()
commit c7cdff0e8647 ("virtio_balloon: fix deadlock on OOM") changed code to increment vb->num_pfns before call to set_page_pfns(), which used to happen only after. This patch fixes boot hang for me on ppc64le KVM guests. Fixes: c7cdff0e8647 ("virtio_balloon: fix deadlock on OOM") Cc: Michael S. Tsirkin <mst at redhat.com> Cc: Tetsuo Handa <penguin-kernel at
2017 Dec 01
0
[PATCH] virtio_balloon: fix increment of vb->num_pfns in fill_balloon()
commit c7cdff0e8647 ("virtio_balloon: fix deadlock on OOM") changed code to increment vb->num_pfns before call to set_page_pfns(), which used to happen only after. This patch fixes boot hang for me on ppc64le KVM guests. Fixes: c7cdff0e8647 ("virtio_balloon: fix deadlock on OOM") Cc: Michael S. Tsirkin <mst at redhat.com> Cc: Tetsuo Handa <penguin-kernel at
2017 Feb 08
1
[PATCH] mm balloon: umount balloon_mnt when remove vb device
With CONFIG_BALLOON_COMPACTION=y, it will mount balloon_mnt for balloon page migration when probe a virtio_balloon device, however do not unmount it when remove the device, fix it. Fixes: b1123ea6d3b3 ("mm: balloon: use general non-lru movable page feature") Signed-off-by: Yisheng Xie <xieyisheng1 at huawei.com> --- drivers/virtio/virtio_balloon.c | 4 ++++ 1 file changed, 4
2017 Feb 08
1
[PATCH] mm balloon: umount balloon_mnt when remove vb device
With CONFIG_BALLOON_COMPACTION=y, it will mount balloon_mnt for balloon page migration when probe a virtio_balloon device, however do not unmount it when remove the device, fix it. Fixes: b1123ea6d3b3 ("mm: balloon: use general non-lru movable page feature") Signed-off-by: Yisheng Xie <xieyisheng1 at huawei.com> --- drivers/virtio/virtio_balloon.c | 4 ++++ 1 file changed, 4
2006 Jan 07
2
VB on Linux with Wine
We have 50 complex applications written in Microsoft Visual Basic 6.0 providing banking solutions. We are seriously thinking of porting our applications to Linux under WINE. Is it possible to do so? Nature of our VB applications: ------------------------------ 1. Extensively used all controls provided in VB 2. Total size of our applications is around 2 million lines 3. Applications are having
2007 Mar 19
4
VB 3.0 Installation on Wine
I'm having problems running VB 3.0 programs under Wine and installing the VB 3.0 development environment. According to the app DB people have got VB 3.0 running before. I'm running on Ubuntu Dapper (x86). Previous tests were with earlier versions of Wine - I've had this problem hanging about for a few weeks now. This morning I uninstalled Wine with extreme prejudice (i.e., asking
2005 May 11
0
RODBC Oracle and VB automation with R(D)COM
I haven't been able to find any help on this and am really struggling. I've been using RODBC 1.1-3 and R(D)COM v1.35 for a little over a year successfully with my Access Database, and now im switching to Oracle 9i. I use R 2.0.1 on a Windows XP platform, 1GB ram, 2GHz Intel Processor) When I connect through the Rgui R console, the connection is successful (but through VB the attempt
2005 Feb 02
0
How to run R-script from remote VB program
I have installed D COM server1.35 and can send a line of R code and get a result from my VB (.net) program. So I located all the R commands in a file ("a.R") in the dir path ("c:\") then call VB using source as below. Dim RLink As StatConnector RLink = New StatConnector RLink.Init("R") dim str str = "source(" + """" +
2007 Mar 19
1
error running a vb script in wine
Can anyone help me with this error? I get this error when I run my vb script in wine. The script creates a shortcut and works fine when I run it at a cmd prompt in Windows. I'm new to both vb script and wine. Z:\root\vb_shortcut>cscript mk_shortcut.vbs "temp" "Z:\root\vb_shortcut \test.txt " "." Microsoft (R) Windows Script Host Version 5.6 Copyright (C)
2009 May 08
1
Get (feature, threshold) from Output of rpart() for Stump Tree
Hi, I have a question regarding how to get some partial information from the output of rpart, which could be used as the first argument to predict. For example, in my code, I try to learn a stump tree (decision tree of depth 2):    "fit        <- rpart(y~bx, weights = w/mean(w), control = cntrl)     print(fit)     btest[1,]  <- predict(fit, newdata = data.frame(bx)) " I found
2017 Apr 13
1
Q: Windows/readline: missing history search
Hello! Ever since I used R on Windows (RGui) I am missing the ability to search the command history (Cntrl+R (reverse-search-history) in BASH, for example). Is there a particular reason for having this function disabled? Another feature would be word-wise delete (kill-word, backward-kill-word). Probably being able to use the Alt-key as Meta key for readline (instead of activating menu entries)
2005 Sep 15
1
BricsCad and VB application
We are developing a VB 6.0 application to work with BricsCad (last linux version). But when I try to connect to BricsCad in Linux using the VB application it hangs the system. But if I do the same in Windows it works perfectly. Wine doesn't throw any error message, just hang the computer. Please help me!! Gabriel.
2008 Oct 13
3
Need help with an old VB application
Hi, i'm not new with wine but i'm in trouble with an old vb application. I just tried everything i know to solve but i'm still at the start point. I want to open a document (.rtf or .doc ) with OO . This VB application needs the full path of the application i want to use to open the documents. I write down the complete and full path ( Z:/xxx/yy/oowriter ). The path is correct and the
2009 Feb 08
1
Solaris 10 and Vb.net?
Does solaris 10 using Wine following working? - vb.net - devc++ Q. Can vb.net or devc++ application connect to the Solaris 10 > mySQL database > running thread? How we do the ODBC things.
2004 Dec 01
2
How to use Ogg_d.dll in VB.NET ?
Hi everybody This is the first time I write on the list, hope my topic is accepted. I have been looking in the list archive for answers on this question but no luck and hope that one of you wise people can guide me in the right direction. I have tried to add the DLL in the references list under VB.NET but its not accepted as a NET DLL or COM DLL, and I cant find out how to call it from within