I dont know where to ask this question...
any way here it is..
how to apppend a prn file to another prn file..
So that I canview it in Ghost Viewer..
Thanks,
Pradeep
Printable View
I dont know where to ask this question...
any way here it is..
how to apppend a prn file to another prn file..
So that I canview it in Ghost Viewer..
Thanks,
Pradeep
VB Code:
Dim var1 As String Open "C:\File.prn" For Input As #1 var1 = Input$(LOF(1), 1) Close #1 Open "C:\FileToWriteTo.prn" For Append As #1 Print #1, var1 Close #1
Hae..
Can i then view it in Ghost Viewer..
You'd have to use Shell to open Ghost Viewer and then open the file with SendMessage.
Well i'll give a try..