Click here to Skip to main content
15,888,733 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
  Dim paraghraph As New Paragraph
        Dim pdfFile As New Document(PageSize.A4, 40, 40, 40, 20)
        pdfFile.AddTitle(TextBox1.Text)
        Dim write As PdfWriter = PdfWriter.GetInstance(pdfFile, New FileStream(TextBox2.Text, FileMode.Create))
        pdfFile.Open()


What I have tried:

help me with the one i bold. Thank you
Posted
Updated 21-Sep-17 23:37pm

1 solution

Look at the error message:
an unhandled exception of type 'system.argumentexception' occurred in mscorlib.dll additional information: empty path name is not legal.

The bit on the end is pretty clear: it needs a valid path to a file and you aren't providing one. But we can't tell what you are trying to pass - we can't run your code under the same conditions you can.

So, its going to be up to you.
Put a breakpoint on the first line in the function, and run your code through the debugger. Then look at your code, and at your data and work out what should happen manually. Then single step each line checking that what you expected to happen is exactly what did. When it isn't, that's when you have a problem, and you can back-track (or run it again and look more closely) to find out why.

Sorry, but we can't do that for you - time for you to learn a new (and very, very useful) skill: debugging!
 
Share this answer
 

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

  Print Answers RSS
Top Experts
Last 24hrsThis month


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