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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. artnethouse

    Serialize Properties.Settings Class

    Depends how you want to use it. Please have a look at http://msdn.microsoft.com/en-us/library/ms229207.aspx and this http://msdn.microsoft.com/en-us/library/aa730869%28v=vs.80%29.aspx http://blog.kowalczyk.info/article/Serialization-in-C.html Good luck
  2. artnethouse

    Using a DLL - basic question

    Hi; Don't panic. Spend some time for videos on youtube for beginners. This will save a lot of time and arrange recent stuff you learned. How to add reference, button event, etc.
  3. artnethouse

    Newbie: Am I doing this right?

    Hi something else to check this: DataTable dt = new DataTable(); BindingSource bs = new BindingSource(); radGridView1.EndEdit(); bs = (BindingSource)radGridView1.DataSource; dt = ((DataTable)bs.DataSource).GetChanges(); if...
  4. artnethouse

    Newbie: Am I doing this right?

    Hi Just now did test - autoincrement works, but in your case - does it refresh datagrid after every operation? It is about events again. Seems there is not exchange between data table and grid in correct moment.
  5. artnethouse

    Joomla, Drupal, WordPress, etc. Which is right for me?

    Drupal is first to develop in imho But why not to check something already capable to do such job? Check please Bitnami stacks for different applications.
  6. artnethouse

    Newbie: Am I doing this right?

    Hi! Every new records can be accomodated by a set of mandatory values, you should generate id, if you want - keep it invisible. It should behave like a normal field value, check carefully sequence of events. Also very useful thing - create small test project, do things there, see difference...
  7. artnethouse

    Newbie: Am I doing this right?

    Why not to build around this? cmd.Parameters.Add(new SqlCeParameter("@Id", dt.Rows[i]["Id", DataRowVersion.Original].ToString())); cmd.CommandText = "your query"; cmd.ExecuteNonQuery(); Also identity field - is a must. Create it.

Part and Inventory Search

Back
Top