Search results for query: *

  1. B

    Column Count

    I got it thank you. Sorry I was in a bit of a panic. Thank for the help.
  2. B

    Column Count

    Thank you so much. Just one more question. Do I have to fill the table. Currently My column count for the table is 0. Dim dtbUser As DataTable dtbUser = New DataTable("tStudents") MsgBox(dtbUser.Columns.Count) For I As Integer = 0 To dtbUser.Columns.Count - 1 If...
  3. B

    Column Count

    Help If anyone could help me just to return a column header that would be great. Please.
  4. B

    Column Count

    HI, I am trying to do something like the following, is it possible? For index = 0 as integer To (The No. of columns in the table/dataset) If ( HeaderofColumn(index) ) = (SOME STRING) then ***** End If Next index I hope I have explained this clearly, I appreciate...
  5. B

    Update Table

    Fix Just to let everyone know that I have resolved this problem by moving to the next record before updating the table. Don't understand why this works but it does, found it by chance. i.e. the first line of code below Me.BindingContext(DsAddEdit1, "tStudents").Position =...
  6. B

    Update Table

    I have a dataform which I created myself, it just has a few textbox fields and a checkbox which are all bound to the relevent db column. I am calling this form when I want to create a new record or when I want to edit an existing record. Adding is working fine but editing is not. The table does...
  7. B

    Current Record

    Thank you! Thank you for the very detailed reply. I will try your solution it certainly seems to make sense. Brendan.
  8. B

    Current Record

    Hi I would appreciate any help possible to this problem. I am new to .NET and ADO.NET so this might be a very simple problem. I have a datagrid which displays Student records from a dataset 'DsStudents'21 The Datagrid is filtered however by each class group. I use a combo box for this. I need...
Back
Top