473,800 Members | 2,640 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

VS2005 DialogResult

rk
According to the docs, I would expect to check the result of an
OpenFileDialog in a VS 2005 CLR Windows Forms application this way:

if (openFileDialog 1->ShowDialog() ==
DialogResult::O K)

However, this does not work, and I have to use:

if (openFileDialog 1->ShowDialog() ==
System::Windows ::Forms::Dialog Result::OK)

Did I miss anything, or is this a bug?

Thanks
Richard
Feb 28 '06
11 2661
Regarding the scope of identifiers, C++/CLI is very picky. You are probably
facing a problem related to this. Check if you have defined something (e. g.
a member of your class) "DialogResu lt". This can easily cause such a
problem.

Here is another example:

#using "System.Drawing .dll"
using namespace System::Drawing ;
ref struct X
{
property Size Size
{
// the line below fails even though the namespace System::Drawing is
opened
Size get() // type name Size conficts with property name Size
{
return Size();
}
// workaround
// System::Drawing ::Size get() // type name Size conficts with property
name Size
// {
// return System::Drawing ::Size();
// }
}
};

Marcus Heege

This code is untested. Please test it

"rk" <rk@invalid.com > wrote in message
news:%2******** ********@TK2MSF TNGP10.phx.gbl. ..
Hi Jochen,

I had added

using namespace System::Windows ::Forms;

but this did not prevent the problem. I know, that

if (openFileDialog 1->ShowDialog() ==
System::Windows ::Forms::Dialog Result::OK)

and

using namespace System::Windows ::Forms;
if (openFileDialog 1->ShowDialog()== DialogResult::O K)

should be equivalent. So I would expect it to be a bug if they are not.

Or not?

Richard
Jochen Kalmbach [MVP] schrieb:
Hi rk!
According to the docs, I would expect to check the result of an
OpenFileDialog in a VS 2005 CLR Windows Forms application this way:

if (openFileDialog 1->ShowDialog() ==
DialogResult::O K)

However, this does not work, and I have to use:

if (openFileDialog 1->ShowDialog() ==
System::Windows ::Forms::Dialog Result::OK)

Did I miss anything, or is this a bug?


The short-version only works, if you have added

using System::Windows ::Forms;

at the top (or at least before you use the above code).
Or did I miss something in your post?

Feb 28 '06 #11
Hi Marcus!
Regarding the scope of identifiers, C++/CLI is very picky. You are probably
facing a problem related to this. Check if you have defined something (e. g.
a member of your class) "DialogResu lt". This can easily cause such a
problem.


Have you a pointer to the docu???
Because the same code works perfectly in VS2003...

By the way: The member "DialgResul t" is defined in
"System::Window s::Forms::Form" ... so the problem occurs in *every*
Form-derived class.

--
Greetings
Jochen

My blog about Win32 and .NET
http://blog.kalmbachnet.de/
Mar 1 '06 #12

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

Similar topics

5
3701
by: Daniel | last post by:
what do you have to do in a C# dialog so that it returns to ShowDialog as DialogResult.OK ?
2
17747
by: steve bull | last post by:
I have built what I think should be a dialog box. It contains 4 tabbed panes for generating a range of colors. Each tabbed pane consists of a panel with all the widgets on them including the OK and Cancel buttons. These buttons have to be on the panels themselves so that they can create the color range from the current settings on the panel and return the result via a delegate to the main dialog form. The problem I have is that the OK...
7
2648
by: Frank Maxey | last post by:
I am fairly new to VB.Net and am having a curious problem. I have an entry dialog form called from a main form. The calling form needs to check the DialogResult field for an OK response. In my button service in the dialog form, I have: Private Sub btnSave_Click(ByVal sender As System.Object, _ ByVal e As System.EventArgs) Handles btnSave.Click
2
7549
by: dm1608 | last post by:
I'm opening my own form and doing something like: If dlgDirectory.ShowDialog() = DialogResult.OK Then .... End If When I compile the project, I can a warning for the line saying: Access of shared member, constant member, enum member or nested type through an instance; qualifying expression will not be evaluated.
8
1205
by: BK | last post by:
Converting a rather large solution from 2003 to 2005. All the errors are worked out, but I'm trying to clean up the warnings as best I can. The good news is that the application and it's supporting assemblies are all working now. The followins snippet is from a base form class I use in the application. Pretty typical stuff, when a data entry form is closing and if the user is editing data, I want to allow them to save their work. ...
1
2362
by: Bill Cart | last post by:
I am trying to work with 2 forms. If I set the ModalResult of a button on the 2nd form it works OK. If I try to assign the result and then return it does not return the value I set. 1st Form (calling form) DeliveryInfo DeliveryFrm = new DeliveryInfo(Convert.ToInt32(this.uniqueIDTextBox.Text)); DialogResult result;
7
5590
by: Masterfrier | last post by:
Hi there! in my app, i open a Dialog, in this dialog i use the FileOpenDialog, when i click on 'Ok' or 'Cancel' in my FileOpenDialog, it automatically closes the parent dialog, with a DialogResult.Cancel??? I have overloaded the ShowDialog to accept parameters in the 'Parent' Dialog main Code ...Calling Parent Dialog
2
6997
by: WP | last post by:
Hello, I making and Windows Forms program and I have a dialog with two buttons. I have set the DialogResult property for these buttons to DialogResult.OK and DialogResult.No, respectively (however, these buttons are not labelled "OK" and "No"). Settting this property is very convenient, I don't need to write any code determining what should happen when one of these buttons is clicked. Anyway, now I need to add a third button and I guess I...
0
9690
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...
1
10250
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
10032
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
9085
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
7574
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
5603
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4149
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
3764
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2944
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.