473,750 Members | 2,182 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 7727
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
1116
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
3267
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
3298
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
2578
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
3365
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
13056
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
3226
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
2214
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
1356
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
8836
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
9575
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
9394
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
9338
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,...
1
6803
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
6080
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
4712
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...
2
2798
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2223
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.