+ Reply to Thread
Results 1 to 5 of 5

How To Keep Running Program When Other Command Button Clicked

Hybrid View

iqballud How To Keep Running Program... 03-07-2014, 01:27 AM
tony h Re: How To Keep Running... 03-07-2014, 04:00 PM
fonzie29 Re: How To Keep Running... 03-07-2014, 04:23 PM
iqballud Re: How To Keep Running... 03-08-2014, 12:11 AM
iqballud Re: How To Keep Running... 03-08-2014, 12:23 AM
  1. #1
    Forum Contributor
    Join Date
    11-17-2013
    Location
    Qatar
    MS-Off Ver
    Excel 2010
    Posts
    187

    Thumbs up How To Keep Running Program When Other Command Button Clicked

    Hello Brother,

    I need your golden hands to solved the code as below,
    Option Explicit
    Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long)
    Sub FillBottleA()
    Application.ScreenUpdating = False
        Const valIncrement As Double = 2
        Dim intMax As Integer
        Dim intIndex As Integer
        Dim intCalc As Double
        
        intMax = 50
        
        For intIndex = 1 To intMax
            DoEvents
            intCalc = intCalc + valIncrement
            UserForm1.TextBox1 = Round(intCalc, 1)
            Sleep 100
        Next
    Application.ScreenUpdating = True
    End Sub
    
    Sub FillBottleB()
    Application.ScreenUpdating = False
        Const valIncrement As Double = 2
        Dim intMax As Integer
        Dim intIndex As Integer
        Dim intCalc As Double
        
        intMax = 50
        
        For intIndex = 1 To intMax
            DoEvents
            intCalc = intCalc + valIncrement
            UserForm1.TextBox2 = Round(intCalc, 1)
            Sleep 100
        Next
    Application.ScreenUpdating = True
    End Sub
    This code will use to run in UserForm1 under CommandButton1 and CommandButton2, please see the file attachment for detail.
    My question is,
    1. When the program is running under CommandButton1, then I clicked CommandButton2, the running program will be stopped, not continues running.
    What code should i write to protect the running program if other CommandButton will be clicked?
    2. If the program running in UserForm1, then i moved to UserForm2, also the program stopped running.
    What code should i write it to protect the program to continues running though i opened other UserForm?

    Thanks in advance for any small helps and efforts.

    Best Regards,
    Iqbal

  2. #2
    Valued Forum Contributor tony h's Avatar
    Join Date
    03-14-2005
    Location
    England: London and Lincolnshire
    Posts
    1,187

    Re: How To Keep Running Program When Other Command Button Clicked

    If you write the code to run from the base module and launch the form as a non-modal (with the buttons just setting control values) then in your main code check the control vlues to see if the buttons have been clicked.


    click on the * Add Reputation if this was useful or entertaining.

  3. #3
    Registered User
    Join Date
    02-13-2013
    Location
    Bergen County
    MS-Off Ver
    Excel 2010
    Posts
    36

    Cool Re: How To Keep Running Program When Other Command Button Clicked

    Hi Iqballud,

    From what I understand try putting the following code.

    UserForm1.Show vbModeless
    Does the 2 commands do 2 separate things or in conjunction?

    I hope this helps.

    Thanks,
    Fonzie

  4. #4
    Forum Contributor
    Join Date
    11-17-2013
    Location
    Qatar
    MS-Off Ver
    Excel 2010
    Posts
    187

    Re: How To Keep Running Program When Other Command Button Clicked

    Hi Fonzie and Tony,

    Sorry to late reply, just came back from work.
    Fonzie...thank youuu...soo...muchhh...
    Your code is working nicely
    Thanks brothers, i will add reputation to all of you.

    Best regards,
    Iqbal

  5. #5
    Forum Contributor
    Join Date
    11-17-2013
    Location
    Qatar
    MS-Off Ver
    Excel 2010
    Posts
    187

    Re: How To Keep Running Program When Other Command Button Clicked

    Fonzie, the 2 commands to do 2 separate things, not conjunction.
    I will manipulate the code by add some condition, i.e. "if sheet1.[A1]=1 then...".
    May be this is the way how to solve the problem.

    Best Regards,
    Iqbal

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] Pull a Hidden frame when clicked command button.
    By venkcris in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 03-02-2014, 08:52 PM
  2. Running a cell formula only when a button is clicked
    By helen269 in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 11-23-2012, 01:51 PM
  3. VBA to automatically move command button to another cell after being clicked on
    By vaznlyfe in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 08-23-2012, 11:29 AM
  4. [SOLVED] Command Button does not re-set once clicked
    By Jurrasicway in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 04-09-2006, 09:25 AM
  5. [SOLVED] [SOLVED] running a command button from a program
    By Pete at Sappi Fine Paper in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 05-05-2005, 11:06 AM

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