473,385 Members | 1,602 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,385 software developers and data experts.

Namespace for stdole?


I'm trying to find the namespace for stdole.dll

Is there a tool out there that will help me do this?

Dec 7 '06 #1
8 10258
Reflector : http://www.aisto.com/roeder/dotnet/

samadams_2...@yahoo.ca wrote:
I'm trying to find the namespace for stdole.dll

Is there a tool out there that will help me do this?
Dec 7 '06 #2

I've installed it and it seems to "hang" when I do a search...do you
have this problem?

I see there are various search types. How would you search for
stole.dll ?

Andrew Backer wrote:
Reflector : http://www.aisto.com/roeder/dotnet/

samadams_2...@yahoo.ca wrote:
I'm trying to find the namespace for stdole.dll

Is there a tool out there that will help me do this?
Dec 7 '06 #3
I didn't think stdole.dll was a .NET dll?

Nick.

"Andrew Backer" <aw******@gmail.comwrote in message
news:11**********************@l12g2000cwl.googlegr oups.com...
Reflector : http://www.aisto.com/roeder/dotnet/

samadams_2...@yahoo.ca wrote:
>I'm trying to find the namespace for stdole.dll

Is there a tool out there that will help me do this?

Dec 7 '06 #4

Yes. Take a look at:

http://www.dotnet2themax.com/DotNetB...dole&ns=stdole

Also, when I do an "Add Reference" on my "Visual Studio 2005" Project
and go to the .NET Tab it shows "stdole" with a path of :

C:\Program Files\Microsoft .NET\Primary Interop Assemblies\stdole.dll

Does anyone know if stdole.dll is automatically loaded with the .NET
v2.0 Framework?

How can I find this out?

Thanks
Sam

NickP wrote:
I didn't think stdole.dll was a .NET dll?

Nick.

"Andrew Backer" <aw******@gmail.comwrote in message
news:11**********************@l12g2000cwl.googlegr oups.com...
Reflector : http://www.aisto.com/roeder/dotnet/

samadams_2...@yahoo.ca wrote:
I'm trying to find the namespace for stdole.dll

Is there a tool out there that will help me do this?
Dec 7 '06 #5
"Interop Assemblies" means that stdole is native dll that visual studio
has wrapped. Perhaps you can point it at that file directly like I did
and then browse through it. It worked find, and it showd up as
"stdole" In my browser. FYI in reflector the silver square thingy is
actually the namespace.

In any case, I just added it to my project and I can access all of it
through the conveniently named "stdole" namespace.

stdole.StdFontClass fc = new stdole.StdFontClass();

Is there an actual "thing" you are trying to do that does not work?

samadams_2...@yahoo.ca wrote:
Yes. Take a look at:

http://www.dotnet2themax.com/DotNetB...dole&ns=stdole

Also, when I do an "Add Reference" on my "Visual Studio 2005" Project
and go to the .NET Tab it shows "stdole" with a path of :

C:\Program Files\Microsoft .NET\Primary Interop Assemblies\stdole.dll

Does anyone know if stdole.dll is automatically loaded with the .NET
v2.0 Framework?

How can I find this out?

Thanks
Sam

NickP wrote:
I didn't think stdole.dll was a .NET dll?

Nick.

"Andrew Backer" <aw******@gmail.comwrote in message
news:11**********************@l12g2000cwl.googlegr oups.com...
Reflector : http://www.aisto.com/roeder/dotnet/
>
samadams_2...@yahoo.ca wrote:
>I'm trying to find the namespace for stdole.dll
>>
>Is there a tool out there that will help me do this?
>
Dec 7 '06 #6

Thanks guys. No it's working fine for me. I just need to know how it
gets installed so that I know if I need to take care of it manually, or
if it is automatically installed with the .NET v2.0 Framework. Anyone
know how I can find out?

Andrew Backer wrote:
"Interop Assemblies" means that stdole is native dll that visual studio
has wrapped. Perhaps you can point it at that file directly like I did
and then browse through it. It worked find, and it showd up as
"stdole" In my browser. FYI in reflector the silver square thingy is
actually the namespace.

In any case, I just added it to my project and I can access all of it
through the conveniently named "stdole" namespace.

stdole.StdFontClass fc = new stdole.StdFontClass();

