Jump to content

Mijzelf

Member
  • Posts

    464
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    country-ZZ

Everything posted by Mijzelf

  1. PassingBy is not around anymore, but BenoitRen remains with us, so if the above info is not enough (but it *is* a good start), you should ask him. I'm not sure Patching "IsDebuggerPresent" to "ReadFile" is a good idea. The two API Calls have different numbers of arguments. This will cause a Stack error when the API Call returns. It is also possible that an incorrect File Read command could be executed. I would suggest "GetLastError" instead. GetLastError() output is unpredictable. I don't know why OOo would call IsDebuggerPresent(), but it could be bad news when two subsequent calls give a different result. I recommend GetCurrentProcess(), which always evaluates to TRUE, or GetDaylightFlag(), which gives FALSE for half of a year, and TRUE the other half, and can be forced to always give FALSE. (Just disable daylight saving time)
  2. Does that matter? AFAIK they all expose a 512B logical sector size, so apart from a possible performance penalty it won't hurt if you just ignore that.
  3. Hm, that's more about software patents (pure evil) than about open-source. Fortunately here in Europe software patents are not valid. I wonder if that means that HTC doesn't pay for Android systems sold in Europe (and other parts of the world with a sane legislation). BTW, I support you in your right to charge for your hard work.
  4. Still using a wrapper around smbclient I suppose? Have you tried the bare smbclient? smbclient //server/share passwordshould work in this case. As far as I know a different authentication will be used when using smbclient //server/share -U username%passwordand I wouldn't be surprised if tha latter is the default of the wrapper. (Shares with only a password are rare these days.)
  5. I have a 4.0.0.1111 dutch. PM me if you want a link.
  6. When the system has a DHCP address, you could bring down the network with 'ipconfig /release'
  7. Have you looked at Cygwin's ssh server?
  8. I used to use a ext2 filesystem driver on 98, fsdext2. This is developed by Peter van Sebille for Win95 (link), and ported to W98 by Gerald Schnabel. The page of Gerald Schnabel is no longer, but Archive.org has a copy. Unfortunately Archive.org didn't store the driver itself, but googling for fsdext2_0163.zip gives some hits.This driver is read-only, (luckily, you shouldn't write to an ext3 drive using an ext2 driver) and not rock-stable.
  9. For compatibility reasons. When a program uses a signed int to store the filepointer, it could get mad when the pointer runs negative. With this construction a program has to explicitly tell the OS that is can handle large files.
  10. As said before in this thread, having a filesystem that supports files bigger than 4GiB is not the problem. You can install NTFS support on W98. But the kernel itself doesn't support bigger files.
  11. 'Found new hardware' is searching for some *.inf file. So you'll have to point to the directory containing that file.
  12. Sorry, I don' t know. When you mount a samba share, all these settings can be added to the mount command. But I suppose you are browsing the network using Nautilus or something like that, which means that there is no *real* mount. You see a smb:// url in the address bar. I *think* it's a wrapper around smbclient, but I don' t know if there are settings, and where they could be. It could be a global setting of smbclient (which *could* be smb.conf), or a setting of Nautilus.
  13. I think you'll have to study the differences in /etc/samba/smb.conf on the different Linux distros, and then especially 'dos charset' and 'unix charset' settings.
  14. No, that won't work. Cygwin is only a shell, and can't load/support any foreign driver. You could use a 3G router for connecting your 98 box to the internet, but I'm afraid it will not be cheap.
  15. I'm running VS6 on W7. It doesn't install out of the box, but the work around is quite easy. The problem is that the installer needs Java, but the Java installer on the CD fails. To work around install the Sun Java VM (I suppose it's the Oracle Java VM now). Copy the contents of the CD to the harddisk. There is a .ini file in the root, edit this to point to the JVM instead of the MS one. Now you can install. The only incompatitibility I've found so far is that it is impossible to start a remote debug session on another W7 system. Older Windows systems (including NT3.51 and W95) work fine. (Didn't try Vista though). I only use C++, by the way. Edit: I had to reinstall, and wrote down what I did to get VS6 installed: Copy the contents of CD1 to harddisk. Install the Sun Java VM (Well Oracle now) Edit the file Setupwiz.ini, and change the line VmPath=ie4\msjavx86.exeto (in my case) VmPath="C:\Program Files\Java\jre6\bin\java.exe" Then run setup.exe.
  16. The button where you clink on is possibly just a hyperlink. When you know the hyperlink, you could use an XmlHTTPObject to download the file. I can't program in VBA (ridiculous syntax), but in javascript it could be somthing like this: xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); xmlhttp.open( "GET", "http://full.url.to/excel.document", false ); xmlhttp.send(); fso = new ActiveXObject("Scripting.FileSystemObject"); file = fso.CreateTextFile("C:\\Path\\To\\Desired\\excel.document"); file.Write(xmlhttp.responseText); I didn't test it. I think it only works when the excel sheet is actually a csv file.
  17. While that could be a clipboard limit, it doesn't need to be. There is a limitation on bitmap handle size: link
  18. While this may work, you cannot count on a stable browser, this way. Opera will likely crash when it calls DuplicateToken, because it uses the wrong parameters, and expects the result on the wrong place. Using InterlockedExchange instead of InterlockedCompareExchange will increase the possibility of a wrong thread synchronization. But I suppose this will be reduced again because only one processor is used. This could be a side effect of the usage of GlobalMemoryStatus. Due to the different layout of the used structs, Opera will read some bogus value for ullAvailVirtual, and decide to keep things cached in memory instead of on disk.Using KernelEx could give a more stable experience.
  19. Years ago there was a printer driver (HP, I think), which also gave FPU errors. A workaround was to switch off the FPU in the device manager.
  20. You have got a DNS or a gateway problem. Have a look at winipcfg (Start->Run->Winipcfg) to find the used DNS and gateway. According to this page the gateway should be 192.168.0.1, while the ip address should be in the range 192.169.0.2-254. The latter seems to be OK, else filesharing wouldn't work either.The article doesn't say anything about DNS, so I suppose this is just the DNS of the host propagated by it's DHCP server. To see the DNS servers of the host, open a command prompt and type 'ipconfig /all'.
  21. @Kelsenellenelvian, that is a 32 bit version. This is the right one.
  22. When you execute from the commandline: .\Exe\Program.exe then the 'directory from which the application was loaded' is CWD\Exe, while CWD is CWD.
×
×
  • Create New...