473,659 Members | 2,666 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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 10289
Reflector : http://www.aisto.com/roeder/dotnet/

samadams_2...@y ahoo.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...@y ahoo.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.goo glegroups.com.. .
Reflector : http://www.aisto.com/roeder/dotnet/

samadams_2...@y ahoo.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\stdo le.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.goo glegroups.com.. .
Reflector : http://www.aisto.com/roeder/dotnet/

samadams_2...@y ahoo.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.StdFontC lass fc = new stdole.StdFontC lass();

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

samadams_2...@y ahoo.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\stdo le.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.goo glegroups.com.. .
Reflector : http://www.aisto.com/roeder/dotnet/
>
samadams_2...@y ahoo.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.StdFontC lass fc = new stdole.StdFontC lass();

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

samadams_2...@y ahoo.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\stdo le.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.goo glegroups.com.. .
Reflector : http://www.aisto.com/roeder/dotnet/

samadams_2...@y ahoo.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******** *************@j 72g2000cwa.goog legroups.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
1901
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 reference to stdole even though I already have a reference to stdole). At this point, restarting Visual Studio can sometimes help, but sometimes not even that helps and than you have to restart the computer. Removing and reinserting the reference to...
2
6831
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. Thanks, Joe
5
17624
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 get added in web.config as part of the compilation process. These lines get added right after class library is compiled and just before website starts compiling. Because of this I am unable to publish the website on machines that dont have...
1
3610
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 assing this to a bitmap. I get the following error. Error 2 Cannot implicitly convert type 'stdole.IPictureDisp' to 'System.Drawing.Bitmap' and I can't find a way to convert one type to another.
0
1842
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, everything seemed to work fine, including the references in web.config to assemblies for ADODB and STDOLE. But earlier when I tried to deploy to another test server (this one Windows Server 2003 x64), the web app complained that it could not load...
2
2232
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
21433
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 solved the problem by going to the 'Publish' tab in the project properties and then selecting the 'Application Files' button. I then selected the options:
1
6214
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 stdole.IPictureDisp Pic = MatarotHost.ImageToIPicture(Image.FromStream(imgStreamPic)); And I don't have a vs.net installed in a computer: I don't get errors, but I can't see the button add-in The add-in not arrive to this part of the code
0
1847
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 = MatarotHost.ImageToIPicture(Image.FromStream(imgStreamPic)); And I don't have a vs.net installed in a computer: I don't get errors, but I can't see the button add-in The add-in not arrive to this part of the code OnStartupComplete() else - everything running OK!
0
8427
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...
0
8330
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8850
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...
1
8523
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
7355
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
4334
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2749
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
1975
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1737
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.