No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
3 Posted Topics
Re: 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 … | |
Re: Please check the link below [URL="http://www.daniweb.com/techtalkforums/thread49338.html"]http://www.daniweb.com/techtalkforums/thread49338.html[/URL] | |
Re: [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 … |
The End.