Click here to Skip to main content
15,919,341 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Hide Process From Taskmanager Pin
Anubhava Dimri1-Jan-10 19:06
Anubhava Dimri1-Jan-10 19:06 
GeneralRe: Hide Process From Taskmanager Pin
Dave Kreskowiak1-Jan-10 19:12
mveDave Kreskowiak1-Jan-10 19:12 
QuestionHow do i insert values in e Filling -VAT form in punjab programmatically? Pin
r_mohd31-Dec-09 20:17
r_mohd31-Dec-09 20:17 
QuestionSigning verifying Problem Pin
Anubhava Dimri31-Dec-09 18:13
Anubhava Dimri31-Dec-09 18:13 
Question[Message Deleted] Pin
Golden Jing31-Dec-09 1:11
Golden Jing31-Dec-09 1:11 
AnswerRe: problem zip fill with Shell Pin
DaveAuld31-Dec-09 1:28
professionalDaveAuld31-Dec-09 1:28 
QuestionExport Crystal Report to PDF/WORD in VB6 Pin
εїзεїзεїз30-Dec-09 22:20
εїзεїзεїз30-Dec-09 22:20 
AnswerRe: Export Crystal Report to PDF/WORD in VB6 Pin
everzcool426-Apr-11 20:15
everzcool426-Apr-11 20:15 
Here is the code

Private Sub Exp_Pdf()

Set rep = appl.OpenReport(Rep_Ss, 1)
On Error GoTo errorcancel
rep.DiscardSavedData
rep.ExportOptions.DiskFileName = Rep_Dn
rep.ExportOptions.DestinationType = crEDTDiskFile
rep.ExportOptions.FormatType = crEFTPortableDocFormat
rep.Export False
errorcancel:
If Err.Number = -2147206395 Then
MsgBox Err.Description, vbOKOnly, "ZRM Inventory Control System - Export"
Exit Sub
End If

End Sub


Private Sub CmdExport_Click()

CrystalReport1.DiscardSavedData = True
CrystalReport1.ReportFileName = "D:\ZRM\Rep\PurSum.rpt"
CrystalReport1.WindowShowSearchBtn = True
CrystalReport1.WindowState = crptMaximized
CrystalReport1.WindowTitle = "Detail Purchase Report - ZRM Inventory Control System"
Rep_Ss = CrystalReport1.ReportFileName
Rep_Dn = "D:\ZRM\Rep\Pdf\PurSum.Pdf"
Exp_Pdf

CrystalReport1.PrintReport

End Sub

hope this will be useful to u. Big Grin | :-D
GeneralRe: Export Crystal Report to PDF/WORD in VB6 Pin
εїзεїзεїз27-Apr-11 1:56
εїзεїзεїз27-Apr-11 1:56 
QuestionHow to send mail in vb6.0 Pin
JC.KaNNaN30-Dec-09 19:34
JC.KaNNaN30-Dec-09 19:34 
AnswerRe: How to send mail in vb6.0 Pin
Steven J Jowett30-Dec-09 20:28
Steven J Jowett30-Dec-09 20:28 
GeneralRe: How to send mail in vb6.0 Pin
JC.KaNNaN30-Dec-09 21:01
JC.KaNNaN30-Dec-09 21:01 
GeneralRe: How to send mail in vb6.0 Pin
Steven J Jowett30-Dec-09 21:10
Steven J Jowett30-Dec-09 21:10 
GeneralRe: How to send mail in vb6.0 Pin
JC.KaNNaN30-Dec-09 21:26
JC.KaNNaN30-Dec-09 21:26 
GeneralRe: How to send mail in vb6.0 Pin
#realJSOP30-Dec-09 23:51
professional#realJSOP30-Dec-09 23:51 
AnswerRe: How to send mail in vb6.0 Pin
Abhinav S30-Dec-09 21:59
Abhinav S30-Dec-09 21:59 
AnswerRe: How to send mail in vb6.0 Pin
εїзεїзεїз30-Dec-09 22:16
εїзεїзεїз30-Dec-09 22:16 
GeneralRe: How to send mail in vb6.0 Pin
JC.KaNNaN30-Dec-09 23:24
JC.KaNNaN30-Dec-09 23:24 
GeneralRe: How to send mail in vb6.0 Pin
εїзεїзεїз30-Dec-09 23:51
εїзεїзεїз30-Dec-09 23:51 
GeneralRe: How to send mail in vb6.0 Pin
JC.KaNNaN31-Dec-09 1:51
JC.KaNNaN31-Dec-09 1:51 
AnswerRe: How to send mail in vb6.0 Pin
nlarson1131-Dec-09 4:27
nlarson1131-Dec-09 4:27 
AnswerRe: How to send mail in vb6.0 Pin
Eddy Vluggen31-Dec-09 4:49
professionalEddy Vluggen31-Dec-09 4:49 
QuestionMenu Strip... Pin
thebiostyle30-Dec-09 13:14
thebiostyle30-Dec-09 13:14 
AnswerRe: Menu Strip... Pin
Rick Shaub31-Dec-09 7:41
Rick Shaub31-Dec-09 7:41 
GeneralRe: Menu Strip... Pin
thebiostyle1-Jan-10 8:15
thebiostyle1-Jan-10 8:15 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.