How to: control whether users are allowed to exit the workbook of excelapplication

Source: Internet
Author: User

Author: water and smoke

ProgramIf a workbook is opened for the user to operate directly, the user may close the workbook or even quit the entire excelapplicatoin. You can use the following methods to prevent this situation (this problem is not noticed by many people, so the homepage is published ):

Imports Microsoft. Office. InterOP
Public   Class Form1

PrivateGworkbookcancloseAs Boolean = False

Private   Sub Button#click ( Byval Sender As System. object, Byval E As System. eventargs) Handles Button1.click
Dim Excelapplication As   New Excel. Application
Dim Workbook As Excel. Workbook = Excelapplication. workbooks. Add

Addhandler Workbook. beforeclose, Addressof Onworkbookbeforeclose

Dim Worksheet As Excel. Worksheet =   Ctype (Workbook. Sheets. Add, Excel. worksheet)
With   Ctype (Worksheet. cells ( 1 , 1 ), Excel. Range)
. Interior. colorindex =   40
. Value =   " 123 "
End   With

excelapplication. visible = true
end sub

Private SubOnworkbookbeforeclose (ByrefCancelAs Boolean)
Cancel= NotGworkbookcanclose
End sub

Private   Sub Button2_click ( Byval Sender As System. object, Byval E As System. eventargs) Handles Button2.click
Gworkbookcanclose =   Not Gworkbookcanclose
End sub

End Class

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.