Problem crating file and executed other process

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi I Am Juan Carlos

I have a Text File, and convert the text File to Pdf File with GhostScript


My question is
Who knowing when to the file this totally created?

I am open pdf file with acrobat reader but show error,beacuse, the file not
that full created




thanks for your help
 
Juan Carlos S said:
I have a Text File, and convert the text File to Pdf File with GhostScript


My question is
Who knowing when to the file this totally created?

Untested:

\\\
Imports System.Diagnostics
..
..
..

' Start conversion process.
Dim p As Process = Process.Start(...)
p.WaitForExit()
ProcessFile()
///
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top