Click here to Skip to main content
15,893,381 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
AnswerRe: Where is SourceSafe 6.0 in .NET located?? Pin
leppie28-Feb-03 6:15
leppie28-Feb-03 6:15 
GeneralExtensive API Library Pin
Poolbeer27-Feb-03 3:18
Poolbeer27-Feb-03 3:18 
GeneralRe: Extensive API Library Pin
leppie27-Feb-03 9:43
leppie27-Feb-03 9:43 
GeneralRe: Extensive API Library Pin
Poolbeer27-Feb-03 21:46
Poolbeer27-Feb-03 21:46 
GeneralIf 2 people are working on the exact same project, how do we get each others new parts of the project... Pin
IrishSonic26-Feb-03 9:41
IrishSonic26-Feb-03 9:41 
GeneralRe: If 2 people are working on the exact same project, how do we get each others new parts of the project... Pin
Ray Cassick26-Feb-03 9:47
Ray Cassick26-Feb-03 9:47 
GeneralRe: If 2 people are working on the exact same project, how do we get each others new parts of the project... Pin
leppie26-Feb-03 11:25
leppie26-Feb-03 11:25 
Questionexception handling broken is vs2k3 final beta? Pin
Domster26-Feb-03 1:34
Domster26-Feb-03 1:34 
Hi all,

The simple test-case below shows a trivial WinForm with an exception in one of its event handlers.
Before the form is created and run, an exception handler is declared. Note that when the app. is run without the debugger (i.e. Ctrl+F5 as opposed to F5), the exception IS NOT CAUGHT... Frown | :(

Any body have any explanations / workarounds?

many thanks,
dm.

<br />
using System;<br />
using System.Drawing;<br />
using System.Collections;<br />
using System.ComponentModel;<br />
using System.Windows.Forms;<br />
using System.Data;<br />
<br />
namespace WindowsApplication7<br />
{<br />
	/// <summary><br />
	/// Summary description for Form1.<br />
	/// </summary><br />
	public class Form1 : System.Windows.Forms.Form<br />
	{<br />
		/// <summary><br />
		/// Required designer variable.<br />
		/// </summary><br />
		private System.ComponentModel.Container components = null;<br />
<br />
		public Form1()<br />
		{<br />
			//<br />
			// Required for Windows Form Designer support<br />
			//<br />
			InitializeComponent();<br />
<br />
<br />
			//<br />
			// TODO: Add any constructor code after InitializeComponent call<br />
			//<br />
		}<br />
<br />
		/// <summary><br />
		/// Clean up any resources being used.<br />
		/// </summary><br />
		protected override void Dispose( bool disposing )<br />
		{<br />
			if( disposing )<br />
			{<br />
				if (components != null) <br />
				{<br />
					components.Dispose();<br />
				}<br />
			}<br />
			base.Dispose( disposing );<br />
		}<br />
<br />
		#region Windows Form Designer generated code<br />
		/// <summary><br />
		/// Required method for Designer support - do not modify<br />
		/// the contents of this method with the code editor.<br />
		/// </summary><br />
		private void InitializeComponent()<br />
		{<br />
			// <br />
			// Form1<br />
			// <br />
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);<br />
			this.ClientSize = new System.Drawing.Size(290, 260);<br />
			this.Name = "Form1";<br />
			this.Text = "Form1";<br />
			this.VisibleChanged += new System.EventHandler(this.Form1_VisibleChanged);<br />
<br />
		}<br />
		#endregion<br />
<br />
		/// <summary><br />
		/// The main entry point for the application.<br />
		/// </summary><br />
		[STAThread]<br />
		static void Main() <br />
		{<br />
			try<br />
			{<br />
				Application.Run(new Form1());<br />
			}<br />
			catch<br />
			{<br />
				MessageBox.Show("caught");<br />
			}<br />
		}<br />
<br />
		private void Form1_VisibleChanged(object sender, System.EventArgs e)<br />
		{<br />
		<br />
			object i = null;<br />
			i.ToString();<br />
		}<br />
	}<br />
}<br />

AnswerRe: exception handling broken is vs2k3 final beta? Pin
Richard Deeming27-Feb-03 6:45
mveRichard Deeming27-Feb-03 6:45 
GeneralRe: exception handling broken is vs2k3 final beta? Pin
Domster27-Feb-03 6:54
Domster27-Feb-03 6:54 
GeneralInteroperability of Remoting Pin
mafia14425-Feb-03 18:17
mafia14425-Feb-03 18:17 
GeneralDraw3dRect Equivelent Pin
Jamie Nordmeyer25-Feb-03 7:26
Jamie Nordmeyer25-Feb-03 7:26 
GeneralRe: Draw3dRect Equivelent Pin
Gumaro26-Feb-03 8:05
Gumaro26-Feb-03 8:05 
GeneralRe: Draw3dRect Equivelent Pin
Brian Olej28-Feb-03 17:54
Brian Olej28-Feb-03 17:54 
GeneralAdding to "Add Reference" Pin
Chris Coote25-Feb-03 7:16
Chris Coote25-Feb-03 7:16 
GeneralRe: Adding to "Add Reference" Pin
Jeff J25-Feb-03 21:11
Jeff J25-Feb-03 21:11 
GeneralRe: Adding to "Add Reference" Pin
leppie26-Feb-03 6:46
leppie26-Feb-03 6:46 
GeneralRe: Adding to "Add Reference" Pin
Chris Coote26-Feb-03 8:33
Chris Coote26-Feb-03 8:33 
GeneralRe: Adding to "Add Reference" Pin
Chris Coote26-Feb-03 8:44
Chris Coote26-Feb-03 8:44 
GeneralReferences Pin
Ranjan Banerji24-Feb-03 12:52
Ranjan Banerji24-Feb-03 12:52 
GeneralRe: References Pin
Ranjan Banerji24-Feb-03 13:08
Ranjan Banerji24-Feb-03 13:08 
GeneralRe: References Pin
Ranjan Banerji24-Feb-03 13:39
Ranjan Banerji24-Feb-03 13:39 
GeneralRe: References Pin
leppie25-Feb-03 6:32
leppie25-Feb-03 6:32 
GeneralCrystal Reports Pin
armencho24-Feb-03 7:13
armencho24-Feb-03 7:13 
GeneralVisual Studio.NET running slow... Pin
IrishSonic24-Feb-03 2:48
IrishSonic24-Feb-03 2:48 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.