473,789 Members | 3,123 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

problem with pictuerbox

ma
Hello,

I am new in .NET and I am writing my first program in c++/CLI on MSVC
2005.

I add a PictureBox to my form and then using its properties I change its
image property to one image from my hard disk. it generate the following
code for me:

this->image1->Image = (cli::safe_cast <System::Drawin g::Image^
(resources->GetObject(L"im age1.Image")));


but when I am running my program, it generate an exception with the error
that it couldn't find the specified objects in my resources. I checked the
resource and there is no resource with this name there.

What is wrong with this?

Best regards


Mar 12 '06 #1
5 1747
> but when I am running my program, it generate an exception with the error
that it couldn't find the specified objects in my resources. I checked
the
resource and there is no resource with this name there.

What is wrong with this?


As I mentioned in vc.language, It should work, so you have to find out why
it doesn't get added.
Have you tried to add image1 manually?

double click the resource, select 'images' in the top left of the resource
window.
that way you see what images exist.
In the resource window, Select Add resource->New image then select the
correct extension and add your image manually.

--

Kind regards,
Bruno.
br************* *********@hotma il.com
Remove only "_nos_pam"
Mar 12 '06 #2
ma
Thanks for your suggestion.
I did some more work and I found that the resouirce is actually there but
when I try to read it i am getting the following error:
An unhandled exception of type
'System.Resourc es.MissingManif estResourceExce ption' occurred in mscorlib.dll

Additional information: Could not find any resources appropriate for the
specified culture or the neutral culture. Make sure
"test_win_form. MainForm.resour ces" was correctly embedded or linked into
assembly "test_win_f orm" at compile time, or that all the satellite
assemblies required are loadable and fully signed.

what is culture?

best regards

"Bruno van Dooren" <br************ **********@hotm ail.com> wrote in message
news:OT******** *****@TK2MSFTNG P10.phx.gbl...
but when I am running my program, it generate an exception with the error
that it couldn't find the specified objects in my resources. I checked
the
resource and there is no resource with this name there.

What is wrong with this?


As I mentioned in vc.language, It should work, so you have to find out why
it doesn't get added.
Have you tried to add image1 manually?

double click the resource, select 'images' in the top left of the resource
window.
that way you see what images exist.
In the resource window, Select Add resource->New image then select the
correct extension and add your image manually.

--

Kind regards,
Bruno.
br************* *********@hotma il.com
Remove only "_nos_pam"

Mar 12 '06 #3
> Thanks for your suggestion.
I did some more work and I found that the resouirce is actually there but
when I try to read it i am getting the following error:
An unhandled exception of type
'System.Resourc es.MissingManif estResourceExce ption' occurred in mscorlib.dll

Additional information: Could not find any resources appropriate for the
specified culture or the neutral culture. Make sure
"test_win_form. MainForm.resour ces" was correctly embedded or linked into
assembly "test_win_f orm" at compile time, or that all the satellite
assemblies required are loadable and fully signed.

what is culture?


If you want users from different countries to be able to use your
application in their native language, you can use localization.

if you look at the propery page of your windows form, there is a property
called language. if you select a language there, every make-up action you
perform on the form will be tied to that language.

For example, in your case this would mean that you would have 2 pictures for
2 languages. the language is determine by the localization settings in the
windows control panel.

If the program runs on a computer for which there is no specific resource,
the program will try to load the language 'neutral' resource.

I suggest you do the following: In your resource file (if you right click it
in the solution explorer ->view code) you can see the language for which the
picture was added. In my project this is neutral (the default setting).
My guess is that whatever you find there is not neutral, and different from
the locale of your machine.

When you start your app, the program will try to load the resource for the
locale of your machine, does not find it, tries to load the neutral resource,
cannot find it and finally throws an exception.

--

Kind regards,
Bruno.
br************* *********@hotma il.com
Remove only "_nos_pam"

Mar 13 '06 #4
ma
Thanks for your good explanation.

I check and found that the language of my form is default and in the
resource the culture is neutral

See the extract from my form resource:

assembly alias="System.D rawing" name="System.Dr awing, Version=2.0.0.0 ,
Culture=neutral , PublicKeyToken= b03f5f7f11d50a3 a" />

<data name="pictureBo x1.Image" type="System.Dr awing.Bitmap, System.Drawing"
mimetype="appli cation/x-microsoft.net.o bject.bytearray .base64">

<value>

What should I do now?

