I agree that you should repeat the buttons on the bottom frame, but you can hide/unhide them when the left menu is hidden, like this:
<span id="bottomButtons" style="display:none"><input type="button" onclick="x()"><input type="button" onclick="y()"></span>
when the user clicks on your...
The fastest way to transfer data from a spreadsheet range to an array is by using this VBA command:
myArray = Range("someRange").value
To apply this to your situation, place the numbers 1 through 4 in cells A1:D1, and run the following routine:
Sub TransferToArray()
Dim...
Let's say you have userform1 with three text fields named txtField1, txtField2, and txtField3. Put a button on the userform, and link it to code like this:
Sub CommandButton1_Click()
ActiveDocument.Bookmarks("bkm1").Range.Text = Me.txtField1...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.