I have a project with graphs that can be printed. When you click the print button, a Print Preview form loads with:
Public Sub print()
printPreview.Show
End Sub
Everything works fine on my development machine both when I run it in debug mode and when I install our distributed installation package.
For some reason though, everyone else who tries to print can never get the preview to show up. Further testing shows that Load
function of the preview is never called and anything after Show
in the print function is ignored. It's as if the function jumps right to End Sub
of the print function.
It seems like the printPreview.Show is failing but there is no error, warning or ANY indication of something wrong other than the fact that the form does not appear. Has anyone ever experienced something like this?