-
Began Watching update the items in controls after inserting new records into data base
hy i got a combo box and datagridview in my form and few other controls (to insert new record into my database),after the insertion is succcesful i want the inserted … -
Replied To a Post in update the items in controls after inserting new records into data base
You could use a BindingSource with the DataGridView. Then when your records are inserted successfully call the ResetBindings() Method. [Click Here](http://msdn.microsoft.com/en-us/library/system.windows.forms.bindingsource.resetbindings(v=vs.110).aspx?cs-save-lang=1&cs-lang=vb#code-snippet-1) Add the item to the Combox Items List. -
Began Watching Create database tables from Visual Studio
I have earlier created the databases in the sql management studio. but a friend of mine said it would be possible to dreate the tables directly in visual studio and … -
Replied To a Post in Create database tables from Visual Studio
This is free [Click Here](http://www.dotnetheaven.com/article/sql-server-database-programmatically-in-vb.net) -
Began Watching Help Searching Datagridview
I have data already populated in a datagrid I have three textbox txtCustomername, txtPartcode, txtinvo I want the user to be able to input text into the txtcustomername text box … -
Replied To a Post in Help Searching Datagridview
See if the following will help Dim lstTextboxes As New List(Of TextBox) Private Sub LoadTextBoxList() lstTextboxes.Add(txtCustomername) lstTextboxes.Add(txtPartcode) lstTextboxes.Add(txtinvo) End Sub Private Sub btnTEST_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) … -
Began Watching data table will not populate with complex sql select statement
Below is the code I am using: Dim safe10_comp As Integer Dim ref_date As Date Dim dr As DataRow Dim dt As DataTable = New DataTable() Dim da As OleDb.OleDbDataAdapter … -
Replied To a Post in data table will not populate with complex sql select statement
tatacco; "My advice to you is to start drinking heavily" -John 'Bluto' Blutarsky -
Began Watching UPDATE statement
hi guys, I got another issue doin my project. Im using Microsoft access as Database. When i need to UPDATE it work and the msgbox displayed: "thank you", but when … -
Replied To a Post in UPDATE statement
Im not sure about using the "AND"'s in your UPDATE statement there should be commas seperaing your fields and values. Here is a test query(StoredProcedure) I have in one of …
The End.