dll deployment issue

D

DaveS

I hope this is the right newsgroup for this question!!

I have created a VB Class Library in VS2005. This dll will be called
from a VB6 program. Everything works fine on my machine.

Now I need to send the clients the latest version of the VB6 program.
This means that I now need to deploy this dll on client's machines and
have it installed in the System32 directory. Some clients have Framework
2.0, others don't. What is the best way (if there is one!) to
create a Setup and Deployment program to install and register the dll on
the clients machines?

I have looked at both "Setup Project" and "Merge Module Project". My
main concern is that regsvr32 can't be used to register the dll; regasm
must be used and I can't expect my users to know how to do that.

Any help would be greatly appreciated!


TIA,

DaveS
 
H

HankC

I have VBS code that queries our exchange servers for message
throughput data..

I am upgarding from vb script to vb.net but my mind is not making the
context shift ;)

The key lines in vbs follow; can someone point the way in vb.net?

Thanks,
HankC

vbscript code ++++++++++++++++++++++++++++++++++++++++++++++++

Set objWMIService = GetObject("winmgmts:\\" & strComputer )

Set colItems = objWMIService.ExecQuery("Select * from
Win32_PerfRawData_SMTPSVC_SMTPServer",,48)

For Each objItem in colItems
'process data
next

+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top