royalcheese
Technical User
Hi All
I have a EXE file which users can use from home , via terminal services , Which works every other time you connect to it via Remote Desktop Connection. The message you get when it doesnt work is as such :
The system cannot fint the path specified
This initial program cannot be started : (My program path)
Please Check the initial program in the client configuaration.
Which leads me to believe that the program is not closing properly on it exit..
This is the code i have on the exit button click
Once the system is closed and all visible functions have shut down then terminal services stays open which leads me to believe that it is still there, as normally when you shut all programs down it slef closes the RDC ?
Any help / Suggestions would be grand
Thanks in Advance
Chris
I have a EXE file which users can use from home , via terminal services , Which works every other time you connect to it via Remote Desktop Connection. The message you get when it doesnt work is as such :
The system cannot fint the path specified
This initial program cannot be started : (My program path)
Please Check the initial program in the client configuaration.
Which leads me to believe that the program is not closing properly on it exit..
This is the code i have on the exit button click
Code:
Private Sub MDIExit_Click()
Call removelogrecord ' calls function to log out user
Dim f As Form
For Each f In Forms
Unload f
Set f = Nothing
Next f
End Sub
Once the system is closed and all visible functions have shut down then terminal services stays open which leads me to believe that it is still there, as normally when you shut all programs down it slef closes the RDC ?
Any help / Suggestions would be grand
Thanks in Advance
Chris