473,473 Members | 1,812 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

'include' an ocx (and dll?)

Hi,

I have an application that uses a custom ocx. Because I need to deploy this
ocx with XCOPY and not with a setup, I need a way to get around this setup.

What I was thinking about was this: Is there a way to kind of 'include' an
ocx into an appliation, so I don't need to register it anymore on the
client-pc. I kind of wanne put the ocx into the exe-file.

And is this only necessary for ocx-files, or also for some dll's? Because it
seems that in .NET this behaviour is kind of standard for dll's?

Thanks a lot,

Pieter
Nov 20 '05 #1
5 1080
OHM
You can add OCX's to your setup and click on the propeties for this item and
then choose to register it.

Regards - OHM
"DraguVaso" <pi**********@hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
Hi,

I have an application that uses a custom ocx. Because I need to deploy this ocx with XCOPY and not with a setup, I need a way to get around this setup.
What I was thinking about was this: Is there a way to kind of 'include' an
ocx into an appliation, so I don't need to register it anymore on the
client-pc. I kind of wanne put the ocx into the exe-file.

And is this only necessary for ocx-files, or also for some dll's? Because it seems that in .NET this behaviour is kind of standard for dll's?

Thanks a lot,

Pieter

Nov 20 '05 #2
Yes I know, but like I said it should be without a setup... :-/

"OHM" <Me@NoWhere.Com> wrote in message
news:un**************@tk2msftngp13.phx.gbl...
You can add OCX's to your setup and click on the propeties for this item and then choose to register it.

Regards - OHM
"DraguVaso" <pi**********@hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
Hi,

I have an application that uses a custom ocx. Because I need to deploy this
ocx with XCOPY and not with a setup, I need a way to get around this

setup.

What I was thinking about was this: Is there a way to kind of 'include' an ocx into an appliation, so I don't need to register it anymore on the
client-pc. I kind of wanne put the ocx into the exe-file.

And is this only necessary for ocx-files, or also for some dll's?

Because it
seems that in .NET this behaviour is kind of standard for dll's?

Thanks a lot,

Pieter


Nov 20 '05 #3
* "DraguVaso" <pi**********@hotmail.com> scripsit:
Yes I know, but like I said it should be without a setup... :-/


You will have to run "REGASM.EXE" (see documentation).

--
Herfried K. Wagner [MVP]
<URL:http://dotnet.mvps.org/>
Nov 20 '05 #4
OHM
Sorry I misread you
"DraguVaso" <pi**********@hotmail.com> wrote in message
news:%2***************@TK2MSFTNGP11.phx.gbl...
Yes I know, but like I said it should be without a setup... :-/

"OHM" <Me@NoWhere.Com> wrote in message
news:un**************@tk2msftngp13.phx.gbl...
You can add OCX's to your setup and click on the propeties for this item and
then choose to register it.

Regards - OHM
"DraguVaso" <pi**********@hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
Hi,

I have an application that uses a custom ocx. Because I need to deploy

this
ocx with XCOPY and not with a setup, I need a way to get around this

setup.

What I was thinking about was this: Is there a way to kind of
'include' an ocx into an appliation, so I don't need to register it anymore on the
client-pc. I kind of wanne put the ocx into the exe-file.

And is this only necessary for ocx-files, or also for some dll's?

Because
it
seems that in .NET this behaviour is kind of standard for dll's?

Thanks a lot,

Pieter



Nov 20 '05 #5
hehe no problem :-)

"OHM" <Me@NoWhere.Com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
Sorry I misread you
"DraguVaso" <pi**********@hotmail.com> wrote in message
news:%2***************@TK2MSFTNGP11.phx.gbl...
Yes I know, but like I said it should be without a setup... :-/

"OHM" <Me@NoWhere.Com> wrote in message
news:un**************@tk2msftngp13.phx.gbl...
You can add OCX's to your setup and click on the propeties for this item
and
then choose to register it.

Regards - OHM
"DraguVaso" <pi**********@hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
> Hi,
>
> I have an application that uses a custom ocx. Because I need to

deploy this
> ocx with XCOPY and not with a setup, I need a way to get around this
setup.
>
> What I was thinking about was this: Is there a way to kind of

'include'
an
> ocx into an appliation, so I don't need to register it anymore on the > client-pc. I kind of wanne put the ocx into the exe-file.
>
> And is this only necessary for ocx-files, or also for some dll's?

Because
it
> seems that in .NET this behaviour is kind of standard for dll's?
>
> Thanks a lot,
>
> Pieter
>
>



Nov 20 '05 #6

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

Similar topics

4
by: RotterdamStudents | last post by:
How can I include another php file into a php file. In HTML you use <?php include test.php?>. But I want to include test.php somewhere in my php script. How can I make that work ?? --...
8
by: Christopher Brandsdal | last post by:
If I want to include a file to my webpage that is not placed in the same folder asd the application, but in another folder on the same disk... I found out that this is not going to work:...
14
by: yuri | last post by:
Hello, I wrote this simple stack: ---START--------------- #include "stackArr.h" #include "underflow.h" #include <iostream> StackArr::StackArr(int initialSize){
2
by: Vittal | last post by:
Hello All, I am trying to compile my application on Red Hat Linux 8 against gcc 3.2.2. Very first file in application is failing to compile. I tried compiling my application on Linux 7.2...
9
by: zolli | last post by:
Hi, I've been banging my head against this for a while now. Hoping someone here can shed some light on what's going on. On including stdlib.h in a file, I'm seeing the following errors: ...
1
by: Zbigniew | last post by:
Hi, Compiler: GCC 3.3.5 OS: SuSE Linux (Kernel: 2.6.11) I reorganized my source code and now almost all my header files went to "Include" folder. Now when compiling with -I option I have...
5
by: Dragilla | last post by:
Hi, I have a problem.... I can show you what this is about in an example: There are 4 files: a.c: #include "a.h" int main() { B* b = new B();
7
by: Giancarlo Bassi | last post by:
Please, what are here the 11 include files (found over the internet)? */mozzarella.c /* #include #include #include #include #include #include
19
by: Earl Partridge | last post by:
FP 2000 I have a single Include file that I want to use on multiple sites. I'm trying to use the following (or some variation) but can't make it work. <!--#INCLUDE...
2
by: zqiang320 | last post by:
Hello: when I execute $ make Making all in libsbml/src make: Entering directory `/home/internet/mydoc/test_pj/libsbml/src' ......... -I. -Isundials/include -Ilibsbml/include -g -O2 -MT...
0
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,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
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,...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
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...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
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 ...

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.