Search results for query: *

  1. K

    Datagrid Problem

    Hi Paszt, Think i got it, the checkbox is actually there... But how can i move its postion. ie. to the first column of the table.. Thanks.. Kekin VB.Net Programmer
  2. K

    Datagrid Problem

    Hi Paszt, Thanks for your help. I can display another column in the datagrid using ur sample code. But I don't really understand what you mean by "create a TableStyle that includes a reference to that column." Kekin VB.Net Programmer
  3. K

    Datagrid Problem

    hihi, I am creating a datagrid and i wanted to display all the values that i retrieve from the database. I was able to do this. However, i need to add a checkbox into one of the columns. This checkbox is not binded or link to the database, it is use for my own reference. I was wondering how...
  4. K

    DateTimePicker Problem

    Hi everyone, I have this form with textboxes and a datatimepicker. After i call .addnew to create a new record and upon pressing the save button, it shows a error, stating that the date field in the database cannot accept null value. The default value of the datatimepicker is set to "today"...
  5. K

    Combobox databindings property

    Thanks TPM.... I got it.
  6. K

    Combobox databindings property

    Hi... Can anyone tell me what do the following databindings property of a combobox means? SelectedItem SelectedValue Tag Text All these are found in the property box of combobox during design time. I cannot find the definition anywhere on the internet. Thank you.
  7. K

    Databinding issue...PLease help.thanks

    THanks guys for the help. I manage to solve my problem but another problem arise. I displayed my combobox without any databinding by using the following codes in the form_load. Dim dr As DataRow For Each dr In DsCust.Terms.Rows() cboTerm.Items.Add(dr("initial").ToString) Next...
  8. K

    Databinding issue...PLease help.thanks

    my datasource of the combo box is from the table call terms. Thus all the items displayed in the combo box are from the term table in the dataset. Other textfields in the form binded to the customer table in the same dataset. Thus when i do a endcurrentedit(), all the data are stored into the...
  9. K

    Databinding issue...PLease help.thanks

    I try to use the databinding (text) of the combobox. But it still doesnt work. When i used datasource property of the combobox, i think the table term is binded to the combobox. Thus, even if i use the text binding property to bind it to the customer table, the dataset will still not be updated.
  10. K

    Databinding issue...PLease help.thanks

    Hi everyone, I encountered a problem which i cannot solve it after one whole day. Feel very disappointed. I have this form with a lot of textfields and comboboxes. One of the combobox was binded to a table in the dataset call terms(using datasource property and display members) which...
Back
Top