pdf document in landscape format: In your Tips&Tricks Nr. 41 you describe a method for generating a .pdf document with GuiXT controls. This works fine except for one little hic: my rtf document is in "landscape" format but the generated pdf has become "portrait".

Set the page orientation in your VBScript routine:

Set myDoc =  myWord.Documents.Add  

  Const wdOrientLandscape = 1

  mydoc.PageSetup.Orientation = wdOrientLandscape

  Call myWord.Selection.InsertFile(rtf_file,,False)