Search results for query: *

  1. W

    Question Main.Designer.vb

    What causes the designer to get messed up and what can be done to prevent it? For the dataset designer, I uncovered a tip that suggest simply move something on the screen and save. That tip has saved me much time. Now to find one for the designer. I am having to back up often. Microsoft...
  2. W

    Question detail view : comboBox value is not getting into the dataset before update

    The dataset is missing the JobSiteID(required field) but it exists in the Winforms combobox. The following code fails to get thecombobox.SelectedValue into the dataset. Private Sub EstimatingSheetBindingNavigatorSaveItem_Click(sender As System.Object, e As System.EventArgs) Handles...
  3. W

    Question winforms -- filter on detail view?

    From the information found on this link https://sites.google.com/site/dynamicsqltableadapter/, I was able to add a where clause to the sql statement and reload the dataset.
  4. W

    Question winforms -- filter on detail view?

    I have been able to get filters working with datagridviews, comboboxes, and combobox filtered on the selection of a previous combobox selection. Now I have a winform detail view that I am trying to filter. The dataset.table.Defaultview.RowFilter = filterString works. the count on the dataset...
Back
Top