Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by azarcomp

  1. azarcomp

    newbie - how to make an MS SQL sp to save a vb.net forms values?

    thanks, just got fired. i had 6 months off and got rusty, i was practicing linux and sql dba not knowing what i may get hired for. well, i got 3.5 days pay. better than nothing
  2. azarcomp

    How to update a dynamic datagridview's dataset

    OK, I know this was obserd to think this would work. It threw no erros Try dgvTables.Update() Catch ex As Exception MsgBox(ex.Message & " Update Changes got Hosed") End Try End Sub
  3. azarcomp

    How to update a dynamic datagridview's dataset

    Ok i was wrong I did get an update from intellisense. example dgvTables.Update .But there is no insert or delete, so does this mean the DataViewGrid is smart enough to know to make any and all changes that where edited in the grid to the table in the database if I put dgvTables.Update in a sub?
  4. azarcomp

    How to update a dynamic datagridview's dataset

    Thanks River Guy. I am new at vb.net. Here is what a developer wrote for me that gets me started. with the way he is connecting to the ms sql db (below), will I be able to use the above aproach that RiverGuy gave me? The form has a cbo box that fills all user tables in the database. then when...
  5. azarcomp

    How to update a dynamic datagridview's dataset

    I have a dynamic datagridview that brings rows from user tables. Now I need to be able to update the dataset when someone make a change to a cell in in the dataGridView. Has someone done this before?
  6. azarcomp

    newbie-do i need multiple updates queries to update multiple tables?

    thanks, some times you just would like some reinforcement before you spend a couple hours using the wrong approach to begin with. thank!
  7. azarcomp

    newbie-do i need multiple updates queries to update multiple tables?

    Ok, well I am trying to narrow it down before I start coding it for the development app, this is not the dev tables or data.just trying to see if someone thinks i am on the right track. now I am trying to figure out if the only and best wat to update into 2 or more tables at the same time is to...
  8. azarcomp

    newbie - how to make an MS SQL sp to save a vb.net forms values?

    Ok, well I am trying to narrow it down, this is not the dev tables or data. just trying to see if someone thinks i am on the right track. now I am trying to figure out if the only and best wat to update into 2 or more tables at the same time is to use 2 or more update queries. like so: 1.make...
  9. azarcomp

    newbie - how to make an MS SQL sp to save a vb.net forms values?

    I know this is both a T-Sql and a VB.net question, but did not know where to post... SO I finally got hired and am rusty as can be. so much its embarrassing. I need to make a sp that the vb.net forms controls will pass and updated values too. so do i make one update sp for the form to call...
  10. azarcomp

    how to add dynamic row to data set

    this way it will not let me specify which column i am putting it in Try Dim colNames() As String = {"InventoryLocation", "InventoryLocationID", "Description"} Dim dt As DataTable dt = InvLocationAdapter.GetinvLocation dt.Rows.Add(New Object()...
  11. azarcomp

    how to add dynamic row to data set

    I was asked to add a row to a data set that is already in memory to be put into a combo box. where and how do i put it in my code? It needs to say in combo box "Select Item" 'Location Try Dim colNames() As String = {"InventoryLocation", "InventoryLocationID"...

Part and Inventory Search

Back
Top