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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by bgb

  1. bgb

    Initializing an Array

    Might be quicker to set the contents of the pointer to zero, using Ats and Hats and copying zero into it.!! In pseudo its something like move(Pointer of c_table, sizeof(c_table), 0) Cant remember the syntax, something along the lines of Its something along those lines anyway.
  2. bgb

    how do i make scrolling text?

    Previous may have a few too many components. Simple and quite OO is..., One timer, one edit (or any text comp. and a few vars. procedure TForm1.Timer1Timer(Sender: TObject); var WrappedStr : string; begin if StrLength - CurrentPos >= CharsToDisplay then begin WrappedStr :=...

Part and Inventory Search

Back
Top