ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Excel VBA/Macro - Textbox (https://www.excelbanter.com/excel-programming/292040-excel-vba-macro-textbox.html)

thesteelmaker[_3_]

Excel VBA/Macro - Textbox
 
I have created a small meal planner, in Excel2000.

I want to add a help box, similar to a comment box, using a macro and
text box.

Also when pressing the macro button can, the buttons text change. i.e
Open Help/Close help.

Any advice welcome
Many Thanks

Nic

--
Message posted from http://www.ExcelForum.com


Mark Rosenkrantz[_2_]

Excel VBA/Macro - Textbox
 
Steelmaker;

You can have buttons that change their text ( caption ).
Here is an example.

Private Sub cbToggleDetails_Click()
With frmDetails
If .cbToggleDetails.Caption = "More Details" Then
.cbToggleDetails.Caption = "Less Details"
.cbMonth.SetFocus
.Height = 275
Else
.cbToggleDetails.Caption = "Less Details"
.cbToggleDetails.Caption = "More Details"
.cbMonth.SetFocus
.Height = 125
End If
End With
End Sub

Succes;

Mark.

More Excel ? www.rosenkrantz.nl or
------------------------------------------------------------------


"thesteelmaker " wrote in
message ...
I have created a small meal planner, in Excel2000.

I want to add a help box, similar to a comment box, using a macro and a
text box.

Also when pressing the macro button can, the buttons text change. i.e.
Open Help/Close help.

Any advice welcome
Many Thanks

Nick


---
Message posted from
http://www.ExcelForum.com/





All times are GMT +1. The time now is 03:59 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com