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 gkittelson 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. xdracox

    controls are still feeling your clicks

    You could just check if the button is enabled before you execute the process, like this: procedure Button1.OnClick(Sender: TObject); begin if Button1.Enabled = true then begin Button1.Enabled:= false; ... Do the process required, it takes some seconds Button1.Enabled := true; end; end;
  2. xdracox

    OSCAR login

    A detailed explanation can be found here: http://iserverd1.khstu.ru/oscar/ but, OSCAR is what AIM uses.
  3. xdracox

    Does any1 have experience with SQLite??

    Where can the personal version of AbDatabase be found for download?
  4. xdracox

    OSCAR login

    I was just wondering, how would one go about loging in to an OSCAR server, the one AIM uses, with a working screen name and password? Delphi 7, Windows XP.
  5. xdracox

    Memory issues

    Are you using a recursive function/procedure? That's what happened to me once.
  6. xdracox

    breaking inherited properties

    Do you mean, make the caption of the group box blank? If so, couldn't you just do: groupbox1.caption := '';
  7. xdracox

    Does any1 have experience with SQLite??

    I'm still new to Delphi, so I was wondering how to use SQLite with Delphi 7. Could anyone please explain how?
  8. xdracox

    Does any1 have experience with SQLite??

    Well, I have heard of it before and never looked it up until now. It looks like it's very useful by just looking at the website (www.sqlite.org).
  9. xdracox

    Using TNotifyEvent

    It's ok, I figured it out. Thanks for all the help though.
  10. xdracox

    Using TNotifyEvent

    Yes, I have tried that but it doesn't seem to work.
  11. xdracox

    Using TNotifyEvent

    I mean, do something when an item in the tree view gets double clicked. Sorry for the confusion.
  12. xdracox

    Using TNotifyEvent

    Sorry, but that didn't tell me how to use the OnDblClick event for the TTreeView component.
  13. xdracox

    MDI Forms

    Thanks, that worked perfectly!
  14. xdracox

    Using TNotifyEvent

    Well, I want to do something on TTreeView.OnDblClick but I have no idea how to get to that event.
  15. xdracox

    MDI Forms

    Sorry, but I had another question: When making an MDI Form and the MDI Childs. How do you prevent the MDI Child windows from opening when the MDI Form loads?
  16. xdracox

    Using TNotifyEvent

    Hi, I'm new to these forums and have only been using Delphi 7 for about one week. Most of the time, I have been able to find solutions to my problems, but this time I'm stuck. I do not know how to use the TNotifyEvent, like use it as a procedure.

Part and Inventory Search

Back
Top