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 bkrike 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: *

  • Users: PlutoDev
  • Content: Threads
  • Order by date
  1. PlutoDev

    Get list folder name in specified folder

    How to store list folder name in specified folder into TStringList c:\mydocument\folder a c:\mydocument\folder b c:\mydocument\folder c c:\mydocument\folder d ??function??('c:\mydocument\') return : StrList := TStringList StrList[0] = 'c:\mydocument\folder a' StrList[1] = 'c:\mydocument\folder...
  2. PlutoDev

    How to get random folder name in windows folder

    How to get a folder name by random in folder c:\windows or c:\program files because when i run my program, i have to save a file in a folder. but users may not know where this files exists. so, my solution is save my file in a random folder in drive C that users do not know where my files...
  3. PlutoDev

    How to read file with international text(unicode) format

    I tried with bellow source, but failed.... procedure TForm1.Button1Click(Sender: TObject); var F : TextFile; ch : char; str : string; begin AssignFile(F, 'test.sql'); //file generate from (enteprice manager sql -> generate script) reset(F); //Open F...
  4. PlutoDev

    function source for encrypt / decrypt *.txt files

    I want to encrypt/decrypt my *.txt files using commands in delphi. (not component) when I want to decrypt files, It's better if the function provide parameter such as password to decrypt. where i can download the samples functions with delphi programming. Thanks
  5. PlutoDev

    Tools for Protect exe files

    What's the best tools to protect my exe & dll files, so my files can not be cracked. thanks in advance
  6. PlutoDev

    how to generate script store procedure (encrypted).

    I create my store procedure with encryption. I am using MS sql 2005 / 2008 but how to generate it to a file (script file / *.sql) because i want to deliver this script to my client. thank's
  7. PlutoDev

    How to protect my store procedure from sql decryptor

    I create my store procedure with encryption. so my code can not be changed. but there is many tools to decrypt this sql statement (SP). how to prevent from sql decryptor. thanks
  8. PlutoDev

    Is BDE support connection to MSSQL 2005

    Is BDE support connection to Microsoft SQL 2005
  9. PlutoDev

    Connect SQL2005 with BDE

    Is there a problem, if i connect database sql 2005 with BDE, My all form use TQuery. any sugestion/idea to solve this problem if bde can't connect sql 2005 thank's
  10. PlutoDev

    Passing ADO Connection from exe to dll

    I built my application with many dll (for reporting) but when i load dll, I reconnect TAdoConnection.. I want to avoid this reconnection.. but how to do this ??. I have try passing parameter ADOConnectionObject :_Connection from exe to dll so when i load dll, i write...
  11. PlutoDev

    Dot Matrix Printing

    Any one knows how to print an invoice (form) like dot matrix. because this feature it's very vary important for me. or any link related about this topic (sample code)\ thanks in advance..
  12. PlutoDev

    How to draw a panel on existing row at grid

    I am Using TDBGrid How to draw a text Discountinue (RightJustify) on the existing row data in a dbgrid For Example ProductId ProductName 1 Harddisk 10GB Model A 7200rpm 2 Harddisk 40GB Model B 7200rpm 3 Memory 16mb SDRAM model A...
  13. PlutoDev

    How to check if computer is idle

    hi.. I need to check if computer is idle more than 3 minutes.. I did it by checking mouse pointer.. But sometimes user just using keyboard and mouse pointer(x,y) is getting wrong.. So, I need to detect IDLE like windows' screen-saver process.. How can I detect if computer is idle (probably some...
  14. PlutoDev

    How to change the last modified date of a file.

    I want change the last modified date of a file. sorry for my bad english thank's
  15. PlutoDev

    how to copy worksheet from workbook to another workbook.

    I am using TExcelapplication,.. (Server pallete on delphi 7). how to using this component to copy a worksheet from workbook to another workbook. because i want also copy pagesetup orentation (landscape or portrait). or any one know how to detect file excel.. using page orientation landscape...
  16. PlutoDev

    How to acces HKEY_LOCAL_MACHINE registry with user non admin?

    When using the TRegistry component under NT, a user with less than "administrator" rights is unable to access information stored in the HKEY_LOCAL_MACHINE. How can I work around this? Thank's in advance
  17. PlutoDev

    Problem execute Store Procedured (MSSqlServer) with TAdoQuery

    I have a store procedure contained errored while inserting temp #table If I run it in query analizer.. errors displayed correctly (not problem) But if i execute it with tAdoQuery. errors not displayed... so I always confused with it.... in fact an error happened.. so how to display error in my...
  18. PlutoDev

    What's event to know when all record TAdoQuery opened

    What's event to know when all record opened.. because I want to execute procedure in my inherit form... like resized column in my grid after all record opened thank's
  19. PlutoDev

    Export data to excel using delphi 6

    Hi, I build my application with delphi 6. now I want to export data to microsoft excel, but i don't now VBA. Could you help me how to export data to excel Thank's a lot for every body

Part and Inventory Search

Back
Top