|
-
Oct 16th, 2002, 07:00 AM
#1
Thread Starter
New Member
CCRP in .NET
Hi All.
I tried to upgrade a VB6 project to .Net, Unfortunately It fell over with a type mismatch on one of the CCRP controls.
Am I dealling with an incompatability issue here?
Does anybody have any coments regarding CCRP (Common Controls Replacement Project) Controls?
(I have not done any investigating as yet)
-
Oct 16th, 2002, 08:34 AM
#2
.NET doesnt really support activeX. You cant expect your VB6 apps to fully upgrade to .NET.
-
Oct 16th, 2002, 08:56 AM
#3
Originally posted by Cander
.NET doesnt really support activeX. You cant expect your VB6 apps to fully upgrade to .NET.
so activex is dead? what is a usercontrol called in .NET then?
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB )
VB.NET to C# conversion tips!!
-
Oct 16th, 2002, 09:01 AM
#4
just user control.
Note; You can still use some ActiveX controls, but you cant be 100% they will work.
Also technically .NET controls still work the same as ActiveX, they do things differently behind the scenes.
Forget the term ActiveX. Dont even speak of the evil anymore.
-
Oct 16th, 2002, 09:09 AM
#5
Originally posted by Cander
just user control.
Note; You can still use some ActiveX controls, but you cant be 100% they will work.
Also technically .NET controls still work the same as ActiveX, they do things differently behind the scenes.
Forget the term ActiveX. Dont even speak of the evil anymore.
so what about COM? did that have anything to do with ActiveX (oops I used this evil term again ). So the idea/concept is the same, the functionality of usercontrols is different?
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB )
VB.NET to C# conversion tips!!
-
Oct 16th, 2002, 09:13 AM
#6
COM is also not supported but can work. In fact MS still suggests to use COM+ if there are specific needs. Otherwise a plain ole .NET dll will work great by itself.
-
Oct 16th, 2002, 10:27 AM
#7
.NET Usercontrols are just classes that inherit from the UserControl base class. Which isn't THAT different from ActiveX but they do work differently behind the scenes. If the .NET control doesn't do what you need then make a class that inherits it and extends it. What CCRP control gave you problems? Have you tested to see if the .NET version already has the new features you are looking for?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|