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 8729961
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T08:55:28+00:00 2026-06-13T08:55:28+00:00

I want create one form from another. But the Form class has no the

  • 0

I want create one form from another. But the Form class has no the Show method, which described at http://msdn.microsoft.com/en-us/library/office/gg251540.aspx

It’s code in Form_Main:

Private Sub btnTemp_Click()
    Dim frmOpt As Form_Option
    Set frmOpt = New Form_Option
    frmOpt.Show vbModal
End Sub

But I received the “Compile error: Method or data member not found”.

Where I made mistake?

Thanks

(VBA version 6.5; Access 2007)

=====
Sorry for my previous comment: right now I see that comment isn’t obvious.

I don’t have subForm on my mainForm.

I have two simple form: Form_Main and Form_Option. And I want to be the next logic:

  1. Form_Main has button “btnOption”
  2. Click on “btnOption”. The Form_Option is opening
  3. I change options on Form_Option
  4. And click the btnSave button on Form_Option, and the next idea is executing:
    Form_Main.TimerInterval = CLng(Form_Option.edtTimerInterval.Value)

At the moment I made it simple. And that is enough for me.
I write so:

Private Sub btnOptions_Click()
    '  After changing options, refresh timer interval of main form
    DoCmd.OpenForm "Options", , , , , acDialog
    Me.TimerInterval = 1000 * CLng(MOptions.loadOption("fPeriodVerifyNoticeInterval"))
End Sub

Where fPeriodVerifyNoticeInterval is parameter that stored in the options table.
And the Options Form changes the “fPeriodVerifyNoticeInterval” parameters at saving.

My problem is solved, 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-06-13T08:55:29+00:00Added an answer on June 13, 2026 at 8:55 am

    The “mistake” is that Show isn’t a valid Method for Access Forms. The link you provided is for UserForms which are forms made in VBA.

    If you want to create a new form that way what you want is something like this:

    frmOpt.Modal = true
    frmOpt.Visible = true
    

    Though what I would recommend is doing this instead:
    DoCmd.OpenForm "Option", , , , , acDialog which will open the Option form as a dialog.

    Caution: If you create your form using New even though you set it as modal it will not halt the progress of VBA code. This means that your variable will go out of scope as soon as the code finishes. If you want your form to remain open, you will need to set it as static within the sub or declare it outside the sub like this:

    static frmOpt As Form_Option
    

    or outside the sub private frmOpt = Form_Option or public frmOpt = Form_Option

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

Sidebar

Related Questions

i want to create a form that has two submit buttons, but each one
I want to create one new model class, which will be extended in all
I want to create one proc like below but it has error on syntax.
i want to create one textbox which accept city or country name and when
I want to create unit tests for one of my project's classes but I'm
I have implemented a custom designer class which inherits from DocumentDesigner. The standard Form
Is it ok from your real-world-experience to define service contract with one method which
Our customer advertises products but the product's attributes are vastly different from one another.
Basically I want to create one large object of many object in JavaScript. Something
For ease of printing, I want to create one array of pointers to the

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.