|
-
Mar 6th, 2006, 10:06 AM
#1
Thread Starter
New Member
Printer Selection in Crystal Report 7
Dear Members
i am using crystal report 7
the problem is this that i have to select the printer From the user,kindly send me any solution.
Thanks
-
Mar 6th, 2006, 10:11 AM
#2
Re: Printer Selection in Crystal Report 7
Welcome to the forums. 
Try this
VB Code:
Private Sub Command1_Click()
Dim MyPrinter As Printer
For Each MyPrinter In Printers
If MyPrinter.DeviceName = "Printer Name" Then
' Set printer as system default.
Set Printer = MyPrinter
Exit For
End If
Next
End Sub
-
Mar 6th, 2006, 11:45 AM
#3
PowerPoster
Re: Printer Selection in Crystal Report 7
You can also use the commondialog control. then use..
CommonDialog1.ShowPrinter
-
Mar 6th, 2006, 11:47 AM
#4
Re: Printer Selection in Crystal Report 7
I havent used 7.0, but I do have a CR Print setup example in my signature for 8.5. It uses the SelectPrinter method.
VB/Office Guru™ (AKA: Gangsta Yoda™ ®)
I dont answer coding questions via PM. Please post a thread in the appropriate forum. 
Microsoft MVP 2006-2011
Office Development FAQ (C#, VB.NET, VB 6, VBA)
Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
If a post has helped you then Please Rate it! 
• Reps & Rating Posts • VS.NET on Vista • Multiple .NET Framework Versions • Office Primary Interop Assemblies • VB/Office Guru™ Word SpellChecker™.NET • VB/Office Guru™ Word SpellChecker™ VB6 • VB.NET Attributes Ex. • Outlook Global Address List • API Viewer utility • .NET API Viewer Utility •
System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6 
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|