CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Jun 2001
    Location
    USA
    Posts
    298

    Progressbar change from VB6 to .NET

    I'm upgrading a VB6 project with VS 2005 and one of the forms uses a progress bar control. In the components list there is a line -

    Public WithEvents ProgressBar1 As AxComctlLib.AxProgressBar

    ... and VB.NET says type AxComctlLib.AxProgressBar is not defined. Is there an equivalent control in VB.NET?

    Thanks

  2. #2
    Join Date
    Jul 2008
    Location
    WV
    Posts
    5,362

    Re: Progressbar change from VB6 to .NET

    Yes there is a progress bar control in VB.Net, it is in the toolbox with all the other controls.

    You should replace and recode any controls that come up with that ax prefix if at all possible.
    Always use [code][/code] tags when posting code.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured