I've been trying to create a macro which closes excel without the save pop-up coming up, anyone got any ideas? I don't want it to save, this is because i don't want anyone who uses it to muck it up!
grandfilth 0 Newbie Poster
Recommended Answers
Jump to PostWhy not make it read only?
Check the switches section of VBA -
I believe it's the app.close or END command
Jump to PostLook Into The Excel Object. You can create/Manipulate excel documents with a VB Program (even with WSH alone) by using these objects. An Example
set xapp = CreateObject("Excel.Application") xapp.Visible = True ' Make a new Excel workbook: set workbook = xapp.Workbooks.Add set worksheet = workbook.Worksheets("sheet1")
Basically, It …
All 5 Replies
Kegtapper 0 Junior Poster
grandfilth 0 Newbie Poster
Kegtapper 0 Junior Poster
grandfilth 0 Newbie Poster
Comatose 290 Taboo Programmer Team Colleague
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.