Note that there are some explanatory texts on larger screens.

plurals
  1. POEnd Program After MessageBox is Closed
    primarykey
    data
    text
    <p>At the very beginning of my program, I am checking to see if I can initiate a connection with a device on COM6. If the device is not found, then I want to display a MessageBox and then completely end the program.</p> <p>Here's what I have so far in the <code>Main()</code> function of the initial program:</p> <pre><code>try { reader = new Reader("COM6"); } catch { MessageBox.Show("No Device Detected", MessageBoxButtons.OK, MessageBoxIcon.Error) } Application.EnableVisualStyles(); Application.SetCompatibleRenderingDefault(false); Application.Run(new Form1()); </code></pre> <p>When I try putting a <code>Application.Exit();</code> after the MessageBox command, the MessageBox displays correctly when no device is detected, but when I close the MessageBox, Form1 still opens, but is completely frozen and won't let me close it or click any of the buttons that should give me an error anyways since the device is not connected.</p> <p>I am just looking for away to kill the program completely after the MessageBox is displayed. Thanks.</p> <p><strong>SOLUTION:</strong> After using the <code>return;</code> method after the MessageBox closed the program quit just as I wanted when the device was not plugged it. However, when the device was plugged in, it still had issues reading after to test. This was something I hadn't discovered before, but it was a simple fix. Here is my fully working code:</p> <pre><code>try { test = new Reader("COM6"); test.Dispose(); //Had to dispose so that I could connect later in the program. Simple fix. } catch { MessageBox.Show("No device was detected", MessageBoxButtons.OK, MessageBoxIcon.Error) return; } Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new Form1()); </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload