473,699 Members | 3,180 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

difference between MyBase.Closing and MyBase.FormClos ing

I read the Help and some of the many Google hits I got but can't find out
the difference between MyBase.Closing and MyBase.FormClos ing
Can anyone tell me?


Thanks
Nov 6 '06 #1
4 7716
Academic wrote:
I read the Help and some of the many Google hits I got but can't find out
the difference between MyBase.Closing and MyBase.FormClos ing
Can anyone tell me?
The Closing event is deprecated in .Net 2.0 and is provided for
backwards compatibility. You should use FormClosing from now on.
>From the docs:
"The Closing event is obsolete in the .NET Framework version 2.0; use
the FormClosing event instead."
Chris

Nov 6 '06 #2
I was wondering if anyone knows what is different
"Chris Dunaway" <du******@gmail .comwrote in message
news:11******** *************@f 16g2000cwb.goog legroups.com...
Academic wrote:
>I read the Help and some of the many Google hits I got but can't find out
the difference between MyBase.Closing and MyBase.FormClos ing
Can anyone tell me?

The Closing event is deprecated in .Net 2.0 and is provided for
backwards compatibility. You should use FormClosing from now on.
>>From the docs:

"The Closing event is obsolete in the .NET Framework version 2.0; use
the FormClosing event instead."
Chris

Nov 6 '06 #3
Academic,
In addition to the other comments.

FormClosing as an expanded EventArgs that include information about why the
form is closing.
http://msdn2.microsoft.com/en-us/lib...gs(VS.80).aspx

Where as Closing simply has a CancelEventArgs
http://msdn2.microsoft.com/en-us/lib...gs(VS.80).aspx

--
Hope this helps
Jay B. Harlow
..NET Application Architect, Enthusiast, & Evangelist
T.S. Bradley - http://www.tsbradley.net
" Academic" <ac************ @a-znet.comwrote in message
news:e1******** ********@TK2MSF TNGP03.phx.gbl. ..
>I read the Help and some of the many Google hits I got but can't find out
the difference between MyBase.Closing and MyBase.FormClos ing
Can anyone tell me?


Thanks
Nov 6 '06 #4
Thanks, I read the Help but didn't dig enough to find the CloseReason
Enumeration

Jay, I wish you'd look at my other post. I find that if I have a MDI form
open, and also a non-MDI non-MDI-Child Form open and close the app (by
clicking the X button) the non-MDI non-MDI-Child Form does not get a
FormClosing event.
Thanks again

PS By "non-MDI non-MDI-Child Form " I mean a regular run-of-the-mill form

"Jay B. Harlow" <Ja************ @tsbradley.netw rote in message
news:7C******** *************** ***********@mic rosoft.com...
Academic,
In addition to the other comments.

FormClosing as an expanded EventArgs that include information about why
the form is closing.
http://msdn2.microsoft.com/en-us/lib...gs(VS.80).aspx

Where as Closing simply has a CancelEventArgs
http://msdn2.microsoft.com/en-us/lib...gs(VS.80).aspx

--
Hope this helps
Jay B. Harlow
.NET Application Architect, Enthusiast, & Evangelist
T.S. Bradley - http://www.tsbradley.net
" Academic" <ac************ @a-znet.comwrote in message
news:e1******** ********@TK2MSF TNGP03.phx.gbl. ..
>>I read the Help and some of the many Google hits I got but can't find out
the difference between MyBase.Closing and MyBase.FormClos ing
Can anyone tell me?


Thanks

Nov 7 '06 #5

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

Similar topics

0
1113
by: Kathy D | last post by:
I have created an mdi parent form with four children. I want to disable closing the four children but allow closing the parent form. I created a FormClosing event on each form. That event tests to see who the sender is. If it is the appropriate child form the close is disabled and a message box shown. The problem is on the FormClosing event for the parent. It goes immediately to the first child form and displays the message box, then...
1
3261
by: e_man_online | last post by:
Hi, I have a VStudio 2003 project that had code like: Private Sub frmAnyForm_Closing(<parameters list...>) Handles MyBase.Closing and this project was converted to .NET 2.0 Everything compiled and worked no warnings or errors are left, but I realized that the closing event in .NET 2.0 has changed to:
2
3295
by: polocar | last post by:
Hi, suppose that you have a C# form with two buttons, that are the classical "btnOk" and "btnCancel" (besides them, of course in the form there can be many other controls). When the user clicks on btnOk, the program makes some confirm operations and closes the form. When the user clicks on btnCancel, the program makes some cancel operations and closes the form. My problem is that, when the user clicks on the "X" button of the form...
9
2575
by: cj | last post by:
In VB2003I have been using an exit menu item that issues me.close() then Private Sub Form1_Closing took care of closing everything down. I don't see a closing event for form1 in VB2005. What takes it's place?
14
3360
by: =?Utf-8?B?UHVjY2E=?= | last post by:
Hi, I'm using VS2005 and .net 2.0. I'm creating an application that has 3 forms. I want allow users to move forward and backward with the forms and retain the data users have entered. I thought I'll make the inactive forms invisible but this is creating a memory corruption problem when user close the form2 or form3 and not the formMain. My main form has a Next button which makes the main form invisible and starts a new form which I'll...
3
13055
by: sravan_reddy001 | last post by:
i want to prevent a form from closing.. to do this i want to handle the formClosing or FormClosed events. from here i want to prevent the form from closing. New instance of same form should not be used. is there any way to do this? is it posiible to do the same thing with anycode?
19
3224
by: zacks | last post by:
I have a .NET 2.0 MDI application where the child form has a Tab Control. Each of the Tab in the Tab Control has a Validating event to handle what it should do when the user changes tabs. But these Validating Events are also fired when either the child form or the main (parent) form Close icon is clicked. And I need for these events to know if they are being invoked because the app (or child window) is being closed. I have set a boolean...
3
2211
by: mtczx232 | last post by:
I have TabControls that Hold Forms on his TabPges (this make me easy to give ability to Designing each form in his IDE window). When form x is in middle of Edit Data Mode, I going to prevent: Closing App or switch to other tabs until save done explicit by user. So I try use events like: deactivate,leave,lostfocus,formclosing,validating to prevent user leave before save. but no one work: the not fire at all when app closing or switch...
0
1351
by: Academia | last post by:
I have a Mdi app. In FormClosing, e.CloseReason works OK in the Children. But in the Mdi form it always show UserClosing. Since the children close first I could set a global flag in them and test it in the Mdi. But if there are no children that would not work.
0
8706
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
8633
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
9199
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
8947
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
7787
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
5891
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();...
1
3076
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
2366
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2016
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.