Search results for query: *

  • Users: kriswinner
  • Content: Threads
  • Order by date
  1. K

    Drag and Drop Cursor Width Limit?

    I'm having an issue with the size of the drag and drop 'text cursor' on my application. The code is very similar to this reference Microsoft Visual C#: Listboxes - drag drop & reorder ,Microsoft Visual C#. - msdn.itags.org Looking at the drawcursor sub, Sub drawcursor(ByVal text As String...
  2. K

    Question Toolstrip Textbox labels?

    Is it possible to have a label precede a toolstriptextbox? If so...how?
  3. K

    "Pre edit" treeview

    I have an application where I'm allowing a user to edit the text of a treeview. If the text of node is 'sBK01 (1732DS-IB8 (8 In))' I'd like the text in the "editable" state to start as 'sBK01'. I've found a couple of references on how to do this with MsgHook, but I can't seem to find...
  4. K

    "Locking" characters when the user edits a treeview node's text

    I have an application where I'm allowing the user to edit the text of a treeview node. Is it possible to "lock" portions of the node's text to keep it from being edited? For instance, if the text is "BK01" originally, can I keep the user from editing the "BK" prefix? I currently validate the...
  5. K

    Keypress capture when multicell selected within DataGridView

    I'm sure this is simple, but I can't seem to find a reference for this specific situation. I'm using a datagridview that I'd like to have the user be able to select multiple cells within a row and then allow them to press <Delete> to delete the values within the cells. I can't seem to capture...
  6. K

    Using Binary Serialization on XCData (or a Deep Copy Issue...)

    Some background: I'm creating an application that uses several "multi-leveled" structures (structures within structures within structures....) to store reference data. <Serializable()> Public Structure ControllerType Public Attributes As ControllerAttributeType Public...
  7. K

    Variable Aliasing?

    It is possible to alias variables in VB.NET? Let me give you an example. s = std_GCCS.Modules(NodeNum).Communications.ConfigTag.Data s.Format = "test data" s.xStructure.DataType = "test data" s.xStructure.ArrayMember.Name = "test data" Now to get the data back into...
  8. K

    Question DataGridView MouseUp Event

    Hopefully a dumb question, but I can't find a reference to it (or even acknowledgment anywhere online that it is an issue)... I'm trapping the MouseUp event on a DataGridView. It works great as long as I click on an "unused" portion of the DGV. If I click on a cell, the event does not...
  9. K

    Ellipse button control on DataGridView

    As a continuation to this post... http://www.vbdotnetforums.com/winforms-grids/33755-datagridview-cell-location-problem.html [...and thank you for your assistance!] I'm trying to use implement an ellipse button within a DataGridView to trigger a more detailed popup menu. This would be similar...
  10. K

    DataGridView Cell location problem

    I'm using the DataGridView control to display a table of textboxes and comboboxes. In one of the combobox columns, I need to popup a form when that cell is (left) clicked. I have that portion working. The part that I have issue with is locating the popup form properly. In the _CellClick...
Back
Top