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 SkipVought 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. johndelphi

    key binding

    I am modifying the Delphi environment using OTA. One of the requirements for my project is to modify the key binding of the Delphi, but I have a problem with the line: BindingServices.AddKeyBinding([ShortCut(VK_SPACE,[])], AddSpace, Nil); It seems both VK_TAB and VK_RETURN works but not VK_SPACE
  2. johndelphi

    problem with texttoshortcut

    there seems to be a problem when i try getting shortcuts with modifiers like shift..e.g. texttoshortcut('(') or texttoshortcut('<') does not work!
  3. johndelphi

    problem with sql server

    everytime i insert into my database, some interesting square character is inserted at the end of each field that was inserted. How do i remove this?
  4. johndelphi

    2 forms

    if you have 2 forms, and you want one form to always stay on top, how would you do that?
  5. johndelphi

    strings using SQL

    i have this code: q.SQL.Add('SELECT * FROM GroupItem WHERE ID = &quot;' + userID + '&quot;'); where userID is obviously a string. I get an error with it and i think its the whole string within a string problem. how do i typecast the string for the SQL statement to read the userID.
  6. johndelphi

    error log

    apparently i heard that the delphi compiler writes its error to a log or text file. can someone tell me what the name of the text file is, if it exist. if its doesnt how can get hold of the compiler messages?
  7. johndelphi

    expressing functions as constants

    const sSource = 'unit %s;' + #13#10 + '// Username: ' + GetWindowsUserName + #13#10 + '// Time: ' + DateToStr(Date) + #13#10 + '' + #13#10 + 'interface' + #13#10 + '' + #13#10 + 'uses' + #13#10 + ' SysUtils;' + #13#10 + '' + #13#10 + 'type' + #13#10 + ' { Enter your...
  8. johndelphi

    what is xpcommon?

    some source code that i downloaded has a packages that requires the xpcommon.bpl file...what is this and where do i get it?
  9. johndelphi

    getting the user name that logged on a maching

    how would you get that?
  10. johndelphi

    help with tools api

    Question 1: i need to create some kind of explanation form that explains the error messages to novice users. this form will need to be opened when the user compiles or runs this code. the explanations will be read from a database which is not a problem. The problem is the openning of the form...

Part and Inventory Search

Back
Top