Thread: exit object
View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
Zygan
 
Posts: n/a
Default exit object


right click the tool bar and bring up forms
click the button button
and draw your button
right click the button and change preferences e.g what is says colour
etc etc

then you will see a button on the forms toolbar that looks like a set
square click that and then double click you "new" button
vba editor will open

and in between these lines

private "button name" sub
("so put your code here")
end sub



write these lines

activeworkbook.save (save workbook)
activeworkbook.close (closes workbook)

if you have recorded a macro then find out which module your macro is
in usually on the left hand side of the vba editor you can see all
modules and double click one too see whats in side

assuming your macro is in module one
write this line

call module1.macroname

you will notice once you press the . a list of macros in that module
will show just press down to the correct one and press TAB all done.


--
Zygan
------------------------------------------------------------------------
Zygan's Profile: http://www.excelforum.com/member.php...o&userid=34423
View this thread: http://www.excelforum.com/showthread...hreadid=550238