What are the benefits of using Class Library?
Latest Answer: Class Library is a library of classes, interfaces, and value types that are included in the Windows Software Development Kit (SDK). We can also create your own classes, function procedure and other and all this help to inherit the function from one class ...
What's involved in end to end VB.NET testing?
Explain WAP coding to send XML File on server using HTTP Protocol
Explain about Single Thread Apartment and with real time usage with situation where it best fits .
You use Visual Studio .NET to create a Windows-based application. The application includes a form named GraphForm, which displays statistical data in graph format. You use a custom graphing control that
Latest Answer: F. Set GraphForm.FormBorderStyle to one of the Fixed styles. ...
You company AppDevRight assigns you to modify a Visual Studio .NET application that was created by a former colleague. However, when you try to build the application, you discover several syntax errors.You
Latest Answer: Run the application in Debug Mode. Each time an error is encountered, correct it and continue debugging the application ...
You develop a Windows-based application that includes the following code segment. (Line numbers areincluded for reference only.)01 Public Sub password_Validating (ByVal sender As _02 Object, ByVal e As
Latest Answer: e.cancle = TrueIf the input in the control does not fall within required parameters,the property within your event handler can be used to cancel the Validating event and return the focus to the control. ...
How can i retrieve records of a column having certain criteria and display the records in a list box? Please help me...
Latest Answer: dim con as sqlconnectioncon=new sqlconnection("server=visuall;database=urdbname;uid=sa;password=urpassword")con.open()dimquerycommand as sqlcommanddim reader as sqldatareaderquerycommand=new sqlcommand("select * from emp",con)reader=querycommand.executereader()while(reader.reader())listbox1.items.add(reader(0).tostring() ...
how to convert mm/dd/yyyy to dd/mm/yyyy.
Latest Answer: Its better to retrieve the System date format first and system date seperator.On the basis of that retrieve the vales of Day, Month and year.Now you are having everything related to date.You can generte any type of formated date.I am using this and satisfied.Regards,Sanjay ...
HiI am doing a project on bug tracking tool using VB.NET. For that i need a date time picker control as one in usual vb. I checked the tool box but i couldn't find it. So for the time being i am
Latest Answer: see carfully datetimepicker control in toolbox where windows controls show ...
View page [1] 2 3 4 5 6 Next >>

Go Top