473,397 Members | 2,056 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,397 software developers and data experts.

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 1683

"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**********@DoNotSpam.hotmail.comwrote in message
news:u$**************@TK2MSFTNGP02.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**********@DoNotSpam.hotmail.comwrote in message
news:u$**************@TK2MSFTNGP02.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**********@DoNotSpam.hotmail.comwrote in message
news:%2*****************@TK2MSFTNGP05.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**********@DoNotSpam.hotmail.comwrote in message
news:u$**************@TK2MSFTNGP02.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**********@DoNotSpam.hotmail.comwrote in message
news:ey**************@TK2MSFTNGP02.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**********@DoNotSpam.hotmail.comwrote in message
news:ey**************@TK2MSFTNGP02.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
Hi,

Finally I got that component installed.
I don't know why.
I tried to compile it and installed but got error.
Now I just tried to compile and got a conversion process to my VS 2005
version and then I can install without problem.

"Bjorn Abelli" <bj**********@DoNotSpam.hotmail.comwrote in message
news:Ov**************@TK2MSFTNGP05.phx.gbl...
>
"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


Aug 9 '06 #11

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

Similar topics

2
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
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...
3
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...
0
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...
0
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? ...
2
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...
5
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...
1
by: =?Utf-8?B?S2hhZGFqaQ==?= | last post by:
Why don't my third party components show up in the tool bar?
3
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...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
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
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
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...
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,...

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.