![]() |
Return to excel from vbe
I wrote a procedure that inserts two procedures into the activeworkbook
ThisWorbook module. I am trying to make a utility for novice users and would like them not to see the vbe (it scares them). After the code is written the vbe stays open on the ThisWorkbook module. What is the code equivalent of alt + F11? |
Return to excel from vbe
You can use this bobbo
Application.VBE.MainWindow.Visible = False -- Regards Ron de Bruin http://www.rondebruin.nl "bobbo" wrote in message oups.com... I wrote a procedure that inserts two procedures into the activeworkbook ThisWorbook module. I am trying to make a utility for novice users and would like them not to see the vbe (it scares them). After the code is written the vbe stays open on the ThisWorkbook module. What is the code equivalent of alt + F11? |
Return to excel from vbe
Thanks that works. Is there a way to keep the screen from hopping back and forth from excel to vbe while the code is executing or will I just have to live with that? |
Return to excel from vbe
Maybe this will help
http://www.cpearson.com/excel/vbe.htm#ScreenFlicker -- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "bobbo" wrote in message ups.com... Thanks that works. Is there a way to keep the screen from hopping back and forth from excel to vbe while the code is executing or will I just have to live with that? |
Return to excel from vbe
When you create the code you not have to display the VBE
you can run code like this without opening the VBE See also Chip's site http://www.cpearson.com/excel/vbe.htm Sub AddProcedure() Dim VBCodeMod As CodeModule Dim LineNum As Long Set VBCodeMod = ThisWorkbook.VBProject.VBComponents("Sheet1").Code Module With VBCodeMod LineNum = .CountOfLines + 1 .InsertLines LineNum, _ "Sub MyNewProcedure()" & Chr(13) & _ " Msgbox ""Here is the new procedure"" " & Chr(13) & _ "End Sub" End With End Sub -- Regards Ron de Bruin http://www.rondebruin.nl "bobbo" wrote in message ups.com... Thanks that works. Is there a way to keep the screen from hopping back and forth from excel to vbe while the code is executing or will I just have to live with that? |
All times are GMT +1. The time now is 07:27 AM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com