Visual Basic 3

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Mad

    Visual Basic 3

    Hello to all,

    Do someone know how to close an MDIChild window by using a command
    button on the same window?

    Also how to make the text on a textbox be selected when
    it gets focus on Visual Basic 3?

    tkx.






  • Randy Birch

    #2
    Re: Visual Basic 3

    : Do someone know how to close an MDIChild window by using a command
    : button on the same window?

    Unload Me

    : Also how to make the text on a textbox be selected when
    : it gets focus on Visual Basic 3?

    Text1.SelStart = 0
    Text1.SelLength = Len(Text1.Text)

    --

    Randy Birch
    MVP Visual Basic

    Please respond only to the newsgroups so all can benefit.

    There' no place like 127.0.0.1


    "Mad" <madpoet@coqui. net> wrote in message
    news:cTyMb.212$ [email protected] etserver.com...
    : Hello to all,
    :

    :
    : Also how to make the text on a textbox be selected when
    : it gets focus on Visual Basic 3?
    :
    : tkx.
    :
    :
    :
    :
    :
    :


    Comment

    • Mad

      #3
      Re: Visual Basic 3

      Thanks allot, very helpful.
      "Randy Birch" <rgb_removethis @mvps.org> wrote in message
      news:UoFMb.1200 41$AAe1.103243@ news01.bloor.is .net.cable.roge rs.com...[color=blue]
      > : Do someone know how to close an MDIChild window by using a command
      > : button on the same window?
      >
      > Unload Me
      >
      > : Also how to make the text on a textbox be selected when
      > : it gets focus on Visual Basic 3?
      >
      > Text1.SelStart = 0
      > Text1.SelLength = Len(Text1.Text)
      >
      > --
      >
      > Randy Birch
      > MVP Visual Basic
      > http://vbnet.mvps.org/
      > Please respond only to the newsgroups so all can benefit.
      >
      > There' no place like 127.0.0.1
      >
      >
      > "Mad" <madpoet@coqui. net> wrote in message
      > news:cTyMb.212$ [email protected] etserver.com...
      > : Hello to all,
      > :
      >
      > :
      > : Also how to make the text on a textbox be selected when
      > : it gets focus on Visual Basic 3?
      > :
      > : tkx.
      > :
      > :
      > :
      > :
      > :
      > :
      >
      >[/color]



      Comment

      Working...