Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6768711
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T15:06:24+00:00 2026-05-26T15:06:24+00:00

I have a Form UserForm1 having two command buttons command 1 and command 2.

  • 0

I have a Form UserForm1 having two command buttons command 1 and command 2. The variable var = 1 when command1 is pressed and var=2 if command 2 is pressed. Var is a global variable in UserForm1. expDate and textRecDate are two textboxes in UserForm1

I have a class module clsMod and I am trying to do something like this

If UserForm1.var= 1 Then 
    UserForm1.expDate.Text = SelectedDate
If UserForm1.var= 2 Then 
    UserForm1.textRecDate.Text = SelectedDate

I want to extend the scope of var to the class module. Is there a way I can do that.

thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T15:06:25+00:00Added an answer on May 26, 2026 at 3:06 pm

    You don’t really want to “extend” the scope – you want to restrict the scope to the Form level and then use Public methods to access/control the form.

    eg – In UserForm1…

    Private Var As Integer
    
    Public Function GetVar() As Integer
        GetVar = Var
    End Function
    
    Public Sub SetTextRecDate(d as Date)
        textRecDate.Text = SelectedDate
    End Sub
    

    And in clsMod..

    If UserForm1.GetVar = 2 Then 
        UserForm1.SetTextRecDate(SelectedDate)
        'The line above may actually want to be...
        'UserForm1.SetTextRecDate SelectedDate
        'VBA is strange about parenthesised arguments
    Endif
    

    etc etc

    Oh and if the naming is not just for demonstration / example purposes please don’t get in the habit of calling your buttons Command1 and Command2 and your variables Var 😀 …

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have form with two buttons having same name but different values ,how to
I have form with one input for email and two submit buttons to subscribe
I have form with few buttons and I want to know what button is
I have a form for managing users, a ModelForm type. But for two fields
I have form area in my view. If I click button A , I
I have form that displays several keywords (standard set of choice lists that changes
I have form with user defined filters ( combobox with column names, combobox with
i have form action file in another directory but some file send to this
I have form with 1 button. when you click on the button 3 others
I have form where user submits field. Field can have letters, numbers, and punctuation.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.