Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #55.0K
~5K People Reached
Favorite Forums
Favorite Tags

3 Posted Topics

Member Avatar for khwo

Code to fill the listview control in vb.net dynamically Dim rdGetData As SqlClient.SqlDataReader Try If ListView1.Items.Count > 0 Then ListView1.Items.Clear() End If SQLCmd.CommandType = CommandType.Text SQLCmd.CommandText = "SELECT * from table" rdGetData = SQLCmd.ExecuteReader Dim intCount As Decimal = 0 While rdGetData.Read ListView1.Items.Add(Trim("FieldName")) 'col no. 1 ListView1.Items(CInt(intCount)).SubItems.Add(Trim(rdGetContactsInfo("FieldName"))) 'col no. 2 …

Member Avatar for maley
0
4K
Member Avatar for khwo

Please check the link below [URL="http://www.daniweb.com/techtalkforums/thread49338.html"]http://www.daniweb.com/techtalkforums/thread49338.html[/URL]

Member Avatar for Tanvir
0
156
Member Avatar for arjunsasidharan

[quote=arjunsasidharan]im jus into basic.. i need to create a login form containing the fields Username, UserID and Password. It has to be connected to the MS Access Database and when the login button event is clicked i want it to check t database whether the details are all correct n …

Member Avatar for Tanvir
1
107

The End.