Date Time (6)
 
49 Source Code Found
Sort By Descending Descending
ADDING DATA INTO CONTROLS FROM ON DATAGRID CLICK EVENT InForms
This code helps to add data from datagrid into controls On clicking the row header of datagrid the data from that row is added into the specified control... read more
Author: vaisshaali Reviews:0 Date:15th Feb, 2008 Rating:No Rating Accessed:2803

 
Simple Web Service InForms
Create a new Project that is of Type ASP.NET Web Service. Once you have done that just drop in this code and run it. You will be able to view the service description of your webservice... read more
Author: mobeenamjad Reviews:0 Date:12th Jun, 2007 Rating:No Rating Accessed:2385

 
Web Service Tutorial in VB.NET InForms
In Visual Studio.NET open a new project and select the ASP.NET Web Service template. This will give you the following code:... read more
Author: mobeenamjad Reviews:0 Date:12th Jun, 2007 Rating:No Rating Accessed:3122

 
Calling a WebService Asynchronously InForms
To call a method of a webservice you will first need to a add a reference to the webservice. In the Project Explorer if you right-click on the references node and select Add Web Reference you will get a new window where you can enter the location of your webservice. ie:http://localhost/Service1/Service1.asmx Once you have located the service select the Add Reference Button.... read more
Author: mobeenamjad Reviews:0 Date:12th Jun, 2007 Rating:No Rating Accessed:18696

 
Serializing Objects to SOAP InForms
When we serialize an object to SOAP we are copying the object state into an XML structure with a SOAP envelope. This provides us an efficient way to transfer this information in a standard way that anyone can read.... read more
Author: mobeenamjad Reviews:0 Date:12th Jun, 2007 Rating:No Rating Accessed:2998

 
Queue Tutorial in VB.NET InForms
Adding Items to the Queue To add items to the Queue you use Enqueue method. This method takes an object of any type but to keep things simple lets just give it a string object:... read more
Author: mobeenamjad Reviews:0 Date:12th Jun, 2007 Rating:No Rating Accessed:2540

 
Stack Tutorial in VB.NET InForms
A stack is a LIFO (Last In First Out) queue, so if you add two items and then ask for an item you would get the second item then the first item. To add items to the Stack you use the Push method. This method takes an object of any type but to keep things simple lets just give it a string object:... read more
Author: mobeenamjad Reviews:0 Date:12th Jun, 2007 Rating:No Rating Accessed:1966

 
HashTable Tutorial in VB.NET InForms
You can search the Key and the Value lists in a Hashtable for a specific entry:... read more
Author: mobeenamjad Reviews:0 Date:12th Jun, 2007 Rating:No Rating Accessed:3498

 
Asynchronously Loading Data Without Threading InForms
If you've ever written code in VB6 I'm sure you must have ran into this problem: You have form that loads data in the Form_Load event. Because of this the form will not be displayed until all the data is loaded, which makes other perceive your application as slow. If only you could load that information asynchronously you wouldn't have that problem right? In VB.NET you can!... read more
Author: mobeenamjad Reviews:0 Date:12th Jun, 2007 Rating:No Rating Accessed:1641

 
ArrayList Tutorial in VB.NET InForms
Adding objects is simple just use the add method... read more
Author: mobeenamjad Reviews:0 Date:12th Jun, 2007 Rating:No Rating Accessed:5257

 
1 - 10 of 49 First | Previous | Next | Last  

Copyright © 2013 VisualBuilder. All rights reserved