Search results for query: *

  • Users: dranko
  • Content: Threads
  • Order by date
  1. D

    How to clear DataGridView?

    I have some texboxes od form, bound to DataTable1 and DataGridView is bound to DataTable2. There is relation between DataTable1(Master) and DataTable2(Details). How to clear all rows from DataGridView? I've tried this: For Each row As DataGridViewRow In DataGridView1.Rows If...
  2. D

    [VS2005] IDE customisation

    Is there a way to customise IDE environment so when I'm working on form in design mode to have Properties pane visible, and when change to sorce view mode to automatically hide Properties pane and have more space for code view&edit.
  3. D

    Hide dropdown button in ComboBox and DateTimePicker

    Howto hide dropdown button in ComboBox and DateTimePicker In DataGridView (VS2005) if we choose DataGridViewComboBoxColumn there is property DisplayStyle and we can choose Nothing to hide DropDownButton. Is there any way to hide dropdown button in ComboBox or DateTimePicker controls.
  4. D

    DatagridViewComboBox: How to indicate dropdown?

    Regular ComboBox control has a property DroppedDown (Gets or sets a value indicating whether the combo box is displaying its drop-down portion). DatagridViewComboBox sims to doesn't have that property. How to indicate whether the DatagridViewComboBox is displaying its drop-down portion?
  5. D

    Formatting number with leading zeroes

    I have a textbox bound to datatable column(integer type). What user want is when number is for example 5, to show 0005, or 35 to show 0035 (4 places). How to format textbox to get that. I was trying this: BrojOtprTextBox.Text.ToString("0000") but it doesn't work.
  6. D

    Vertical MenuStrip

    I want to have vertical Menu docked on left side of the form (VB2005), and that is not problem. The problem is moving thrue menu. Now it's move with left/right arrow keys and with up/down opens submenu. I want to move with up/down arrow keys and with enter key open submenu. How can I accomplish...
  7. D

    How to programmaticaly show Context Menu?

    How to programmaticaly show Context Menu (without mouse rightclicking).
Back
Top