Search results for query: *

  1. mhmdh2000

    How to call subroutine in another form

    Thank you, I don't know why it was not working morning... :-)
  2. mhmdh2000

    How to call subroutine in another form

    I have form1 and form2 in form2 there is Sub abcd() How can I call Sub abcd() from within form1? In VB6, I add "Public" word before Sub abcd(), but this is not working with .NET
  3. mhmdh2000

    How to call a form from another from's button click event?

    In Module: Public myForm2 as Form2 In Form1: If myForm2 Is Nothing OrElse myForm2.IsDisposed = True Then myForm2 = New Form2 myForm2.Show() myForm2.Activate() Else myForm2.Show() myForm2.Activate() End If
  4. mhmdh2000

    How to make all the buttons in toolbar have the same width?

    Toolbar1.ButtonSize.Width Right, that solved my problem, thanks
  5. mhmdh2000

    How to make all the buttons in toolbar have the same width?

    I can't find "width" property of the toolbar button: Dim i As Int16 For i = 0 To ToolBar1.Buttons.Count - 1 ToolBar1.Buttons(i).width = 100 'No width property Next
  6. mhmdh2000

    How to make all the buttons in toolbar have the same width?

    After I added text properties to the buttons, each button has different width depending on its text. But I need all the buttons to have the same width.
Back
Top