473,790 Members | 3,185 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Click-Once Deployment of DLLs

I have a class library that was created in VB.net 2003 and registered as COM
object so that Visual Foxpro 7 can access the library. At this time we have
to use an MSI installer package to install on every workstation the code
resides. Is it possible to deploy this dll with click-once and have it check
for updates at this time all I see is the ability to deploy .net EXEs with
click once. Any help or examples or ideas would be greatly appreciated.

Thanks,
Curtis
Apr 25 '06 #1
2 1445
Because you are strong signing the DLL (I'm assuming) and typing it with
guids in order to expose it to COM, and because you're consuming the DLL
with COM, you'd really be better off thinking of this the way you would have
an old VB6 DLL - if you keep the signature of the DLL exactly the same, you
might be able to replace the DLL without unregistering and reregistering it
with regasm (though you'll have to close any COM applications accessing the
thing to break the file lock) - in order to avoid DLL hell you're probably
going to want to do the file management via MSI
installations/uninstallations , rather than xcopying....

"Curtis" <cs*****@hotmai l.com> wrote in message
news:OY******** ******@TK2MSFTN GP05.phx.gbl...
I have a class library that was created in VB.net 2003 and registered as
COM object so that Visual Foxpro 7 can access the library. At this time we
have to use an MSI installer package to install on every workstation the
code resides. Is it possible to deploy this dll with click-once and have it
check for updates at this time all I see is the ability to deploy .net EXEs
with click once. Any help or examples or ideas would be greatly
appreciated.

Thanks,
Curtis

Apr 25 '06 #2
Thanks for the Help Richard
"Richard K Bethell" <so*****@spammi ngisevil.bad> wrote in message
news:Oe******** ******@TK2MSFTN GP04.phx.gbl...
Because you are strong signing the DLL (I'm assuming) and typing it with
guids in order to expose it to COM, and because you're consuming the DLL
with COM, you'd really be better off thinking of this the way you would
have an old VB6 DLL - if you keep the signature of the DLL exactly the
same, you might be able to replace the DLL without unregistering and
reregistering it with regasm (though you'll have to close any COM
applications accessing the thing to break the file lock) - in order to
avoid DLL hell you're probably going to want to do the file management via
MSI installations/uninstallations , rather than xcopying....

"Curtis" <cs*****@hotmai l.com> wrote in message
news:OY******** ******@TK2MSFTN GP05.phx.gbl...
I have a class library that was created in VB.net 2003 and registered as
COM object so that Visual Foxpro 7 can access the library. At this time we
have to use an MSI installer package to install on every workstation the
code resides. Is it possible to deploy this dll with click-once and have
it check for updates at this time all I see is the ability to deploy .net
EXEs with click once. Any help or examples or ideas would be greatly
appreciated .

Thanks,
Curtis


May 1 '06 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
17257
by: Csaba2000 | last post by:
I want to be able to programatically click on the center of an <INPUT type=image ...> element (I only care about IE 5.5+). This should work regardless of whether IE has focus. Normally you would do myDomElement.click and the mouse doesn't matter, but in the case of an input image element, what happens is the submitted url has something like "?x=12&y=7" appended to it (the numbers vary per mouse position on the clicked element). If you hit...
1
4218
by: zoltix | last post by:
Hi, I am beginner in JavaScript. I would like to intercept all click events on my document. I use this function for that document.onmousedown=click;. It works well. But I would like to continue the execution code on a other button or anything else. Example 1) Click anywhere intercept click->Execute the code in function click().
7
15511
by: Paul Cooper | last post by:
Dear All, I am working on a piece of Javascript code that needs to detect a mouse-click, shift-click and control-click. The code is not my own - it is a part of a much larger suite of routines. The code as it stands does not work in Firefox, and I suspect that the task of feature detection (which currently depends on browser detection) can be carried out better. The result should be that opcode is set to 0,1 or 2 dor click,...
11
535
by: Thom Little | last post by:
I would like three states on an icon ... Left Click Right Click Double Click Left Click is fired at least once on a Double Click Is there a good example that shows how to determine if the user entered a Left Click or a Double Click?
5
6176
by: J McD | last post by:
Hi I have a DataGrid with an ImageButton column. When I click on an imagebutton I get a postback but it doesn't run the OnImgBtnClick method. I can actually comment out the line where I add this Click event to the ImageButton Column and it makes no difference, I still get a postback. This is driving me crazy...something seems to be causing an OnClick postback and it isn't my Click event I've included the code below....any help will be...
41
4331
by: JohnR | last post by:
In it's simplest form, assume that I have created a usercontrol, WSToolBarButton that contains a button. I would like to eventually create copies of WSToolBarButton dynamically at run time based on some initialization information obtained elsewhere. Basically, I'm going to create my own dynamic toolbar where the toolbarbuttons can change. I'm not using the VB toolbar because of limitations in changing things like backcolor (I can't get...
15
369
by: cj | last post by:
I would like to have menu items a main menu bar that represent the days of the week. When you click on them they alternate from checked to unchecked. Right now I have 7 subs that look like this one: Private Sub MonMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MonMenuItem.Click If SunMenuItem.Checked Then SunMenuItem.Checked = False Else SunMenuItem.Checked = True
3
12307
by: | last post by:
I have a control that need to perform one behavior when it's Clicked and a different behavior when it's DoubleClicked. It seems that you can't get a DoubleClick without first getting a Click. So what's the best way to keep from executing the click functionality before it's determined if it's a double click or not? Or do I just have to "undo" the Click stuff everytime a DoubleClick is received? Thanks. J
5
3808
by: Xu, Qian | last post by:
Hello All, I have some problem by simulating a link click using javascript. The webpage uses a js-library named interface (jQuery like) ------------------------------ <a id="foo" href="#">Try try try</a> $('#foo').click(function(){ $('ul',this.parentNode).BlindToggleVertically(500); this.blur(); return false;
0
9666
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
1
10147
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9987
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9023
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7531
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5424
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5552
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4100
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3709
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.