Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. SlyBoots

    Navigating Problems....

    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...
  2. SlyBoots

    noob needs help with arrays

    The fastest way to transfer data from a spreadsheet range to an array is by using this VBA command: myArray = Range(&quot;someRange&quot;).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...
  3. SlyBoots

    Custom Dialog Box - Getting user input.

    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(&quot;bkm1&quot;).Range.Text = Me.txtField1...

Part and Inventory Search

Back
Top