Search results for query: *

  • Users: jsn1
  • Order by date
  1. J

    How to run several subroutiones at the same time

    Hi all, I wrote a vb.net console application, that compares files located in a server to the same files and folders located in a laptop and updates the laptop files if the file is older than the one on the server. When I run my program it runs sequentially reading - folder A and comparing it...
  2. J

    How to delete tags froman XML file

    Hi all. I would like to delete some tags from an XML file, to create a dataset and bound it to a datagrid. I have this XML file as an entry: <?xml version="1.0" encoding="UTF-8"?> <ARCXML> <RESPONSE> <family> <name gender="Male"> <firstname>Tom</firstname> <lastname>Smith</lastname>...
  3. J

    read only check box

    thank you all for your help!!!
  4. J

    How to find directories inside a folder

    hi all I would like to find all the directories inside a folder thanks
  5. J

    read only check box

    How can I disable the check boxes?
  6. J

    read only check box

    Hi all there is a property in a textbox that allows to set a text box in read only mode. how can I do the same thing in a check box? I have an update form, where I only want the user to update some fields, not all of them. The Check box files must be read only thanks
  7. J

    How to update a data table from a textbox

    I found the problem, when I binded the combobox, I used the same syntax as a textbox, so the updates I made on the combo box where not registered. ' bind combobox ' Me.cbDetailStatus.DataSource = dtStatusDataTable Me.cbDetailStatus.DisplayMember = "Name" Me.cbDetailStatus.ValueMember = "Name"...
  8. J

    edit datatable record with textbox

    hi, a combo box is bound like that: ' ' bind combobox ' Me.cbDetailStatus.DataBindings.Add("SelectedValue", dtAASIS, "Status") and I bound it as a text box, so it was wrong, this is why I could no see the modifications jsn
  9. J

    edit datatable record with textbox

    Hi, the text box is already bound, and my question is: why I do not see the modified fields in the datagrid that points exactly to the same record as the text box. Do I need to refresh the datagrid thanks jsn
  10. J

    edit datatable record with textbox

    hi all, I created the datatable, and bound it to a datagrid and several textboxes. In my windows form I have a tabControl with two tabs: - one for the list, with a datagrid that displays the content of the datatable, - another tab called "detail" that displays the record selected on the...
  11. J

    How to update a data table from a textbox

    I created the datatable, and it has data. In my windows form I have a tabControl with two tabs: - one for the list, with a datagrid that displays the content of the datatable, - another tab called "detail" that displays the record selected on the datagrid. Here the user can modify a text box...
  12. J

    How to update a data table from a textbox

    Hi all, I created a form with several textboxes, and a datatable that I have bound to the text boxes. When I update a text box and I click on the button "Save", I do not know how to save the new value on the datatable. thanks jsn
Back
Top