Search results for query: *

  1. N

    Help With Calculation Logic

    it works with no problems, this is the same way i used to do it in vb6. no object oriented involved in it
  2. N

    Help With Calculation Logic

    thanks vis781 for your reply, very good point! but what do you think of using DataTable to store the payment types instead of creating an object for cash and object for visa,..etc? i am talking about performace wise? would it better or not? I am trying to reach to best way to do it. :D...
  3. N

    Help With Calculation Logic

    hi all, I have a form where user enters productID and price and it will sum the total in a textbox txtTotal.text, then the user will select type of payments (cash, master, visa, ..etc) and will input tendered amount in txtTendered.text and the Balance amount will show in a textbox...
  4. N

    Updating Database from DataTable

    thanks JuggaloBrotha for your reply, i am using the following: Dim strSQLPymt As String = "SELECT * FROM Temp_Table" dim dtTemp as New DataTable daTemp = New SqlDataAdapter(strSQL, cnSQL) daTemp.FillSchema(dtTemp, SchemaType.Source) i update my DataTable through out the code and now i want...
  5. N

    Updating Database from DataTable

    hi all, I created a Datatable, and i am adding datarows in it. I want to be able to copy all the information in the DataTable to a table in my Database. can this be done? i am using vb.Net 2005. thanks,
Back
Top