Recent content by Matthew Scott

  1. M

    Development and Live version control

    David, Create a new .ini file containing your development propath, store it on the NT server and create a shortcut with the target line containing the -pf and -ininame parameters.
  2. M

    How does one build a spreedsheet using the OpenText function?

    sidero, This is what I came up with: DEF VAR chExcel AS COM-HANDLE. CREATE "excel.application" chExcel. chExcel:Visible = True. chExcel:Workbooks:OpenText("c:\test.txt",,1,,,,,"true"). The '1' refers to the row number of your text file you start from, and the 'true' means that...
  3. M

    Word problem (?)

    Oops! I forgot to uncomment the 'ch-word:VISIBLE = TRUE.'. If you don't you won't be able to see Word.
  4. M

    Word problem (?)

    Try this: DEF VAR ch-word AS COM-HANDLE. CREATE "Word.Application" ch-word. /*ch-word:VISIBLE = TRUE.*/ ch-word:documents:Open("c:\hello.txt"). ch-word:ActiveDocument:PrintPreview. /*This command closes Word when ready*/ ch-word:Application:Quit. This works with Word 97, I...
Top