msgbox (no buttons)

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Option^Explicit

    msgbox (no buttons)

    How would you remove all buttons from a msgbox to display (timed) text only?

    or is there another feature, to display a very simply box that displays a
    message for a controled length of time


  • Jerry Engle

    #2
    Re: msgbox (no buttons)

    I'd just create a command button on my form, make it hidden by default.
    When it's time to display the time, make the button visible and just
    repeatedly change its caption. When time is up, hide the button.

    "Option^Explici t @shaw.ca>" <fu-q<remspam> wrote in message
    news:m2Trc.5366 77$Pk3.89920@pd 7tw1no...[color=blue]
    > How would you remove all buttons from a msgbox to display (timed) text[/color]
    only?[color=blue]
    >
    > or is there another feature, to display a very simply box that displays a
    > message for a controled length of time
    >
    >[/color]


    Comment

    • Option^Explicit

      #3
      Re: msgbox (no buttons)

      Good idea...
      Thanks for that.

      "Jerry Engle" <jengle1023@ear thlink.net> wrote in message
      news:dcTrc.5875 $Tn6.262@newsre ad1.news.pas.ea rthlink.net...[color=blue]
      > I'd just create a command button on my form, make it hidden by default.
      > When it's time to display the time, make the button visible and just
      > repeatedly change its caption. When time is up, hide the button.
      >
      > "Option^Explici t @shaw.ca>" <fu-q<remspam> wrote in message
      > news:m2Trc.5366 77$Pk3.89920@pd 7tw1no...[color=green]
      > > How would you remove all buttons from a msgbox to display (timed) text[/color]
      > only?[color=green]
      > >
      > > or is there another feature, to display a very simply box that displays[/color][/color]
      a[color=blue][color=green]
      > > message for a controled length of time
      > >
      > >[/color]
      >
      >[/color]


      Comment

      • Bob Butler

        #4
        Re: msgbox (no buttons)

        "Jerry Engle" <jengle1023@ear thlink.net> wrote in message news:<dcTrc.587 5$Tn6.262@newsr ead1.news.pas.e arthlink.net>.. .[color=blue]
        > I'd just create a command button on my form, make it hidden by default.
        > When it's time to display the time, make the button visible and just
        > repeatedly change its caption. When time is up, hide the button.[/color]

        If all you want to do is display information then why use a command
        button instead of a label? With a label you can set the caption
        property as needed to show tetx and then set it back to "" when done
        to clear it. Labels also use a lot less resources than most other
        controls.

        Comment

        Working...