Best regards
Mar 13 '06 #5


"ma" wrote:
Thanks for your good explanation.

I check and found that the language of my form is default and in the
resource the culture is neutral

See the extract from my form resource:

assembly alias="System.D rawing" name="System.Dr awing, Version=2.0.0.0 ,
Culture=neutral , PublicKeyToken= b03f5f7f11d50a3 a" />

<data name="pictureBo x1.Image" type="System.Dr awing.Bitmap, System.Drawing"
mimetype="appli cation/x-microsoft.net.o bject.bytearray .base64">

<value>

What should I do now?

Best regards


This should be OK.
Btw I just realized that your form has localization disabled .otherwise you
won't get the explicit initialization of the picturebox directly in your code.

However, your code contains this:
resources->GetObject(L"im age1.Image")));
but your resource file contains this:
<data name="pictureBo x1.Image"

the names don't match. there is no image1.image in your resource file.
try to change the name of the resource that initializecompo nent tries to
load to the name that is in your resource file. they should be the same.

--

Kind regards,
Bruno.
br************* *********@hotma il.com
Remove only "_nos_pam"

Mar 13 '06 #6

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

Similar topics

0
3079
by: Bruce Davis | last post by:
I'm having a problem on windows (both 2000 and XP) with a multi-threaded tkinter gui application. The problem appears to be a deadlock condition when a child thread pops up a Pmw dialog window in the context of a main window. The problem does not occur on HPUX or Linux. The following simple example code illustrates the problem and the work around I've come up with; However, I'd like, very much, to get rid of the kludgy work around....
11
3763
by: Kostatus | last post by:
I have a virtual function in a base class, which is then overwritten by a function of the same name in a publically derived class. When I call the function using a pointer to the derived class (ClassB* b; b->func(); ) the base-class function is called instead of the new function in the derived class. All other similar functions (virtual in the base class and overwritten in the the derived class) work fine, it's just this one function. ...
0
2026
by: Refky Wahib | last post by:
Hi I need Technical Support I finished a Great project using .Net and SQL Server and .Net Mobile Control My Business case is to implement this Program to accept about 1 Million concurrent users So I designed the project as master Node that has all administration
9
2257
by: Sudesh Sawant | last post by:
Hello, We have an application which communicates using remoting. There is a server which is a Windows Service. The server exposes an object which is a singleton. The client is a Web Application which makes calls to the service. We are using tcp channel which is using binaryformatter by default. The problem is that after a certain number of remoting calls the calls dont get through to the server. The client application makes the call and...
117
7273
by: Peter Olcott | last post by:
www.halting-problem.com
17
16622
by: Jon Slaughter | last post by:
I'm having a little trouble understanding what the slicing problem is. In B.S.'s C++ PL3rdEd he says "Becayse the Employee copy functions do not know anything about Managers, only the Employee part of Manager is copied. ".... and gives the code above as .....
28
5224
by: Jon Davis | last post by:
If I have a class with a virtual method, and a child class that overrides the virtual method, and then I create an instance of the child class AS A base class... BaseClass bc = new ChildClass(); .... and then call the virtual method, why is it that the base class's method is called instead of the overridden method? How do I fix this if I don't know at runtime what the child class is? I'm using Activator.CreateInstance() to load the...
6
3815
by: Ammar | last post by:
Dear All, I'm facing a small problem. I have a portal web site, that contains articles, for each article, the end user can send a comment about the article. The problem is: I the comment length is more that 1249 bytes, then the progress bar of the browser will move too slow and then displaying that the page not found!!!! If the message is less than or equal to 1249 then no problem.
16
4930
by: Dany | last post by:
Our web service was working fine until we installed .net Framework 1.1 service pack 1. Uninstalling SP1 is not an option because our largest customer says service packs marked as "critical" by Microsoft must be installed on their servers. Now german Umlaute (ä, ü, ö) and quotes are returned incorrectly in SOAP fault responses. This can be easily verified: Implement the following in a web service method (just raises a SOAPException with a...
2
4558
by: Mike Collins | last post by:
I cannot get the correct drop down list value from a drop down I have on my web form. I get the initial value that was loaded in the list. It was asked by someone else what the autopostback was set to...it is set to false. Can someone show me what I am doing wrong and tell me the correct way? Thank you. In the page load event, I am doing the following:
0
9665
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
9511
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
10199
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
9983
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
6768
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
5417
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
4092
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
3697
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2909
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.