Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p><strong>First, make sure that you are in <em>Debug</em> mode, rather than Release mode:</strong></p> <ol> <li><p>Select your project in the Solution Explorer.</p></li> <li><p>From the "View" menu, select "Property Pages."</p></li> <li><p>If you're using C# or F#, click the "Build" or "Debug" tab. If you're using VB.NET, click the "Compile" or "Debug" tab. If you're using C++, click the "Configuration Properties" tab.</p></li> <li><p>In the "Configuration" drop-down list, select "Debug."</p> <p>(If you have any trouble with this, check out the <a href="http://msdn.microsoft.com/en-us/library/wx0123s5.aspx" rel="nofollow">full how-to guide</a> on MSDN.)</p></li> </ol> <p><strong>Then, clean and rebuild your solution:</strong></p> <ol> <li><p>From the "Build" menu, select "Clean Solution."</p></li> <li><p>Again from the "Build" menu, select "Rebuild Solution."</p></li> <li><p>Finally, from the "Debug" menu, select "Start Debugging" (or press <kbd>F5</kbd>).</p></li> </ol> <p><strong>If that still doesn't work:</strong></p> <ul> <li><p>Open the form you edited in design-view (without running the application, as if you were going to make further changes to the form) and make sure that your changes were actually saved.</p></li> <li><p>Make sure that your code is calling the correct (updated) form. Check the name of the form you're asking the application to show, and make sure it matches the form you want to display.</p></li> <li><p>Make sure that you don't have two copies of the same form. You might have accidentally modified a second version, and your code is still showing the original version.</p></li> </ul>
 

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