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 Mike Lewis 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. ashkar

    EAccessViolation in a class overloaded constructor.

    I can't believe it. I am ashamed of myself. The instance is created in another unit, but, perhaps due to too much coffee o too little sleep I wrote: newTrack.Create('trackname'); instead of newTrack := TTrack.Create('trackname'); and since the exception is not generated in that line, but in...
  2. ashkar

    EAccessViolation in a class overloaded constructor.

    Hi, Although I've been doing some stuff with Delphi, I thin kthis is the first time I'm defining a subclass directly from TObject. Well, I have the following: type TTrack = class(TObject) public Name: AnsiString; Loops: TObjectList; FXs: TObjectList; constructor...
  3. ashkar

    Setting up an Internet Connection w/Delphi

    oh, well, the fact is that I want to setup an internet connection in systems where .ins files don't work, which is the case with Win 95, for example. :/
  4. ashkar

    Setting up an Internet Connection w/Delphi

    Hi, Anyone has any idea of how could I setup an Internet Connection (as a .ins file would) with a Delphi program? I just need some pointers, like Registry Keys or files involved (if any). Thanks :)
  5. ashkar

    Access DSN less connection.

    Hmm... Thanks :), but unfortunately that doesn't solve my problem. In the end, what I need to do is some way to connect to access DB without having to set anything outside my program. I'm writing a CGI program that will reside in a NT server that I don't admin, so I need to connect to the DB...
  6. ashkar

    Access DSN less connection.

    Hi, I've never worked with DBs in Deplhi before so I'm kind of lost. Is there a way to connect to a Access 97 DB without using a DSN? A little example perhaps? :) Thanks, Ashkar

Part and Inventory Search

Back
Top