Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Using DBI-Tech's ctSchedule & MSFTs PageSet.Dll
Message
 
À
Tous
Information générale
Forum:
Visual FoxPro
Catégorie:
Produits tierce partie
Titre:
Using DBI-Tech's ctSchedule & MSFTs PageSet.Dll
Divers
Thread ID:
00899107
Message ID:
00899107
Vues:
82
I am using DBI-Tech's ctSchedule control to show scheduling info in a gantt chart. The DBI control does not allow for programmatic control of printer settings. So every time the schedule is printed, the user has to select the printer, the orientation, and the paper size.

DBIs website recommends using MSFTs PageSet dll to control orientation and this is the example syntax on the site:
Dim obj As PageSet.PrinterControl
Private Sub Command1_Click()
      Set obj = New PrinterControl
      obj.ChngOrientationLandscape
      ctSchedule1.PrintSchedule
      obj.ReSetOrientation 'This resets the printer to portrait.
End Sub
Have added something similar to my VFP form:
WITH thisform.ctSchedule1
   .PrintColumns = 3
   .PrintTitle = "Project Schedule"
   .PrintTimeDistance = 15

   SET PRINTER TO "\\server1\Copier"
   RELEASE oPrint
   oPrint = .NULL.
   oPrint = CREATEOBJECT("PageSet.PrinterControl")
   oPrint.ChngOrientationLandscape

   .PrintSchedule    && send to printer

   oPrint.ReSetOrientation 
   RELEASE oPrint
   oPrint = .NULL.
ENDWITH

but when it gets to the "ChngOrientationLandscape" command, it errors with:
OLE IDispatch exception code 0 from PageSet: Subscript out of range..
Have tried to passing parameters (.t., 1, 0, ...) but nothing works. I think this is due to not having admin rights on the network to manipulate the printer, and the error msg is a bit misleading. But was curious if anyone encountered something similar or new a workaround.
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform