similar to: wine and drawing functions

Displaying 20 results from an estimated 200 matches similar to: "wine and drawing functions"

2005 Mar 12
1
wine20050310 DC++ 0.670 -Is Active mode possible?
Hi all, I've been using DC++ for some time now without much trouble, but now i wanted to use it's active mode (file-settings-Connection_settings) I've entered the correct IP and port, just as i did in windows. Then i restarted DC++. DC++ then gave me a messagebox saying: "Port xxxx is busy, please choose another one in the settings dialog, or disable any other application
2007 Mar 19
1
make apps parsing html code in wine
Hi everybody, since a long time I got the following problem: There are several apps, that use html in a part of the application window. A common example is partypoker which I tried to get running. If you log in, you got the cashier at the left side in the app window, showing your bankroll and partypoints. A similar example would be Fritz 8/9 (for playing chess on the internet). They have a
2005 Nov 23
1
Richedit problem
Hi All, I've tried to run my software using wine... It looks like work, connection into database.... work... but there's something missing... these are the comment : fixme:winspool:WINSPOOL_EnumPrinters We don't handle PRINTER_ENUM_CONNECTIONS fixme:richedit:RichEditANSIWndProc EM_EXLIMITTEXT: stub fixme:richedit:RichEditANSIWndProc EM_HIDESELECTION: stub
2005 Jul 28
2
problem with an IF statement?
Can somebody please take a look at this and tell me whats going wrong? It seems to be parsing wronly around the 'if' statement and gives me a directory listing. Thanks in advance Tom N.B. datan is an invented dataset xvals<-c(1,0.4,0.2) datan<-data.frame(s1=c(3,4,5),s2=c(5,5,5),s3=c(21,55,34),s4=c(5,3,2)) datan$sint<-NA datan$sgrad<-NA for(icount in 1:dim(datan)[1]) {
2013 Apr 24
0
help with execution of 'embarrassingly parallel' problem using foreach, doParallel on a windows system
Dear R helpers, I have what another member on this forum described as an embarrassingly parallel problem. I am trying to fit models on subsets of some data based on unique combinations of two id factors in the dataset. Total number of combinations is 30^5, and this takes a long time. So, I would like fit models for each of the datasets produced by subsetting on the unique combinations, splitting
2007 Mar 12
2
e2fsck hanging
I'm trying to run e2fsck on a ~6TB filesystem which is about 90% full. We're doing backup to disk to this filesystem, and have a number of hard links (link counts up to 90). strace shows: write(1, "Pass 2: Checking ", 17) = 17 write(1, "directory", 9) = 9 write(1, " structure\n", 11) = 11 mmap(NULL, 91574272,
2009 May 15
1
help on Nan error
Hi guys My data is Tasmania txt There are *N *= 16 samples, consisting of 8 replicate cores (taken from different areas across the sandflat) from each of 2 natural 'treatments' (either disturbed "D" or undisturbed "U" by soldier crab burrowing activity. The abundances of each of *p *= 56 species were recorded from each core (variables 1 to 39 in the file are
2007 Apr 07
0
Call for testers w/ using BackupPC (or equivalent)
For a while now, I've been receiving complaints from users who have been using BackupPC, or some other equivalent backup progam which functions by using hard links to create incremental backups. (There may be some people who are using rsync to do the same thing; if you know of other such backup programs with such properties, please let me know.) BackupPC works by creating hard link trees, so
2010 May 12
1
snow makeCluster (makeSOCKcluster) not working in R-2.11
Hello, I was using snow to parallel-process some code in R-2.10 (32-bit windows. ). The code is as follows: require(foreach) require(doSNOW) cl <- makeCluster(6, type='SOCK') registerDoSNOW(cl) bl2 <- foreach(i=icount(length(unqmrno))) %dopar% { (some code here) } stopCluster(cl) When I run the same code in Windows R-2.11 (either 32-bit or 64-bit), R hangs at
2012 Mar 16
2
[PATCH v3] use INT64_MAX as max expiration
Change from v2: Correct the logic when calculating icount. Change from v1: According to Jan and Stefano''s comments, drop the previous logic which setting the value in an arbitrary way and use Stefano''s suggestion instead. Currently, the max expiration time is 2147483647ns(INT32_MAX ns). This is enough when guest is busy, but when guest is idle, the next timer will be later than
2010 Dec 08
2
Parallel Scan of Large File
Is it possible to parallel scan a large file into a character vector in 1M chunks using scan() with the "doMC" package? Furthermore, can I specify the tasks for each child? i.e. I'm working on a Linux box with 8 cores and would like to scan in 8M records at time (all 8 cores scan 1M records at a time) from a file with 40M records total. file <-
2014 Mar 03
1
Doubled Quotas on Ubuntu
Hi all, I'm seeing doubled quotas on Windows 7 when connecting to Samba. By doubled, I mean that if I set a 1GB group quota on Linux, I see a 2GB quota on Windows 7. The quotas seem correct with Samba 3.6.19 running on a Linux 2.6.32 kernel on Mandriva; they are incorrect with Samba 3.6.22 on a Linux 3.12 kernel on Ubuntu. What could be wrong? In more detail, I'm testing on both a
2010 Feb 13
3
ocfs2 compile error in x86_64
Hi, I tried to compiled ocfs2 on 2.6.32.2 x86_64 but still failed. there are an error blow: --------------------------------------------------------------------------------------------------------------------- xattr.c: In function 'check_xattr_entry': xattr.c:250: warning: format '%u' expects type 'unsigned int', but argument 7 has type 'long int' xattr.c:287:
2010 Feb 13
3
ocfs2 compile error in x86_64
Hi, I tried to compiled ocfs2 on 2.6.32.2 x86_64 but still failed. there are an error blow: --------------------------------------------------------------------------------------------------------------------- xattr.c: In function 'check_xattr_entry': xattr.c:250: warning: format '%u' expects type 'unsigned int', but argument 7 has type 'long int' xattr.c:287:
2011 May 03
0
How do I break a foreach loop?
Hi, I've noticed that the usual "break", "next" commands do not work in a foreach loop, is there a nice way to do that? A little more detail: I am using foreach to conduct a very time consuming (may take several days if done sequentially) simulation study. The number of simulations is set to 1000. So the command I am using looks like this simplified version: grandsum
2015 May 11
1
Foreach %dopar% operator incorrectly load balancing
Dear R-SIG-Debian, I am using R version 3.1.2 with rstudio-server 0.98.113 on debian build 3.2.0-4-amd64 #1 SMP Debian 3.2.68-1+deb7u1 x86_64 GNU/Linux. I often use the %dopar% operator in from the foreach package to run code in parallel. However, the only other use on the box seemingly installed a few items and suddenly %dopar% will use far more than the number of cores I am specifying and
2010 Nov 30
1
Compiling ocfs2-tools-1.6.3 on slackware64-13.1
Hello all, I'm having trouble compiling ocfs2-tools-1.6.3 on slackware64-13.1 These are my configure flags (the last 2 I added after googling this problem, but didn't help): ./configure \ --sbindir=/sbin \ --bin=/bin \ --libdir=/usr/lib${LIBDIRSUFFIX} \ --sysconfdir=/etc \ --datadir=/etc/ocfs2 \ --sharedstatedir=/var/ocfs2 \ --libexecdir=/usr/libexec \
2006 Jul 12
3
Still trying to sort out an override problem
The program I am trying to run quits with the following error messages: fixme:richedit:RichEditANSIWndProc EM_EXLIMITTEXT: stub fixme:richedit:RichEditANSIWndProc EM_EXLIMITTEXT: stub fixme:richedit:RichEditANSIWndProc EM_EXLIMITTEXT: stub fixme:richedit:RichEditANSIWndProc EM_EXLIMITTEXT: stub fixme:richedit:RichEditANSIWndProc EM_EXLIMITTEXT: stub fixme:richedit:RichEditANSIWndProc
2005 May 18
2
OpenSong with Wine 20050419
OpenSong fails to open with Wine 20050419. OpenSong is a RealBasic application that compiles to a .exe. It is free and can be downloaded from OpenSong.org [jeff@zx5000 OpenSong]$ wine OpenSong.exe fixme:richedit:RichEditANSIWndProc WM_SETFONT: stub fixme:richedit:RichEditANSIWndProc WM_SETFONT: stub fixme:richedit:RichEditANSIWndProc WM_SETFONT: stub fixme:richedit:RichEditANSIWndProc
2006 May 30
2
can't run paltalk 8.3 under wine 9.14
Dear all , am trying to run paltalk 8.3 under wine 9.14 in no success using winecfg i've added dlls in override tape ass per franks corner site http://frankscorner.org/index.php?p=paltalk5 aslo i've exported my regedit file in xp and imported it in my fedora 4 core using wine regedit / import i've copied all the dlls in system32 in my windows to ~/.wine/fakedfolder/windows/system32