Click here to Skip to main content
15,867,756 members

Comments by Pravin Patil, Mumbai (Top 200 by date)

Pravin Patil, Mumbai 25-Jun-14 9:01am View    
This link might help you - http://stackoverflow.com/questions/4575881/use-value-of-a-string-to-create-new-form-object
Pravin Patil, Mumbai 25-Jun-14 9:01am View    
Try giving full name of the form with namespace and assembly name.
Pravin Patil, Mumbai 25-Jun-14 8:58am View    
Simple answer - You shouldn't. Password is sensitive data and binding it back from server means you would expose it to the threats. Don't bind.
Pravin Patil, Mumbai 25-Jun-14 8:53am View    
C# Equivalent of above code -
Form frm = default(Form);
string formName = "frmNewForm";
frm = (Form)Assembly.GetEntryAssembly.CreateInstance(formName);

Converted using http://www.developerfusion.com/tools/convert/vb-to-csharp
Pravin Patil, Mumbai 2-May-14 19:23pm View    
var calendar = $('#calendar');
Is calendar variable in above statement is undefined in your case?