+ Reply to Thread
Results 1 to 3 of 3

Excel 2007 : initializing user form

Hybrid View

  1. #1
    Registered User
    Join Date
    07-07-2010
    Location
    Monterrey,Mexico
    MS-Off Ver
    Excel 2003
    Posts
    38

    initializing user form

    hello,

    I´m having trouble initializing my userform with some values. it was working a couple of days back but for some reason not working now..

    this is the code im using to do this.

    Private Sub UserForm1_Initialize()
    Dim iRow As Long
    Dim ws As Worksheet
    
    TextBox12.Value = Now()
    TextBox13.Value = Range("a50")
    
    
    End Sub

  2. #2
    Forum Guru Andy Pope's Avatar
    Join Date
    05-10-2004
    Location
    Essex, UK
    MS-Off Ver
    O365
    Posts
    20,481

    Re: initializing user form

    The event name does not usually contain the userform name.
    So that routine is just a private subroutine within the userform code module that is not being executed.

    Private Sub UserForm_Initialize()
    Dim iRow As Long
    Dim ws As Worksheet
    
    TextBox12.Value = Now()
    TextBox13.Value = Range("a50")
    
    
    End Sub
    In design mode double click the userform. Does the code editior open in this routine?
    Cheers
    Andy
    www.andypope.info

  3. #3
    Registered User
    Join Date
    07-07-2010
    Location
    Monterrey,Mexico
    MS-Off Ver
    Excel 2003
    Posts
    38

    Re: initializing user form

    thanks a lot problem solved..

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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