Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 343
Default Referencing a UserForm in a Module

I want to setup a module that will interact with UserForm1. During UserForm
Initialization I want to call the Missing Data routine and have if check the
values of Optionbuttons 2212 and 2213 (on UserForm1) and if they are False
then change the BackColor and BorderColor of
Frame 2202, which is also on UserForm1.

I know I can do this by placing the code within the UserForm but there are
over 3000 lines of code for this UserForm and I am hoping that by moving
some of this off to individual modules I can make my coded more manageable.



Sub MissingData()
'
'
'

'
With UserForm1
'Current No Show Data Check


'No Show 1 Data Check

If OptionButton2212.Value = False Then
If OptionButton2212.Value = False Then
Frame2202.BackColor = &H80FFFF
Frame2202.BorderColor = &HFF&
End If
End If

End With

End Sub



  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 24
Default Referencing a UserForm in a Module


Hi Patrick,

You should just have to preface teh control refernce witha refernce to
the userform. Using your sample code, something like this should work:

If Userform1.OptionButton2212.Value = False Then

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 343
Default Referencing a UserForm in a Module

Wow that was easy, Thanks.

"arjen van der wal" wrote in message
...

Hi Patrick,

You should just have to preface teh control refernce witha refernce to
the userform. Using your sample code, something like this should work:

If Userform1.OptionButton2212.Value = False Then

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
VBA code in one Module referencing Public Variables Declared inanother Module failing Khurram Excel Programming 5 March 11th 09 11:01 PM
Referencing UserForm event in module avi Excel Programming 2 September 2nd 07 05:53 PM
Userform/Module saziz[_16_] Excel Programming 3 October 17th 05 12:14 AM
Option Private Module not preventing cross project referencing seisman Excel Programming 2 July 29th 05 03:24 PM
referencing at module level Mark[_36_] Excel Programming 1 March 1st 04 01:24 PM


All times are GMT +1. The time now is 04:44 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"