Click here to Skip to main content
15,896,606 members

Comments by Calvijn (Top 8 by date)

Calvijn 25-Feb-14 14:54pm View    
The href "mailto:" is not bind to Outlook.
It just open the installed "Default" E-Mail Program on the client.
So it could be any E-Mail Software besides Outlook...
Calvijn 21-Jun-13 13:09pm View    
Did you changed the Build Mode to "Release" ?

Check the config of the Setup Project.
The Application Binaries should lead to the Release Version of your Application.
Calvijn 21-Jun-13 12:54pm View    
You can add a Service Reference to your Project in VS 2005 where you enter the Url to the WebService which hosts the WSDL.

VS creates all necessary Objects to work with the WebService.
After that you can use the created Client to work with the WebService.
Calvijn 21-Jun-13 12:49pm View    
This looks like you are trying to commit data which is to big for your table column.

Ex.:
Your Table Column is of type VARCHAR(255) or NVARCHAR(255)
and you are trying to add a string with more as 255 chars.

Try to check the Type of the table column and the length of the submitted data.
Calvijn 21-Jun-13 12:39pm View    
Why detecting during a timer ?
More Details Please.

For "usually" detecting and handling of KeyPress Events you could use Solution 1