Modeless form with "Cancel" button

kayteck

New Member
Joined
Sep 29, 2015
Messages
3
I have a following situation.
Form1 runs a printing routine after clicking OK.
Then Modeless form Form2 shows up with info what is being printed now.
I need a cancel button on Modeless form Form2 to stop all remaining tasks and exit.
At the moment cancel button in Form2 I have cannot be clicked when printing job is being done, so don't even know if End I have will work to stop procedures running ;).

A simplified version of what I have:

In Form1 - OK Button:
Code:
Private Sub ButtonOK_Click()
Me.Hide
Form2.Show
    For i = 1 To ItemsQty
                    Form2.Label1.Caption = "Item " & i
                    PreparePrintout(i)
                    PrintToNetworkPrinter
   Next i
Form2.Hide
Unload Form2
Unload Form1
End Sub
In Form2 - Cancel button:
Code:
Private Sub ButtonCancel_Click()
Unload Form1
Unload Form2
End
End Sub
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
try to put DoEvents in between separate procedures to see if this helps.
The other thing to check is if you can interact with form2 even when no code is running ?
 
Upvote 0
try to put DoEvents in between separate procedures to see if this helps.
The other thing to check is if you can interact with form2 even when no code is running ?

Wow.. DoEvents worked like a charm...
Before that Label.Caption had been updated every random for loop, but now it displays every single iteration...

I have to read a little bit about DoEvents to know exactly what it does :)

Thanks.
 
Upvote 0

Forum statistics

Threads
1,213,536
Messages
6,114,208
Members
448,554
Latest member
Gleisner2

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top