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

    Problem with creating text file

    Hi, Any ideas why I get an error 'File access denied' all the time? Thx. procedure CreateFile; var F: TextFile; begin AssignFile(F, 'C:\test.txt'); ReWrite(F); WriteLn(F, 'something'); CloseFile(F); end;
  2. mischmasch

    TImage -> created dynamically

    It works!!! Thank you very much :-)
  3. mischmasch

    TImage -> created dynamically

    I don't load image from file, I use Canvas.TextOut. If I load image from file, everything is OK but it's not what I want.
  4. mischmasch

    TImage -> created dynamically

    Hi, I have problem with dynamic creation of TImage on TTabSheet. To make it, I use code below but it doesn't work - I don't see any Image on TabSheet. I don't know what I do wrong. Anybody knows? ------------- On Form, I have PageControl where I want to create some number of TabSheet, for...
  5. mischmasch

    INSERT INTO -> problem with copying data

    Thanks. I will remove brackets, it will be the best options :-)
  6. mischmasch

    INSERT INTO -> problem with copying data

    Hi, I have problem with copying data between two MS Access databases. I have: a) DataBase1 that has Table1 that has field Model b) DataBase2 that has Table2 that has field Model Both databases are protected. Password is: <>something[] I try to copy data by using ADOCommand, so I have...
  7. mischmasch

    Problem with HotKey

    It works! Thanks a lot.
  8. mischmasch

    Problem with HotKey

    Hello, In my App I have some HotKey that is registred, unregistred like below: type TufMain = class(TForm) ... procedure FormCreate(Sender: TObject); procedure FormDestroy(Sender: TObject); private { Private declarations } ExecuteHotKey: Integer; procedure...
  9. mischmasch

    Delphi ignores code order

    Hello, I'd like to display a short message (e.g. 'Please wait ...') on Panel before I start some long calculations. My code structure looks like below //1_check data {...} //2_show message on panel: 'Pleas wait ...' {...} //3_make calculation {...} //4_export result to excel {...}...
  10. mischmasch

    Why Delphi adds these characters #$D#$A at the end of line?

    Hello, I'm traying to Update my table by using SQL command but all the time occures some error. My code is simple: with ADOQuery_PasswordChange do begin Connection:=ufMain.ADOConnection1; SQL.Clear; SQL.Text:='UPDATE tblAccount SET Password=''' + 'XXX' + ''' WHERE...

Part and Inventory Search

Back
Top