Click here to Skip to main content
15,894,297 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
Pdf_file=""P:\VB Entwicklung\_Meine Projekte\ARRE\InBearbeitung\PM 20181011 2519.62 bkk9.pdf""
Fdf_file=""P:\VB Entwicklung\_Meine Projekte\ARRE\InBearbeitung\formular.fdf""
With New System.Diagnostics.Process
    .StartInfo.FileName = PdfTk
    .StartInfo.Arguments = Pdf_File & " dump_data_fields output " & fdf_file
    .Start()
    .WaitForExit()
    .Close()
End With


What I have tried:

the startup via "Win10 / ausführen" works
Posted
Updated 20-Feb-19 4:19am
Comments
Richard Deeming 20-Feb-19 10:18am    
We have no idea what the variable PdfTk contains, whether that path exists on your computer, or what the problem is.

Click the green "Improve question" link and add some proper details to your question.

1 solution

Probably, because it won't compile.
Your two strings aren't delimited properly:
VB
Pdf_file="""P:\VB Entwicklung\_Meine Projekte\ARRE\InBearbeitung\PM 20181011 2519.62 bkk9.pdf"""
Fdf_file="""P:\VB Entwicklung\_Meine Projekte\ARRE\InBearbeitung\formular.fdf"""
Should fix that.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900