Recent content by TomGriffinII

  1. TomGriffinII

    Touch Screens

    Hello, I have an interesting problem (this is rather bizarre so bear with me). My fingers do not work well with touch screens. No, it is not a dexterity problem; but more to the point is like clicking on a number to dial. They do not seem to activate the feature and at times it takes four...
  2. TomGriffinII

    Is there a "visual" compiler that can compile for Win,Mac,Linux and Unix?

    You might want to look at Free PASCAL over at http://www.freepascal.org/ The current version can compile to: "The following operating systems are supported: Linux, FreeBSD, Haiku, Mac OS X/Darwin, DOS, Win32, Win64, WinCE, OS/2, Netware (libc and classic) and MorphOS." "Free Pascal...
  3. TomGriffinII

    Variant brain fart.

    you might try DIM xVar as Variant IF ISNULL(xVar) or ISEMPTY(xVAR) THEN 'Do your thing here for empty or null array ELSE 'Do retro programming here END IF I think that is the correct syntax; examples are available with the MSDN reference materials included with Visual Studio 97 (vb 6, vc...
  4. TomGriffinII

    Make a speaker beep in Assembly

    It's the problem with the HAL in Windows (Hardware Abstraction Layer) and also with VMware why the following will NOT toggle the numlock key in DOS, Windows 95/98/SE/Bloat Code edition. C:>debug -a100 xxxx:0100 pop DS ;pop the data segment on from the stack (remember CP/M?) xxxx:0103...
  5. TomGriffinII

    serial transfers

    Get Ralf Browns interrupt list and write directly to the 8255's using assembly and interrupts.
  6. TomGriffinII

    .bat file to autorun printer test page

    Make a text file in notepad; play with some fonts and what not then inside task scheduler issue the following "cmd.exe /s: copy whatever.txt >prn:" In essence what this does is start a command prompt and copy the text file to the default printer and exits when complete.
  7. TomGriffinII

    Public shared functions or public properties for "global" strings

    If they are global variables or some such stuff could you not make a resource Satellite DLL (used for software in multiple languages for all the global text/numbers what not)?
  8. TomGriffinII

    How to cause a harddrive to run at it's rated Ultra DMA

    Silly answer here; but in ATAPI devices (ATA-whatever) will only run as the slowest device in the chain. So if you have a slower device on the same channel it will only run at that specified speed. That is the inherent flaw using parallel ATA devices. I didn't see if you had any of that...
  9. TomGriffinII

    Is it safe to re-format an infested drive in a USB enclosure?

    Couldn't you simply boot with a DOS disk and run debug, slap together a small assembly program to zero out the MBR and partition tables? I mean BIOS understands one thing int 19h boot. If I remember correctly from my engineering days try this. Boot from a MS-DOS diskette that has debug.exe on...