Bryan - Gendev
Programmer
Just getting the final testing prior to release of the latest version of my app.
To enable users to contact me I have a ContactUs form with a cmd button -I have the following code on the cmd button click() event as per FAQ
I have Thunderbird on my PC and when I press the button I get a message
Postbox is already running but is not responding. To open an new window, you must first close the existing Postbox process, or restart your system'
This happens whether or not TBird is running or not.
Can anyone help with this?
Thanks
GenDev
To enable users to contact me I have a ContactUs form with a cmd button -I have the following code on the cmd button click() event as per FAQ
Code:
DECLARE integer ShellExecute IN shell32.dll ;
integer hndWin, string cAction, string cFileName, ;
string cParams, string cDir, integer nShowWin
LOCAL lcMail
*!* Replace the email addy below with a valid one
lcMail = "mailto:met@internode.on.net";
+ "&Subject= V9 Comments";
+ "&Body= Dear User, ";
+ " I will answer your query as soon as possible!.";
+ " ";
+ " Hi BeeBee,"
ShellExecute(0,"open",lcMail,"","",1)
Clear DLLS ShellExecute
I have Thunderbird on my PC and when I press the button I get a message
Postbox is already running but is not responding. To open an new window, you must first close the existing Postbox process, or restart your system'
This happens whether or not TBird is running or not.
Can anyone help with this?
Thanks
GenDev