+ Reply to Thread
Results 1 to 2 of 2

Userform Questions

Hybrid View

  1. #1
    Registered User
    Join Date
    11-17-2013
    Location
    Dover,NJ
    MS-Off Ver
    Excel 2007
    Posts
    10

    Userform Questions

    Hello All, I have a few questions. any help would be greatly appreciated

    1. Is there a way to mass edit all of the names of my user form objects ?. Instead of clicking each one, are they listed elsewhere altogether where they can be edited ?

    2. I would like to create a summary page or review page for the user to check prior to hitting the submit button is this possible ?

    Thanks !

  2. #2
    Forum Expert
    Join Date
    12-14-2012
    Location
    London England
    MS-Off Ver
    MS 365 Office Suite.
    Posts
    8,448

    Re: Userform Questions

    I would never rename your userform object names.

    As you get more proficient then you will want to create complex read write routines like:

    
    'Write Contents of 200 TextBoxes to Row 2 of current worksheet
    
    Option Base 1
    Sub macro()
    Dim Myarray(200)
    For count = 1 to 200
    MyArray(Count) = Me.Controls("Textbox" & 1 ).value
    Next
    Range(Cells(2, 1), Cells(2, 200)).Value = MyArray
    End Sub
    Last edited by mehmetcik; 04-03-2015 at 08:31 PM.
    My General Rules if you want my help. Not aimed at any person in particular:

    1. Please Make Requests not demands, none of us get paid here.

    2. Check back on your post regularly. I will not return to a post after 4 days.
    If it is not important to you then it definitely is not important to me.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. VBA UserForm Questions
    By Rahzelsmh in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 03-25-2015, 02:48 AM
  2. UserForm Questions
    By Sam9530130 in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 11-24-2012, 09:37 PM
  3. Userform Questions
    By ducecoop in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 12-12-2008, 09:51 AM
  4. [SOLVED] Three userform questions
    By Chris Cred via OfficeKB.com in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 02-08-2006, 04:40 PM
  5. [SOLVED] Two UserForm Questions
    By FL Consultant in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 08-19-2005, 05:05 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1