473,800 Members | 2,413 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Third party components

I found a thirtparty component but have no idea how to integrate into VS
2005 IDE?
The files come with project file and solution files.
Jul 24 '06 #1
10 1711

"Alan T" wrote...
I found a thirtparty component but have no idea how to
integrate into VS 2005 IDE?
The files come with project file and solution files.
I'm only guessing here, but I'll assume that you're talking about
GUI-widgets, such as enhanced Comboboxes, Treeviews, and that sort of
things.

What you then need is the compiled dll-file, or the source code files.

If you have the dll, right click on the Toolbox and choose "Choose Items".
There you can browse for the dll-file and add it to the toolbox (though I
would recommend to create a separate tab for "imported" components.

The project file and solution files are really of no use for you, unless you
have the source code files as well. Then you should be able to compile it
into a dll yourself, and proceed as above.

If you have neither the compiled dll-file, nor the source code files, you
can't do anything...

/// Bjorn A
Jul 24 '06 #2
What I got is the timepicker component.
I tried what you said but the error gave me was cannot find .tlb file.

"Bjorn Abelli" <bj**********@D oNotSpam.hotmai l.comwrote in message
news:u$******** ******@TK2MSFTN GP02.phx.gbl...
>
"Alan T" wrote...
>I found a thirtparty component but have no idea how to
integrate into VS 2005 IDE?
The files come with project file and solution files.

I'm only guessing here, but I'll assume that you're talking about
GUI-widgets, such as enhanced Comboboxes, Treeviews, and that sort of
things.

What you then need is the compiled dll-file, or the source code files.

If you have the dll, right click on the Toolbox and choose "Choose Items".
There you can browse for the dll-file and add it to the toolbox (though I
would recommend to create a separate tab for "imported" components.

The project file and solution files are really of no use for you, unless
you have the source code files as well. Then you should be able to compile
it into a dll yourself, and proceed as above.

If you have neither the compiled dll-file, nor the source code files, you
can't do anything...

/// Bjorn A


Jul 25 '06 #3

"Alan T" wrote...
What I got is the timepicker component.
I tried what you said but the error gave me was cannot find .tlb file.
Then it sounds like the third party component you got *isn't* a .NET
component at all, but a COM component...

That's a bit trickier, and I would personally avoid it, as it would break a
"pure .NET" approach, using unmanaged features.

You would probably need to register the component with regsvr32, and in
extreme cases you would also need to import the Type Library (tlb-file).

If I were you, I would look for a pure .NET alternative instead. If that's
not an option, I'd look into "COM interop", "Type Library importer", etc.

/// Bjorn A

"Bjorn Abelli" <bj**********@D oNotSpam.hotmai l.comwrote in message
news:u$******** ******@TK2MSFTN GP02.phx.gbl...
>>
"Alan T" wrote...
>>I found a thirtparty component but have no idea how to
integrate into VS 2005 IDE?
The files come with project file and solution files.

I'm only guessing here, but I'll assume that you're talking about
GUI-widgets, such as enhanced Comboboxes, Treeviews, and that sort of
things.

What you then need is the compiled dll-file, or the source code files.

If you have the dll, right click on the Toolbox and choose "Choose
Items". There you can browse for the dll-file and add it to the toolbox
(though I would recommend to create a separate tab for "imported"
components.

The project file and solution files are really of no use for you, unless
you have the source code files as well. Then you should be able to
compile it into a dll yourself, and proceed as above.

If you have neither the compiled dll-file, nor the source code files, you
can't do anything...

/// Bjorn A



Jul 25 '06 #4
What do you suggest if I am looking for a timepicker component ?
Because the datetimepicker in VS2005 does not have "really" timepicker
ability.

"Bjorn Abelli" <bj**********@D oNotSpam.hotmai l.comwrote in message
news:%2******** *********@TK2MS FTNGP05.phx.gbl ...
>
"Alan T" wrote...
>What I got is the timepicker component.
I tried what you said but the error gave me was cannot find .tlb file.

Then it sounds like the third party component you got *isn't* a .NET
component at all, but a COM component...

That's a bit trickier, and I would personally avoid it, as it would break
a "pure .NET" approach, using unmanaged features.

You would probably need to register the component with regsvr32, and in
extreme cases you would also need to import the Type Library (tlb-file).

If I were you, I would look for a pure .NET alternative instead. If that's
not an option, I'd look into "COM interop", "Type Library importer", etc.

/// Bjorn A

>"Bjorn Abelli" <bj**********@D oNotSpam.hotmai l.comwrote in message
news:u$******* *******@TK2MSFT NGP02.phx.gbl.. .
>>>
"Alan T" wrote...

I found a thirtparty component but have no idea how to
integrate into VS 2005 IDE?
The files come with project file and solution files.

I'm only guessing here, but I'll assume that you're talking about
GUI-widgets, such as enhanced Comboboxes, Treeviews, and that sort of
things.

What you then need is the compiled dll-file, or the source code files.

If you have the dll, right click on the Toolbox and choose "Choose
Items". There you can browse for the dll-file and add it to the toolbox
(though I would recommend to create a separate tab for "imported"
components.

The project file and solution files are really of no use for you, unless
you have the source code files as well. Then you should be able to
compile it into a dll yourself, and proceed as above.

If you have neither the compiled dll-file, nor the source code files,
you can't do anything...

/// Bjorn A




Jul 26 '06 #5

"Alan T" wrote...
What do you suggest if I am looking for a timepicker component ?
Because the datetimepicker in VS2005 does not have "really"
timepicker ability.
I don't know your preferences for defining "real" timepicker abilities, so
it's a bit hard to know exactly what you're looking for, but with a quick
Google I found this, which I guess is something in line with your
preferences:

http://www.codeproject.com/cs/miscctrl/cstimepicker.asp

Otherwise, there is always the possibility to make your extended version of
the "ordinary" DateTimePicker class, as it's not sealed.

/// Bjorn A
Jul 26 '06 #6
As the standard datetimepicker in VS2005 does not allow you to set the time.
although I can set the format to time.
But when you click the down arrow it shows up the calender but not the
time/clock.

"Bjorn Abelli" <bj**********@D oNotSpam.hotmai l.comwrote in message
news:ey******** ******@TK2MSFTN GP02.phx.gbl...
>
"Alan T" wrote...
>What do you suggest if I am looking for a timepicker component ?
Because the datetimepicker in VS2005 does not have "really"
timepicker ability.

I don't know your preferences for defining "real" timepicker abilities, so
it's a bit hard to know exactly what you're looking for, but with a quick
Google I found this, which I guess is something in line with your
preferences:

http://www.codeproject.com/cs/miscctrl/cstimepicker.asp

Otherwise, there is always the possibility to make your extended version
of the "ordinary" DateTimePicker class, as it's not sealed.

/// Bjorn A

Jul 27 '06 #7
Yes, I downloaded the component you suggested but the problem is I cannot
install into VS IDE.
I compiled the project to get the dll and tried to install into toolbox but
got tlb not found error.

"Bjorn Abelli" <bj**********@D oNotSpam.hotmai l.comwrote in message
news:ey******** ******@TK2MSFTN GP02.phx.gbl...
>
"Alan T" wrote...
>What do you suggest if I am looking for a timepicker component ?
Because the datetimepicker in VS2005 does not have "really"
timepicker ability.

I don't know your preferences for defining "real" timepicker abilities, so
it's a bit hard to know exactly what you're looking for, but with a quick
Google I found this, which I guess is something in line with your
preferences:

http://www.codeproject.com/cs/miscctrl/cstimepicker.asp

Otherwise, there is always the possibility to make your extended version
of the "ordinary" DateTimePicker class, as it's not sealed.

/// Bjorn A

Jul 27 '06 #8

"Alan T" wrote...
Yes, I downloaded the component you suggested but the problem
is I cannot install into VS IDE.
I compiled the project to get the dll and tried to install
into toolbox but got tlb not found error.
That's odd.

Just to see the error for myself, I downloaded and compiled it.

Then I proceeded exactly as I wrote you before, and...

There it was, in the toolbox, without any errors, possible to drag and drop
to a form. It seems like there's something else going on in your machine
than in mine.

Could you provide a more *exact* description of your error, the exact words
in the error message, when it occurs during the process, etc?

/// Bjorn A
Jul 28 '06 #9

"Alan T" wrote...
As the standard datetimepicker in VS2005 does not
allow you to set the time.
although I can set the format to time.
But when you click the down arrow it shows up the
calender but not the time/clock.
You can change the property ShowUpDown to True. Then each field in the
DateTimePicker will be changeable via the UpDown arrow.
/// Bjorn A
Jul 28 '06 #10

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

Similar topics

2
391
by: Manoj Paramu Das | last post by:
Hi, Is there a way to save a page/some data(read variables) as a .pdf files without using 3rd party components? Any Sample code would be really helpful. Thanks in Advance. Regards Manoj Das
0
1197
by: Stephen | last post by:
Hi I am having trouble with a third party component that I am attempting to use on our web application (Xceed Graph Component). When I develop locally it all works fine, but as soon as I try to deploy it to our web hosts server it has a security problem. I contacted our web host and they sent me their machine.config and web_minimaltrust.config files so I could debug using their settings. But whilst I can now replicate the problem on...
3
2136
by: John Dann | last post by:
I'd like to talk to a (serial port linked) external instrument from within a .Net project. The makers supply a Win32 compatible DLL (written in C and not an ActiveX DLL I think) that handles the low level communication to and from the instrument. So by using the available DLL, hopefully I can achieve what I need to. Trouble is that I'm not familiar with working with third party DLLs from within .Net. But I have documentation summarising...
0
874
by: Lucas Tam | last post by:
Hi all, I'm using the Outlook Bar from Component One (from the VS Basic Resource Kit). Is it possble to deploy a winforms application that is hosted in IE with third party components? When I deploy my app with the outlook bar in IE, it refuses to load.
0
791
by: Graham Smith | last post by:
Hi, I'd like to write a little bidirectional connector, which should sync data between two systems. Are there any components which I can use for this purpose, without reinvening the wheel? Thanks for any advice Graham Smith
2
1405
by: Deano | last post by:
Can anyone provide any links to companies supplying quality components for C Sharp? I'm looking in particular to see if there's anything out resembling MS Access subforms and just generally to see what is available that I could plug into my C sharp apps. cheers Martin BTW should I refer to C# for C Sharp? Or does it not matter?
5
16036
by: Eric Layman | last post by:
Hi, I noticed that PHP have the ability to create PDF files without using any third partty componentys. Most notably is via FPDF. It generates PDF by using "pdf markups" / or ghostscripts I believe the same can be done via ASP too. One has to use response.write pdf headers. Has anyone succeeded in doing that?
1
1165
by: =?Utf-8?B?S2hhZGFqaQ==?= | last post by:
Why don't my third party components show up in the tool bar?
3
1469
by: Michael Justin | last post by:
Dear all Are there any popular newsgroups or some other places on the web where third party products for .NET developers (libraries, components, build and test tools,...), open source and commercial, are being discussed / supported and announced? Best Regards -- Michael Justin
0
10505
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10035
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
9090
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...
0
6813
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 then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5471
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
5606
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4149
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
3764
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2945
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.