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

  • Users: PlutoDev
  • 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

    >>> Already done: Windows OS (all versions) will not allow >>> open/copy/delete while your program holds the file open. >>> You can change file attributes to hidden/read-only when >>> closed. My program step. 1. Load encryption file a 2. file a will be decrypted into file b in random folder...
  3. PlutoDev

    How to get random folder name in windows folder

    Yes. My program step. 1. Load encryption file a 2. file a will be decrypted into file b in random folder 3. My program process something according file b 4. after finis processing. file b will be deleted automatic by program my problem.. i'am affraid that file b will be copied / read by user...
  4. PlutoDev

    How to get random folder name in windows folder

    I hide a txt file, this is a result of decryption file by program. after finish my process. this file will be deleted automaticly. if in folder windows or program files not work. may be, i will store this file at other folder(random) or how to protect this file, so the user cannot...
  5. PlutoDev

    How to get random folder name in windows folder

    How to get folder name that exists in folder c:\windows\*.* into TStringList automaticly. I don't want fill folder name into TStringList manually. because in windows 98, me, xp, 2000, vista, 7 may difference.. I can not use folder temp. i am affraid the user see my file in temp folder...
  6. 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...
  7. 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...
  8. 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
  9. 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
  10. 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
  11. 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
  12. PlutoDev

    Is BDE support connection to MSSQL 2005

    Is BDE support connection to Microsoft SQL 2005
  13. 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
  14. PlutoDev

    Passing ADO Connection from exe to dll

    (exe) program Project1; uses Forms, Unit1 in 'Unit1.pas' {Form1}, dmdmain in '..\Common\dmdMain.PAS' {dmMain: TDataModule}; {$R *.res} begin Application.Initialize; Application.CreateForm(TForm1, Form1); Application.CreateForm(TdmMain, dmMain); Application.Run; end. unit...
  15. 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...
  16. 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..
  17. 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...
  18. 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...
  19. 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

Part and Inventory Search

Back
Top