Hi all,

I have two forms, Form1 and Form2 respectively. I have a command button in form1. I do some manipulations and finally I display the results in form2 using the following code:

VB Code:
  1. With Form2
  2.     .lblResult = "This is a test result line 1" & vbcrlf & "This is a test result line 2" 'display the output in label.
  3.     .show vbModal
  4. end with
If I run this code I got "Error no. 78; File/Path access error".

Anybody know what sort of error it is? and How can I avoid this?

CS.