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 Wanet Telecoms Ltd 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: RSi2
  • Order by date
  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
  15. RSi2

    Batch file

    attrib is only to protect the existing xls files (if any), it sets them read-only ms-dos prompt ain't too powerful ... (linux is) you can make a delphi program to do this task easily
  16. RSi2

    Batch file

    LOL u never used DOS before :) no longnames native support :))) try this : xcopy "n:\Dept\BG CoGen\Import\*" c:\import\ /c
  17. RSi2

    Resolving URL!

    look at left,right,mid VBA functions
  18. RSi2

    Resolving URL!

    what u want is a string parser cut index.html => http://www.papersinvited.com/postings/ for every ../ you cut a level and after that u do a concatenation with the last part of the rel URL. if u find a / u must cut all levels of the base URL =>http://www.papersinvited.com/
  19. RSi2

    Batch file

    if u really don't want to overwrite the existing files: attrib c:\import\*.xls +r xcopy n:\import\*.xls c:\import\ /c attrib c:\import\*.xls -r [pc3]

Part and Inventory Search

Back
Top