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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T08:59:04+00:00 2026-06-11T08:59:04+00:00

I open a form and initialize a function in that form. A progress bar

  • 0

I open a form and initialize a function in that form. A progress bar is running. Then i hide the form with the same function. Now I need to show the window from another project with the same progress bar values. Is it possible to call the same form with out new keyword?

Note: My function which is used to hide the form is in VB.NET and function which is going to show the form is in C#.net

Here my code VB.NET (function going to hide the window)

Private Sub btnSend_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSend.Click

Dim objUpload As New UploadingList
objUpload.Show()
objUpload.Hide()
objUpload.UploadFiles()

End Sub

This uploadfiles() function initialize the progress bar and uploading the files.
so if i need to show the window from C# project, how can i do? if i create a new project, the progressbar values also get to default. Any solutions to this problem?

private void btnFiles_Click(object sender, EventArgs e)
        {
            ICloudProvider.UploadingList objUpload = new ICloudProvider.UploadingList();
            objUpload.Show();
        }

If i follow the above function in C# all the control get to its default value. So there is no progress in progress bar.

  • 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-11T08:59:06+00:00Added an answer on June 11, 2026 at 8:59 am

    Create a public shared variable on the form to store a reference to the instance created in the VB program.

    The form would have the following line:

    Public Shared Instance as UploadingList
    

    When you create the form, you need to set this variable:

    Dim objUpload As New UploadingList
    UploadingList.Instance = objUpload
    objUpload.Show()
    objUpload.Hide()
    objUpload.UploadFiles()
    

    Now from your C# program, instead of creating a new instance of the form, you would simply use the existing one:

    private void btnFiles_Click(object sender, EventArgs e)
    {
      ICloudProvider.UploadingList objUpload = ICloudProvider.UploadingList.Instance;
      if(objUpload!=null)
      {
        objUpload.Show();
      }
    }
    

    Remember to set the Instance variable to null (nothing in VB) when the form is closed.

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

Sidebar

Related Questions

Where i need initialize parameter, for when form will open, to make it work?
I have a form that can open a sub form (with ShowDialog ). I
I am using this function to close existing form and open a new form.
On pdf downlaod link need to open a jQuery dialog and have a form
I open a form as a modal dialog using ShowDialog. This dialog in turn
I want: To be able to open a form, select an item from a
What I would like to do is display the following in a form: Open
I'm searching for an open source runtime form designer (for SCADA, not searching for
Hi i have managed to open .xls files form mail app by adding document
I am using main form and child forms. If I open 2nd child form

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.