473,803 Members | 2,972 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

stdole.IPicture Disp

Hi,
I have problem is with return stdole.IPicture Disp 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.IPicture Disp Pic =
MatarotHost.Ima geToIPicture(Im age.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
OnStartupComple te()
else - everything running OK!
Thanking you in anticipation
Yael
=============== =============== ====
internal class MatarotHost : AxHost
{
public MatarotHost() :
base("02FD5840-C1A3-448E-8310-98611DF58281"){ MessageBox.Show ("base");}
public static stdole.IPicture Disp ImageToIPicture (Image image)
{ //only with vs.net installed display this msg!!!
MessageBox.Show ("GetIPictureDi spFromPicture") ;
return (stdole.IPictur eDisp)AxHost.Ge tIPictureDispFr omPicture(image );
}
}

Jun 6 '07 #1
1 6220
Hi,
I have problem is with return stdole.IPicture Disp 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.IPicture Disp Pic =
MatarotHost.Ima geToIPicture(Im age.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
OnStartupComple te()
else - everything running OK!
Hi, please contact me for advises on this problem
my email is

adi39 @btinternet.com

p.s.
You have version problems. Some products can "break" other products,
for example, installing both standard and professional editions will result
in a faulty installation on both, but contact me, I need to know the fine
details to give specific help.
Thanking you in anticipation
Yael

Jun 6 '07 #2

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

Similar topics

1
1912
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...
1
6422
by: john | last post by:
I'm working on an add-in and one of the methods in the extensibility model takes an object of type IPictureDisp. How can i get this in .Net? I've tried loading up bitmap, image and icon classes, and use those, but they dont impelemt this interface. has any one played with IPictureDisp in C#? thanks, John
0
2325
by: Shao | last post by:
I am using VS.Net 2003 and I need to create a IPictureDisp pointer that points to a picture object. IPictureDisp *pd; PICTDESC pdesc; memset(&pdesc,0,sizeof(pdesc)); pdesc.cbSizeofstruct = sizeof(pdesc); pdesc.picType = PICTYPE_BITMAP; pdesc.bmp.hbitmap = static_cast
2
6198
by: Map Reader | last post by:
Greetings, I am converting an old VB6 application to use .NET. One of the old controls loads icons from the disk and displays them. However, the transparent color turns to blue somewhere in the process. I narrowed it down to the conversion to IPictureDisp by first loading and saving the icon as a bitmap with no problems; and then repeating the process but adding the step of converting to an IPictureDisp as well. The first operation...
5
17634
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
3618
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
1849
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...
8
10296
by: samadams_2006 | last post by:
I'm trying to find the namespace for stdole.dll Is there a tool out there that will help me do this?
0
1853
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
9703
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
9565
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
10550
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
10317
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9125
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...
1
7604
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 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 a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6844
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
5501
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...
1
4275
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

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.