Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Printer Mapping for NT Workstation
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Problèmes
Divers
Thread ID:
00215970
Message ID:
00221229
Vues:
18
I have had this problem too. On Win 95 boxes when I want to print an invoice, I can do this:
set printer to name invoice
repo form invc to print
set printer to default

NT does not all name changes of network printers. You have to use UNC (universal naming convention) to address a network printer. My fix was to test which operating system is in use and set the printer accordingly.

if 'NT' $ os()
set printer to name \\server\shareptr
else
set printer to name invoice
endif
repo form invc to print
set printer to default

It may not be pretty, but it works
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform