Search results for query: *

  • Users: sfx
  • Content: Threads
  • Order by date
  1. S

    Expression or Visual Studio?

    Hello All, I have a question for some of the more seasoned ASP.NET developers out there. I am just beginning to develop web applications using ASP.NET. As a result, should I be using the new 'Expression Web Designer' with its emphasis on CSS to develop web forms, or should I rather stick to...
  2. S

    Concurrency and DataRowVersions

    Hello All, Does anyone have any suggestions (or examples) on how to go about iterating through a DataTable for only those DataRows that have a specific DataRowVersion and then copying them (and their values) into another DataTable? I am wanting to create a conflict resolution screen for an...
  3. S

    TabStop in a DataGridView?

    Hello All, How do I programmatically prevent a particular cell in a DataGridView from being focused by means of the TAB key? I want to be able to skip all cells in a certain column and move to the next selectable cell when a user hits the second last column in a DataGridView. Cheers, sfx
  4. S

    DataGridView and BindingNavigators

    Hello, When I click the Add button on a BindingNavigator (bound to a BindingSource) I cannot get the DefaultValuesNeeded event of a DataGridView to populate a cell with a default value. Has anyone else encountered this issue before? Is there a work-around? Cheers, sfx
  5. S

    Find a specific ListView Item

    Hi, I have a ComboBox that is bound to a DataTable. How do I use the SelectedValue of this ComboBox to locate and focus on the item in a ListView? Cheers, sfx
  6. S

    Changing items in a DataGridView's ComboBox

    Hi, Does anyone know how to change the items listed in a DataGridView's ComboBox on the fly? Cheers, sfx
  7. S

    DataGridView ComboBox ColumnType

    Hi All, How do I change a column type in a DataGridView to a ComboBox at runtime? Cheers, sfx
  8. S

    Master/Sub Forms

    Hello All, Does anyone know how to replicate the look and functionality of an MS Access Master/Sub Form? By this I mean not to simply invoke two DataGridViews, but to have the master section displayed with textboxes and comboxes etc while the Sub-form is displayed as a DataGridView... Any...
  9. S

    Update a DataGridView without a CommandBuilder

    Hello All, I have a DataGridView that has as its datasource a DataSet. Does anyone know how I might update the DataGridView (and in turn the database) without using a CommandBuilder object? I am unsure of the syntax needed in order to evaluate the appropriate DataAdapter parameters for this...
  10. S

    Can't update a DataAdapter

    Hello All, I am having problems using the Update method of a DataAdapter. Can anyone tell me why the below code does not work? cmdUpdateCustomers = New OleDbCommand cmdUpdateCustomers.Connection = conCustomers cmdUpdateCustomers.CommandText = "UPDATE tblCustomers SET FName = @FName WHERE...
  11. S

    Setting cell focus in a DataGridView

    Hello All, How do I set the focus to a specific cell in a DataGridView through code? Thanks, sfx
  12. S

    Referencing a cell in a DataGridView

    Hello All, How do I reference an exact cell's text or value property in a DataGridView control on a form? Cheers, sfx
  13. S

    Need correct SQL syntax for command object

    Hello All, I was wondering if someone might be able to assist me with the correct syntax for a particular SQL statement when creating an OleDBCommand object? I am trying to locate anything similar to a parameter that is mapped to the SelectedItem of a ComboBox. An example of what I am...
  14. S

    Populate a listview from a datatable

    Hello All, I was wondering if someone might be able to point me in the right direction when attempting to populate a listview control by means of a datatable? Could anyone provide a working example of this kind of iteration? Cheers, sfx
  15. S

    Change a button's backcolor through code

    Hello All, When changing the backcolor for a button through code, how do I select the colours located in the system tab of the properties window instead of having to use the default colours, like say, "button1.backcolor = color.white" etc...? Cheers, sfx
  16. S

    Custom Toolbar colours

    Hello All, Can anyone help me in changing the colour of a created toolbar so that it looks the same as the toolbars in the Visual Studio IDE itself? The standard created colour is blue with a lower shadow. I am trying to develop the same colour and shadowing as Visual Studio. Likewise, I am...
Back
Top