 |
karl93 Level: Graduate
 Registered: 07-11-2011 Posts: 9
|
PDF
Hello boys,
I save my form in visual basic 6 in pdf format. I have written in this way:
| Private Sub mnuSalva_Click() Dim rec As String rec = Form7.Caption CommonDialog1.DialogTitle = "Salva file" CommonDialog1.Filter = "PDF|*.pdf" CommonDialog1.FilterIndex = 2 CommonDialog1.ShowSave Filename = CommonDialog1.Filename F = 1 Open Filename For Output As F Print #F, rec Close F Filename = "Senza Titolo" End Sub |
But when I open the pdf file I get an error. How can I fix this?
|
|
07-11-2011 at 11:39 AM |
|
|
karl93 Level: Graduate
 Registered: 07-11-2011 Posts: 9
|
Re: PDF
Thanks for the reply.
I ask you kindly help to solve my problem. How can I do?
|
|
08-11-2011 at 10:26 AM |
|
|
EdenZ Level: Protégé
 Registered: 12-04-2013 Posts: 6
|
Re: PDF
you wanna create pdf files using VB.NET ,right ? pdf generating sdk in VB.NET can help developers to create pdf reader in your own project.
[Edited by EdenZ on 14-05-2013 at 06:56 AM GMT]
|
|
14-05-2013 at 06:56 AM |
|
|
|
|
 |
 |