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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T00:50:47+00:00 2026-06-06T00:50:47+00:00

I recently have convert my project from VB6 to VB.NET2008, after the convert here

  • 0

I recently have convert my project from VB6 to VB.NET2008,
after the convert here is a sub that control form from a module that i create,
the error was something like

“cmdAdd is not a member of System.Windows.Forms.Form”

Public Sub ButtonSet(ByRef frmObj As System.Windows.Forms.Form)
    frmObj.cmdAdd.Visible = True
    frmObj.cmdCopy.Visible = True
    frmObj.cmdEdit.Visible = True
    frmObj.cmdCorrection.Visible = True
End Sub

how its call:

Private Sub frmAPNote_Load(ByVal eventSender As System.Object, ByVal eventArgs As System.EventArgs) Handles MyBase.Load
ButtonSet(Me)
End Sub
  • 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-06T00:50:49+00:00Added an answer on June 6, 2026 at 12:50 am

    Change the parameter type to YourFormName.

    Public Sub ButtonSet(ByRef frmObj As frmAPNote)
        frmObj.cmdAdd.Visible = True
        frmObj.cmdCopy.Visible = True
        frmObj.cmdEdit.Visible = True
        frmObj.cmdCorrection.Visible = True
    End Sub
    

    PS: No need to specify ByRef parameter type for objects.

    The problem is the sub in the module not only just called by “frmAPNote” but also other form such as “frmARNote” and “frmRTNote”

    You may get the reference of a specific control from Form.Controls collection.

    Public Sub ButtonSet(ByVal frmObj As Form)
        Dim btnAdd = frmObj.Controls("btnAdd")
    
        If Not IsNothing(btnAdd) Then
            btnAdd.Visible = False
        End If
    
        ....
    End Sub
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a VB6 program that someone recently helped me convert to VB.NET In
Recently, I have to convert an java project related to rsa/des encryption into an
recently i want to convert some codes from opencv to c#. But I have
I recently have a problem that my java code works perfectly ok on my
Recently I have asked a question about what I should use to create self-contained
Recently I have started learning rails and was a little surprised that the default
I have recently started using PlayN for a hobby project and has now stumbled
I have a web app that uses a flash uploader (swfuploader) and recently a
I recently moved to a project where I noticed there have a specific requirement
I have recently joined a small development team that is considering a new version

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.