Is there an actual "thing" you are trying to do that does not work?

samadams_2...@yahoo.ca wrote:
Yes. Take a look at:

http://www.dotnet2themax.com/DotNetB...dole&ns=stdole

Also, when I do an "Add Reference" on my "Visual Studio 2005" Project
and go to the .NET Tab it shows "stdole" with a path of :

C:\Program Files\Microsoft .NET\Primary Interop Assemblies\stdole.dll

Does anyone know if stdole.dll is automatically loaded with the .NET
v2.0 Framework?

How can I find this out?

Thanks
Sam

NickP wrote:
I didn't think stdole.dll was a .NET dll?
>
Nick.
>
"Andrew Backer" <aw******@gmail.comwrote in message
news:11**********************@l12g2000cwl.googlegr oups.com...
Reflector : http://www.aisto.com/roeder/dotnet/

samadams_2...@yahoo.ca wrote:
I'm trying to find the namespace for stdole.dll
>
Is there a tool out there that will help me do this?
Dec 7 '06 #7
Hi Sam,

AFAIK you should not be using stdole.dll like this. It is not a .NET
DLL.

As Andrew said, a PIA (Primary Interop Assembly) is a .NET wrapper for a
native Win32 DLL.

As a matter of interest what are you using the DLL for? I believe you
should be using platform invoking and declaring the standard API functions
and structures.

Nick.

<sa***********@yahoo.cawrote in message
news:11*********************@j72g2000cwa.googlegro ups.com...
>
I've installed it and it seems to "hang" when I do a search...do you
have this problem?

I see there are various search types. How would you search for
stole.dll ?

Andrew Backer wrote:
>Reflector : http://www.aisto.com/roeder/dotnet/

samadams_2...@yahoo.ca wrote:
I'm trying to find the namespace for stdole.dll

Is there a tool out there that will help me do this?

Dec 7 '06 #8
stdole is a part of windows, so you don't have to worry about that
being there. The interop assembly is probably installed with .Net
because there are some parts of it that need to use it. I think.

It needs to be in the GAC, actually, IIRC. This means that if you
create an setup project ( in VS at least) that references it then it is
supposed to include that in the package and install it when the user
installs the app (if they don't already have it).

Sorry if I am completely off on this, this is just my (new)
understanding.

// Andrew
(Too many parenthesis)

Dec 7 '06 #9

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

Similar topics

1
by: Magnus | last post by:
I use IFontDisp and some other stuff from stdole in VB.NET, but sometimes Visual Studio simply refuses to compile, complaining about various stdole errors (for example, it wants me to add a...
2
by: Joe | last post by:
I was looking at the StdPictureClass to see if it could be useful but I can't seem to find any documentation on it. The image is drawn dynamically therefore I cannot use OleLoadPictureFile API....
5
by: SJ | last post by:
I have a VS2005 solution that has a class library and a website. Website has a project reference to the class library in the solution. Whenever I try to build the solution the following two lines...
1
by: Craig | last post by:
I am using the msvidctl to capture display input on my pc from a tv card. I would like to press a button to capture an image, so use the "capture" method of the msvidctl object but am unable to...
0
by: Patrick Bates | last post by:
We are trying to convert an existing VB6/ASP application to ASP.Net with VB.Net assemblies. For now, the data access is still handled by ADODB. When I deployed to our Windows 2000 test server,...
2
by: samadams_2006 | last post by:
What "imports" command (ie: Imports System.Text ) do I need to add in order to get access to stdole in vb.net ?
0
by: Velupula | last post by:
Error message "Unable to install or run the application. The application requires stdole Version 7.0.3300.0 in the GAC" Resolution: I had the same problem with a click once deployment. I...
1
by: =?Utf-8?B?WWFlbA==?= | last post by:
Hi, I have problem is with return stdole.IPictureDisp in this method if the computer don't have vs.net installed. I created a com add-in for outlook 2003 in vs.net 2003 c#. if I calling...
0
by: =?Utf-8?B?WWFlbA==?= | last post by:
I created a com add-in for outlook 2003 in vs.net 2003 c#. My problem is with return type stdole.IPictureDisp. if I calling stdole.IPictureDisp Pic =...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 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 former...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
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
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

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.