473,948 Members | 12,236 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

AxHost.GetIPict ureDispFromPict ure

public class MatarotHost : AxHost
{
public MyHost() : base("02FD5840-C1A3-448E-8310-98611DF58281"){ }
public IPictureDisp GetIPictureDisp OfPicture(Image image)
{
return (IPictureDisp)M yHost.GetIPictu reDispFromPictu re(image);
}
}

Why I don't have in AxHost GetIPictureDisp FromPicture method?
I have only in MyHost.
I'm using vs.net 2003

May 31 '07 #1
3 4439
Yael,

This code won't even compile, as it will see the MyHost declaration,
thinking it is a constructor, and then realizing it is in a MatarotHost
class declaration, will yield an error.

The GetIPictureDisp FromPicture is a protected method, so it is only
exposed internally to classes that derive from AxHost.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"Yael" <Ya**@discussio ns.microsoft.co mwrote in message
news:02******** *************** ***********@mic rosoft.com...
public class MatarotHost : AxHost
{
public MyHost() : base("02FD5840-C1A3-448E-8310-98611DF58281"){ }
public IPictureDisp GetIPictureDisp OfPicture(Image image)
{
return (IPictureDisp)M yHost.GetIPictu reDispFromPictu re(image);
}
}

Why I don't have in AxHost GetIPictureDisp FromPicture method?
I have only in MyHost.
I'm using vs.net 2003
May 31 '07 #2
Thank you for your replay:
I foud that if I have VS in a computer, I get my comm add-in.
So,
How could I Show icon on a commandBarButto n?
without this method?
Using vs.net 2003 & outlook 2003

"Nicholas Paldino [.NET/C# MVP]" wrote:
Yael,

This code won't even compile, as it will see the MyHost declaration,
thinking it is a constructor, and then realizing it is in a MatarotHost
class declaration, will yield an error.

The GetIPictureDisp FromPicture is a protected method, so it is only
exposed internally to classes that derive from AxHost.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"Yael" <Ya**@discussio ns.microsoft.co mwrote in message
news:02******** *************** ***********@mic rosoft.com...
public class MatarotHost : AxHost
{
public MyHost() : base("02FD5840-C1A3-448E-8310-98611DF58281"){ }
public IPictureDisp GetIPictureDisp OfPicture(Image image)
{
return (IPictureDisp)M yHost.GetIPictu reDispFromPictu re(image);
}
}

Why I don't have in AxHost GetIPictureDisp FromPicture method?
I have only in MyHost.
I'm using vs.net 2003
May 31 '07 #3
I tried all these:
public static new stdole.IPicture Disp
GetIPictureDisp FromPicture(Sys tem.Drawing.Ima ge image)
{
return (stdole.IPictur eDisp)MatarotHo st.GetIPictureD ispFromPicture( image);
}

public IPictureDisp GetIPictureDisp OfPicture(Image image)
{
return (IPictureDisp)M atarotHost.GetI PictureDispFrom Picture(image);
}

public static stdole.IPicture Disp ImageToIpicture (System.Drawing .Image
image)
{
return (stdole.IPictur eDisp)MatarotHo st.GetIPictureD ispFromPicture( image);
}
"Nicholas Paldino [.NET/C# MVP]" wrote:
Yael,

This code won't even compile, as it will see the MyHost declaration,
thinking it is a constructor, and then realizing it is in a MatarotHost
class declaration, will yield an error.

The GetIPictureDisp FromPicture is a protected method, so it is only
exposed internally to classes that derive from AxHost.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"Yael" <Ya**@discussio ns.microsoft.co mwrote in message
news:02******** *************** ***********@mic rosoft.com...
public class MatarotHost : AxHost
{
public MyHost() : base("02FD5840-C1A3-448E-8310-98611DF58281"){ }
public IPictureDisp GetIPictureDisp OfPicture(Image image)
{
return (IPictureDisp)M yHost.GetIPictu reDispFromPictu re(image);
}
}

Why I don't have in AxHost GetIPictureDisp FromPicture method?
I have only in MyHost.
I'm using vs.net 2003
May 31 '07 #4

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

Similar topics

2
2442
by: Kuba Florczyk | last post by:
Hi Do anybody know how to show ActiveX whitout AxHost? For example i got wrapper to ActiveX and now i don't know how AxHost shows ActiveX. I must do it, because i think AxHost made it wrong and i got some problems with using ActiveX. Second question is how AxHost do it? I mean how he show Activex?
0
1479
by: Oculus | last post by:
Hi, Using AxImp /source I generated a wrapper class for one of my ActiveX controls that also implements a few other COM interfaces (I got the hotfix for KB886802 to even get this far) and it created the overridden method AttachInterfaces() to hook up these other interfaces. However, this method never gets called and when I call it manually in the constructor is just returns null for all my interfaces. Am I missing something or does...
0
1466
by: Carlo Micieli | last post by:
Hello, I have a problem with an AxHost-derived class, this class represents a barcode for a thermal printer. To draw the barcode it expose a method call Draw() that receive as parameter a device context handler. When I run the following code: using(Graphics gr = this.CreateGraphics()) {
2
10473
by: Norvin Laudon | last post by:
Hi, I have a legacy ActiveX control (circa 1996) which I would like to use in a C# class, without using a form. I am getting an exception thrown when I try to set properties on the control: "An unhandled exception of type 'InvalidActiveXStateException' occurred in axinterop.finsctllib.dll" When I put an instance of the control on a form, and look at the
8
6815
by: Martijn Boven | last post by:
I created a activex control in c# (vs 2005) -------------------------------------------- public partial class ActiveTest : UserControl { public ActiveTest()
0
5427
by: Patel | last post by:
Hi All, I am doing one INTERESTING work with Context Menu Strip. I am trying to insert a custom control / .Net control in Context menu as a context menu strip. I tried inserting MonthCalender in Context Menu as a context menu strip, it worked. Now, i tried same with Windows Media Player ( a control available in C#.Net). But I'm not able to set its URL property (i.e. path of the media file). and i'm getting the exception like...
0
1538
by: =?Utf-8?B?WWFlbA==?= | last post by:
I have com a add-in for outlook 2003 in c# vs.net 2003. there I add this class for display icon in my add-in button: In some computer this add-in running currect, but in one computer this add-in not runing..I think it's something about this topic (AxHost). Do you have any suggestion ? This works on the majority of desktops less one computetr. I don't get error, I just not see my addin. public class MatarotHost : AxHost {
0
1854
by: schao416 | last post by:
Hello all, I'm currently using an ActiveX control that has a property called OcxState that returns a value of type LONG. However, when I try to compile my app, the compiler says OcxState property returns a type axHost.State. My question is how do I go from axHost.State to a LONG type? Thanks in advance. Shane
0
1028
by: vshra | last post by:
Hello anyone can guide me how to convert Byte Array to AxHost:State pointer?
0
9989
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
11582
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
11181
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...
1
11355
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
10695
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
9898
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
7432
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
6120
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...
3
3547
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.