vote up 0 vote down star

Hi guys, I'm trying to create another dll with just forms and some shell method to call an external exe while allowing my main form to run unpertubed sort of something like a pseudo multithreading. And all of these wholesome goodness are in old vb6 legacy app.

So i'm trying to decide if i should use .net to write the dll or vb6 to write the dll in. Does it matter, and what's the minimum/ticks or whatever i should know before i take the plunge?

Thanks

flag

2 Answers

vote up 2 vote down check

IF you want an independent form then a ActiveX EXE should be sufficient. A independent form is a form that can be displayed and the calling application is continues to run. The two don't stop each other. A .NET DLL is overkill in this case.

If you need something that involves traditional multi-tasking, like taking a chunk of data and processing it, then a .NET DLL may be a better solution as the multi-tasking is more straight forward than the EXE->Active EXE solution of VB6.

Based on your other question I feel that creating a global multi-use class that exposes methods and parameters to call up the forms you need in a ActiveX EXE referenced by your EXE will be the way to go.

More specifics would help me craft a better answer.

@EDIT AFTER COMMENT

Then transferring the forms and objects over the ActiveX EXE would be the right way to go. Then you can reference the ActiveX EXE from the original EXE.

The only gotcha is whether what you are copying is truly standalone. The good news is that by staying in VB6 you will catch any issues immediately rather than wondering if it is an artifact of the conversion process. Later on you can focus on a conversion to .NET if that is your long term goal.

link|flag
@RS for now it's strictly main exe/form is an editor-button calls another form-which shell an exe, & two of these running alongside the main exe/form. So far no multitasking needed on those child forms yet. What other specifics would you need? thanks! – melaos Feb 26 at 15:49
vote up 0 vote down

I think this is related to your other question? In which case you don't really need a DLL - I think you've misunderstood RS Conley's answer. Hope this helps, Mark

link|flag
MarkJ, i thought the idea was to move the other stuff to a DLL so that i no longer need to change my app to a activex exe? thanks. – melaos Feb 26 at 9:12
Since I wrote that & you replied, RS Conley has put up an answer to this question - have a look at that – MarkJ Feb 26 at 17:21

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.