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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by RSi2

  1. RSi2

    How to reduce the speed of downloading of files?

    download as many files as u can at the same time LOL sorry if this ain't helpful
  2. RSi2

    Executing Batch Files

    copy the STO_ShellExecute to your project see Interpretation for an exemple how to use it with params uses Windows, ......., ShellApi; function TFormBegin.Interpretation():Boolean; var ExitCode: DWORD; rf:TextFile; i:integer; msg:string; reponse:Boolean; prog,args:String...
  3. RSi2

    Simple Array Question

    array of integer => 1st index 0 , last is size-1 var A, B: array of Integer; begin SetLength(A, 1); A[0] := 1; B := A; B[0] := 2; end; procedure MyProcedure(MyArgs: array of integer; n : integer); PS: array[2..5] of integer signifies an array with the 1st index "2" and...
  4. RSi2

    Password for MS Office folders?

    If you use NT or W2K the OS may do some things for you ...
  5. RSi2

    How to print a word document from an Access Form

    Dim oApp As Word.Application Dim oDoc As Word.Document Set oApp = CreateObject("Word.Application") oApp.Documents.Open ("mydoc.doc") Set oDoc = oApp.ActiveDocument oDoc.PrintPreview 'oDoc.Print oDoc.Close oApp.Quit
  6. RSi2

    Pick Fields to be Displayed on Report

    check your mail
  7. RSi2

    Don't know how to LINK PICTURES

    check your mail
  8. RSi2

    Pick Fields to be Displayed on Report

    write a mail to rsi2@yahoo.fr i'll reply with a sample code
  9. RSi2

    Need help with internet explorer

    http://www.lavasoftusa.com/downloads.html download Ad-aware to get rid of the spy software that u installed
  10. RSi2

    Pick Fields to be Displayed on Report

    "the form with the details" can be a Report also
  11. RSi2

    Pick Fields to be Displayed on Report

    well this is a little bit foggy, LOL in the report that you want to select witch fields to display you can set some variables stored in a module to certain values (brrrr) ... in english ... put in a module variables like : Public Field_NAME_Visible As Boolean when you exit this Form you set all...
  12. RSi2

    Batch file

    try in a command prompt window attrib /? xcopy /? for more options
  13. RSi2

    Maximum length of a TextFile?

    i think the max size is 2^63-1 bytes see FileOpen FileSeek
  14. RSi2

    Need to format floppy from code *without* windows format dialog

    execute an external program i.e. format format a: /q/u see ShellExecute in delphi

Part and Inventory Search

Back
Top