Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. geoclock

    register usage

    No, I understand the 386 instruction set very well. My question was what DELPHI needs preserved in these registers. I have seen one item that suggests that ESI points to the last object accessed. Also, windows API calls do NOT preserve ESI or EDI.
  2. geoclock

    register usage

    I have some assembly language routines I am migrating from Delph1 to Delphi4. It seems that delphi4 requires esi, edi, and ebx to be saved over calls to the asm routine. I have found some documention stating this requirement, but nowhere have I found WHAT these registers are being used for...
  3. geoclock

    Random ASCII String Generator

    Try something like this: function RandString(const stringsize: integer): string; var n: integer; s: string; const ss: string = '0123456789abc'; {list all the charcaters you want to use} begin s:=''; for n:=1 to stringsize do s:=s+ss[random(length(ss))+1]...
  4. geoclock

    How do I self-extract in XP?

    You need to make sure you are opening the file for read-only (FileMode:=0). Earlier versions of the OS were satisfied by your not writting to a file in r/o use, but ME and later make you first promise not to write to it.
  5. geoclock

    terminate application if condition not met

    I have had this problem in Delphi 1 - it seems to be timing related. Try sending a close message instead of halting: PostMessage(Form1.handle,WM_CLOSE,0,0);
  6. geoclock

    cannot change visible in onshow or onhide

    My large delphi 1 program occasionally gets the fatal error "cannot change visible in onshow or onhide" soon after startup. I do not directly manipulate the visible property, nor do I override the onshow or onhide event handlers. I have eliminated this problem on my own HW (just by...

Part and Inventory Search

Back
Top