Jump to content

Mijzelf

Member
  • Posts

    464
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    country-ZZ

Everything posted by Mijzelf

  1. According to Wikipedia, version 4.52 is the first to support W95. That *could* mean that you are creating 16 bit software. When you are creating 32 bit software, look if you can target for Windows 4.0. (That should be a linker option). If you can't, try to add the DS_3DLOOK flag after STYLE.
  2. if(crSel.cpMin != crSel.cpMax) { DWORD dwBufferSize = crSel.cpMax - crSel.cpMin + 1; pszText = GlobalAlloc(GPTR, dwBufferSize); Maybe cpMax is -1? In that case you alloc 0 bytes to contain all text.
  3. Maybe Process Monitor can give you a clue what it's waiting for.
  4. In most cases you can't change the subnet of the VPN. To change the subnet of the LAN, use a browser to open the router setup screen, (use the 'default gateway' address), and search for DHCP server settings. It will probably give addresses in the 10.0.0.x range, or 192.168.0.x range. Change that to 10.0.1.x or 192.168.1.x or something like that.
  5. Standard pitfall when using VPN: the subnet of the VPN *must* be different of the subnet of the LAN.
  6. RUNO, an acient king of the Britons. RENO, the biggest little city. REDO, Un-undo
  7. Seems to me that (among other problems) you floppy drive has died. Try if you can change the bootsequence to CDROM,C, and boot from W98SE cd.
  8. Yes, AFAIK that is the most appropriate way. To ensure the buffer is big enough you could also use GetWindowTextLength(), since the selected text cannot be bigger than the total text. Of course this can be inefficient when you only want to copy a few bytes. As you may have noticed, EM_GETSELTEXT is a dangerous function, since you can't provide the size of the buffer you're using. So I would avoid using it, and use a combination of EM_EXGETSEL and EM_GETTEXTRANGE
  9. You'll have to be a bit more specific. There are serveral different ways to get the needed buffer size. Sometimes there's you can provide a null-pointer in which case the function returns the needed buffersize. Sometimes there's a seperate function to ask for the needed buffersize. Sometimes the only way is polling. (Provide a buffer, and while the system tells it's not enough, enlarge it.)
  10. JANO, a small town in Honduras JANE, a subway station in Toronto JANG, One of the Marshall Islands
  11. Sometimes my explorer starts using 100% processortime when I open a folder, without showing anything. I don't know if it will stop doing so when I wait long enough (too impatient). When it happens I use Process Explorer to kill the thread in Explorer which is consuming all time, and this solves the problem.
  12. %programfiles% is a complete path. So the command should be del %programfiles%\Common Files\xxx\xxx\xxx\some.exe
  13. SAGO, starch from the sago palm DAGO, disdainful name for a person from Spain, Portugal or Italy DADO FADO, portuguese music genre
  14. ? A standard 1.44MB floppy has 2 sides, 18 sectors/track, 80 tracks and 512 bytes/sector. This gives 2*18*80*512 bytes = 1474560 bytes, which is 1.40625 MiB. Maybe it has a formatted size of 1.38 (MB? MiB?), but the used filesystem is not a part of the floppy specification.
  15. I think foppy size is derived from its physical geometry, so you should write 80*18*2*512 = 1474560 instead meaningless 1.44*1024*1000 even if the result is same. 1.44*1000*1024 is not meaningless. It's historical grown. The predecessor was a 720kB (720*1024) floppy. This floppy size was exactly doubled, making a 1440kB floppy, in short 1.44MB. This should have been 1.406MB, of course, but how could the marketor say he doubled the size of the '720', and then sell you a floppy which is not twice as big?
  16. I cancel Wark, since it already has been used. WACO, a city in Texas.
  17. I suppose you mean stdout. Did you try '| more'?
  18. It's a common problem that dos programs can't print to a printer which is not connected to a printerport. Maybe this can help you: http://www.columbia.edu/~em36/wpdos/winprint.html#usbprint
  19. Can you boot to dos with your recovery CD? In that case, try typing sys C:<enter> from the command prompt. But first check in the BIOS setup if there is an option 'virus protection' or something like that, and disable it. This option protects the first sector on the disk from beeing written. This sector has to be written to make the disk bootable.
  20. Hey Anonymous user, do you have a script running watching this thread? WARK, yet another river
  21. When running in safe mode no necessary programs will be started. On the other hand, no chipset drivers will be started either, so the disk access will be (much) slower.
  22. ZUNK, a digital image editor HUNK
  23. Probably you'll have to download unicows.dll. Put the dll in your system directory.
×
×
  • Create New...