Asked By
James Craig
40 points
N/A
Posted on - 10/31/2012
Hi guys,
While publishing .bpm files to web I received an error message. It threw the error message: "Object reference not set to an instance of an object". I received the same error message while exporting the same file to Word or PDF. I do not know the reason behind the issue. Have you any idea? Please help me to get a remedy of this issue.
Thanks in advance.
While publishing .bpm files to web I received an error message
Hi,
There are two causes why this “Object reference not set to an instance of an object" errors appears.
First, it is because you are not declaring variables. So you should make it sure that you have explicitly that declared the variable with appropriate scope. Or maybe the second cause is your bad inits/constructs so always considered this Directory Info:
Sub Page Load ()
Dim dirInfo As System IO DirectoryInfo
dirInfo.GetDirectory(“C:”)
End Sub
Hope it will help you.