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. dprotas

    BDE Alias through Delphi

    You should take a look at the DbiAddAlias function. It's documented in BDE32.HLP. It basically adds a new alias to the BDE configuration file (IDAPI.CFG for example). This procedure creates an alias to an Oracle database: procedure CreateNewOracleDBEAlias(aAliasName, aSID, aUserName: string)...
  2. dprotas

    Adding a TDate element to a TList object

    Since TList stores pointers you can always resort to so some dirty code and get pointers to your TDate function GetTDateTimePointer(aDate: TDateTime): Pointer; var xPointer: ^TDateTime; begin New(xPointer); xPointer^:= aDate; Result:= xPointer; end; you should always be careful with...
  3. dprotas

    listbox.items property tstringlist?

    Doing what Ulfeng proposes won't work. TListBox's Items property has this line in its Set method: Items.Assign(Value); so assigning SL to AListBox.Items only copies the string inside SL to the string holder of AList. The only way to do what you ask would be inheriting from TListBox and...

Part and Inventory Search

Back
Top