+ Reply to Thread
Results 1 to 20 of 20

message without stopping execution?

Hybrid View

Guest message without stopping... 06-17-2005, 05:05 AM
MattShoreson what about something like: ... 06-17-2005, 05:57 AM
MattShoreson the LED class j back link on... 06-17-2005, 06:01 AM
MattShoreson and as a bonus you wont need... 06-17-2005, 06:01 AM
Guest Re: message without stopping... 07-11-2005, 08:05 AM
Guest Re: message without stopping... 06-17-2005, 06:05 AM
Guest Re: message without stopping... 06-17-2005, 07:05 AM
Guest Re: message without stopping... 06-17-2005, 06:05 AM
  1. #1
    Stefi
    Guest

    message without stopping execution?

    Hi All,
    Is there any method to display a message during a lengthy process to inform
    the user on progress of the process without stopping execution as MsgBox
    always does?
    Stefi


  2. #2
    Forum Contributor
    Join Date
    12-04-2003
    Posts
    360
    what about something like:

    http://www.cpearson.com/excel/Progress.htm

  3. #3
    Forum Contributor
    Join Date
    12-04-2003
    Posts
    360
    the LED class j back link on page is pretty funky in a geeky type of way.

  4. #4
    Forum Contributor
    Join Date
    12-04-2003
    Posts
    360
    and as a bonus you wont need to register any dlls

  5. #5
    Stefi
    Guest

    Re: message without stopping execution?

    Dear Matt,

    I just now reviewed the topics I was interested in. I hope you come back to
    this topic, although quite a long time elapsed since your reply to my
    question above (sending e-mail directly to your address failed).
    I have found earlier http://www.cpearson.com/excel/Progress.htm page, I made
    a test, and I found it not too convenient to use, but I missed the reference
    to the "LED" type progress bar you attracted my attention to.
    I just now downloaded and tested it (very nice), but I have to ask your help
    to clearly understand your messages. You must forgive me for disturbing you
    with such things, but my mother tongue is not English (in fact it's
    Hungarian), and I don't know the meaning of words "funky" and "geeky", would
    you give me some explanation or synonims (I didn't found these words even in
    the largest English-Hungarian dictionary). Also I couldn't find out the
    meaning of "class j" back link.

    Regards,
    Stefi

    "MattShoreson” ezt Ã*rta:

    >
    > and as a bonus you wont need to register any dlls
    >
    >
    > --
    > MattShoreson
    > ------------------------------------------------------------------------
    > MattShoreson's Profile: http://www.excelforum.com/member.php...fo&userid=3472
    > View this thread: http://www.excelforum.com/showthread...hreadid=380019
    >
    >


  6. #6
    Tom Ogilvy
    Guest

    Re: message without stopping execution?

    geeky - generally refers to someone who is not very athletic and is very
    good with technical things such as computers. Bill Gates might be
    considered geeky

    funky - refers to something or someone that is popular because that
    something or someone exhibits behavior or appearance that enjoys popular
    acclaim. This is often associated with music and musicians. The term is
    somewhat dated.

    In the context:
    "the LED class j back link on page is pretty funky in a geeky type of way."

    Matt means the use of the LED is pretty impressive if you are impressed by
    techical approaches/implementation.

    --
    Regards,
    Tom Ogilvy

    "Stefi" <Stefi@discussions.microsoft.com> wrote in message
    news:4439FE79-CA73-4B10-B92E-85A8CA002A0C@microsoft.com...
    > Dear Matt,
    >
    > I just now reviewed the topics I was interested in. I hope you come back

    to
    > this topic, although quite a long time elapsed since your reply to my
    > question above (sending e-mail directly to your address failed).
    > I have found earlier http://www.cpearson.com/excel/Progress.htm page, I

    made
    > a test, and I found it not too convenient to use, but I missed the

    reference
    > to the "LED" type progress bar you attracted my attention to.
    > I just now downloaded and tested it (very nice), but I have to ask your

    help
    > to clearly understand your messages. You must forgive me for disturbing

    you
    > with such things, but my mother tongue is not English (in fact it's
    > Hungarian), and I don't know the meaning of words "funky" and "geeky",

    would
    > you give me some explanation or synonims (I didn't found these words even

    in
    > the largest English-Hungarian dictionary). Also I couldn't find out the
    > meaning of "class j" back link.
    >
    > Regards,
    > Stefi
    >
    > "MattShoreson" ezt írta:
    >
    > >
    > > and as a bonus you wont need to register any dlls
    > >
    > >
    > > --
    > > MattShoreson
    > > ------------------------------------------------------------------------
    > > MattShoreson's Profile:

    http://www.excelforum.com/member.php...fo&userid=3472
    > > View this thread:

    http://www.excelforum.com/showthread...hreadid=380019
    > >
    > >




  7. #7
    Bob Phillips
    Guest

    Re: message without stopping execution?

    Is the problem that you don't want the code interrupted, or that you want
    the MsgBox timed, and not depend upon a user responding. If the latter, use

    Dim cTime As Long
    Dim WSH As Object


    Set WSH = CreateObject("WScript.Shell")
    cTime = 10 ' 10 secs
    Select Case WSH.Popup("Open an Excel file?!", cTime, "Question", _
    vbOKCancel)
    Case vbOK
    MsgBox "You clicked OK"
    Case vbCancel
    MsgBox "You clicked Cancel"
    Case -1
    MsgBox "Timed out"
    Case Else
    End Select


    --
    HTH

    Bob Phillips

    "Stefi" <Stefi@discussions.microsoft.com> wrote in message
    news:510F726B-7027-45C0-B641-0EC01A83F6AF@microsoft.com...
    > Hi All,
    > Is there any method to display a message during a lengthy process to

    inform
    > the user on progress of the process without stopping execution as MsgBox
    > always does?
    > Stefi
    >




  8. #8
    Stefi
    Guest

    Re: message without stopping execution?

    The latter was the case, and you gave me a good solution, thank you!
    Nevertheless, Chris's suggestion Application.statusbar = "Message" is
    simpler and sufficient in my case.
    Regards,
    Stefi


    „Bob Phillips” ezt Ã*rta:

    > Is the problem that you don't want the code interrupted, or that you want
    > the MsgBox timed, and not depend upon a user responding. If the latter, use
    >
    > Dim cTime As Long
    > Dim WSH As Object
    >
    >
    > Set WSH = CreateObject("WScript.Shell")
    > cTime = 10 ' 10 secs
    > Select Case WSH.Popup("Open an Excel file?!", cTime, "Question", _
    > vbOKCancel)
    > Case vbOK
    > MsgBox "You clicked OK"
    > Case vbCancel
    > MsgBox "You clicked Cancel"
    > Case -1
    > MsgBox "Timed out"
    > Case Else
    > End Select
    >
    >
    > --
    > HTH
    >
    > Bob Phillips
    >
    > "Stefi" <Stefi@discussions.microsoft.com> wrote in message
    > news:510F726B-7027-45C0-B641-0EC01A83F6AF@microsoft.com...
    > > Hi All,
    > > Is there any method to display a message during a lengthy process to

    > inform
    > > the user on progress of the process without stopping execution as MsgBox
    > > always does?
    > > Stefi
    > >

    >
    >
    >


  9. #9
    Chris Ferguson
    Guest

    Re: message without stopping execution?

    Would it be feasable to show the progess on a new sheet and periodically
    switch back on the screen updating so that the user can see how the process
    is updating.
    Or can you use the Application.statusbar = "Message" to keep the user
    informed?

    Chris


    "Stefi" <Stefi@discussions.microsoft.com> wrote in message
    news:510F726B-7027-45C0-B641-0EC01A83F6AF@microsoft.com...
    > Hi All,
    > Is there any method to display a message during a lengthy process to
    > inform
    > the user on progress of the process without stopping execution as MsgBox
    > always does?
    > Stefi
    >




+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1