Search results for query: *

  1. A

    MDI Parent & Child

    set Mdicontainer property to true for parent Form and childForm.mdiParent = parentForm
  2. A

    label RightToLeft property

    Thanks for all the replies... guardian awsome yet simple solution very nice :) working like a charm thanks a lot.
  3. A

    label RightToLeft property

    Hi all was wondering if someone can help me out here basically I have got three labels lined up vertically on a form all of them being populated dynamically with numbers and what I want to do is right align them so basically the label should expand leftward when text is being added.. I have...
  4. A

    Datagridview: retrieve cell contents - selected row, col4

    'You can do it as Dim value As Integer 'this will get the current row's index value = Me.dgv.CurrentRow.Index 'and this will get the value in col4 Column4 = Me.dgv.Rows(value).Cells(4).Value() msgbox(column4) hope this helps.
Back
Top