Guest cgchris99 Posted September 10, 2002 Posted September 10, 2002 I am fairly new to vb.net. I have the source code to a vb6 ocx that I want to re-create in vb.net. I think I can make it faster because of the new networkstreams. How do I create a new control or activeX in vb.net? This control is not for web based app so asp will not help me I don't think Thanks for any advice Quote
*Gurus* Derek Stone Posted September 10, 2002 *Gurus* Posted September 10, 2002 If you have Visual Studio .NET Professional Edition or higher all you need to do is create a new UserControl project. If you're poor like the rest of us here's the basic code to create a UserControl in Notepad: Namespace myLibrary Public Class myControl Inherits System.Windows.Forms.UserControl End Class 'myControl End Namespace 'myLibrary Quote Posting Guidelines
*Gurus* divil Posted September 10, 2002 *Gurus* Posted September 10, 2002 Whoa, I didn't know standard edition was limited that way. What project types are available in it? Quote MVP, Visual Developer - .NET Now you see why evil will always triumph - because good is dumb. My free .NET Windows Forms Controls and Articles
*Gurus* Derek Stone Posted September 10, 2002 *Gurus* Posted September 10, 2002 Windows Application Console Application ASP.NET Web Application ASP.NET Web Service In other words... nothing. Quote Posting Guidelines
Guest cgchris99 Posted September 11, 2002 Posted September 11, 2002 Is there a way to add the Windows Control Library project Template to VB.net standard? Thanks Quote
*Gurus* Derek Stone Posted September 11, 2002 *Gurus* Posted September 11, 2002 Yes, there is. Rather easily too I might add. Quote Posting Guidelines
Guest cgchris99 Posted September 12, 2002 Posted September 12, 2002 Can you give me some details on how to do this? Thanks for your help Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.