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 derfloh 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. CentauriAudio

    Session component ?

    Andrew, Your advice of where the Session variable is declared gave the clue. I am using a separate data module, and TTable is used there but not in the main form. Once I put the code in the data module, the variable was recognised. Also thanks to your suggestion of the dirctory property -...
  2. CentauriAudio

    Session component ?

    I am developing database app with DB tables and BDE. I also want to have an .ini file residing in the database folder, therefore I need to extract the path name from the database alias. Apparently, this can be done using Session.GetAliasParams(), and from what I have been able to find out, the...
  3. CentauriAudio

    Simulating keypress

    Point taken re: using local events, buho. I used Form.ActiveControl.Perform(WM_KEYDOWN,.. works well. Thanks again Graeme
  4. CentauriAudio

    Simulating keypress

    Thanks for the Form.ActiveControl tip - useful! I found (on another forum..) suggestion of using keybd_event function, and this works a treat. Cheers
  5. CentauriAudio

    Simulating keypress

    Can anyone enlighten me as to how to simulate a keypress (in my case, the Enter key) in whichever object (memo box) has current focus? I have a popup form with DBGrid, and when the user selects a record, focus passes back to the main form and I want to simulate pressing the enter key, which...
  6. CentauriAudio

    dbase ttable won't update

    Ahh! - found the problem. It wasn't anything to do with the update routine at all. I had a routine triggered from the datasource datachange which filled my memo box array with the table data. When the save routine called TableCust.edit, a datachange was triggered which immediately overwrote...
  7. CentauriAudio

    dbase ttable won't update

    Hi all - first post here and relatively new to Delphi... Problem I have is: Using BDE with TTable & TDataSource components linked to dBase file in Delphi6. I am reading in field data from a particular record to an array of edit boxes using For i:= 0 to 26 do...

Part and Inventory Search

Back
Top