Results 1 to 5 of 5

Thread: Will it still work???

  1. #1

    Thread Starter
    Lively Member Radar's Avatar
    Join Date
    Apr 2001
    Posts
    70

    Will it still work???

    Will my ActiveX controls & DLLs that I write in VB6 still work OK in .NET after they are compiled? Can a developer who gets one of my components now still use it later in .NET? Anyone know??
    Aww screw it. I didn't really want to fool with it anymore anyhow.

  2. #2
    Evil Genius alex_read's Avatar
    Join Date
    May 2000
    Location
    Espoo, Finland
    Posts
    5,538
    Nope, they'll have to be upgraded - I've just tried inserting a standard MS one & it's not allowing me to insert it onto the form.

    Please rate this post if it was useful for you!
    Please try to search before creating a new post,
    Please format code using [ code ][ /code ], and
    Post sample code, error details & problem details

  3. #3
    Addicted Member substring's Avatar
    Join Date
    Feb 2001
    Posts
    148
    From what I heard in the .NET meeting, the .NET framework does not use DLL anymore. They are doing away the registry crap, which is a big plus.
    substring.

    VB6, C++, SQL, HTML, XML, ASP

  4. #4
    Hyperactive Member Paul Warren's Avatar
    Join Date
    Jun 2000
    Location
    UK
    Posts
    282
    I was on a .NET course this week and the gist of it is :

    we'll no longer using COM objects ( ActiveX stuff )

    .NET uses libraries called assemblies which are like COM objects except that they carry all the information that was in the registry around with them. You can just drag and drop them into directories and they work, no need to register them. Other differences are that they are not in binary, they're in something called Intermediate Language ( IL ). It's a big subject but you should still be able to use you're COM abojects because .NET will put a wrapper around them so they can communicate. When you want to add a component/reference select the COM tab and choose it from there, don't just browse and select it.

    Like I said it's a huge subject but if you've got any more questions just post them here.
    That's Mr Mullet to you, you mulletless wonder.

  5. #5
    Member
    Join Date
    Jul 2002
    Posts
    39

    Exclamation

    i have only found one problem so far with it wrapping the coms, the microsoft messenger ones worked except for the events, if u tried to access the events it crashed, i had to make a vb6 dll to access it then wrap the vb6 to .net to use it, but it works

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