<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for World Press</title>
	<atom:link href="http://www.carriereducation.com/wordpress-3.0.5/wordpress/?feed=comments-rss2" rel="self" type="application/rss+xml" />
	<link>http://www.carriereducation.com/wordpress-3.0.5/wordpress</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Mon, 24 Oct 2011 17:13:20 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on What is a &#8220;modeless&#8221; form?  What is a &#8220;modal&#8221; form? by Egor A. Palchyk</title>
		<link>http://www.carriereducation.com/wordpress-3.0.5/wordpress/?p=14#comment-92</link>
		<dc:creator>Egor A. Palchyk</dc:creator>
		<pubDate>Mon, 24 Oct 2011 17:13:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.carriereducation.com/wordpress-3.0.5/wordpress/?p=14#comment-92</guid>
		<description>The difference is that in case of modal form, when it asks for input, it disables access to everything in the specific application until the input is given (or denied) to the application. In case of modeless forms, it’s a form that when input is requested, the application runs anyway, and continues running even if the input isn’t given or ignored. 
Modal forms are important for many reasons…for instance, if a person is saving a file, you don’t want them changing the file mid-save. Or, for another thing, if a program is asking for input that has to be given at an exact time in the program’s run time, you don’t want the person to be doing other things (for instance, clicking other buttons or modifying other data), thus theoretically messing up the program’s output or functions.</description>
		<content:encoded><![CDATA[<p>The difference is that in case of modal form, when it asks for input, it disables access to everything in the specific application until the input is given (or denied) to the application. In case of modeless forms, it’s a form that when input is requested, the application runs anyway, and continues running even if the input isn’t given or ignored.<br />
Modal forms are important for many reasons…for instance, if a person is saving a file, you don’t want them changing the file mid-save. Or, for another thing, if a program is asking for input that has to be given at an exact time in the program’s run time, you don’t want the person to be doing other things (for instance, clicking other buttons or modifying other data), thus theoretically messing up the program’s output or functions.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on What is a &#8220;modeless&#8221; form?  What is a &#8220;modal&#8221; form? by Steven E. Loy</title>
		<link>http://www.carriereducation.com/wordpress-3.0.5/wordpress/?p=14#comment-91</link>
		<dc:creator>Steven E. Loy</dc:creator>
		<pubDate>Mon, 24 Oct 2011 16:56:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.carriereducation.com/wordpress-3.0.5/wordpress/?p=14#comment-91</guid>
		<description>Forms and dialog boxes are either modal or modeless; dialog boxes that display important messages should always be modal. The About dialog box in Visual Studio is an example of a modal dialog box. MessageBox is a modal form you can use. A modal form retains the input focus while open; the modal form will not react till the modal is closed. You create a modal form with the “ShowDialog()” procedure, Hides the first form with Hide procedure. The Hide procedure removes the first form from the user’s screen; it conceals the first form so it is not visible on the screen without deleting the information it references.  The second method modeless is used for displaying a multiple. A Modeless form is useful for a help window that displays instructions. You create a Modeless form object with the procedure “frmSecond.Show()”. The hide method is not necessary because both form objects are displayed at the same time. Modeless forms are harder to program, because users can access them in an unpredictable order. You have to keep the state of the application consistent no matter what the user dose.</description>
		<content:encoded><![CDATA[<p>Forms and dialog boxes are either modal or modeless; dialog boxes that display important messages should always be modal. The About dialog box in Visual Studio is an example of a modal dialog box. MessageBox is a modal form you can use. A modal form retains the input focus while open; the modal form will not react till the modal is closed. You create a modal form with the “ShowDialog()” procedure, Hides the first form with Hide procedure. The Hide procedure removes the first form from the user’s screen; it conceals the first form so it is not visible on the screen without deleting the information it references.  The second method modeless is used for displaying a multiple. A Modeless form is useful for a help window that displays instructions. You create a Modeless form object with the procedure “frmSecond.Show()”. The hide method is not necessary because both form objects are displayed at the same time. Modeless forms are harder to program, because users can access them in an unpredictable order. You have to keep the state of the application consistent no matter what the user dose.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on What is a &#8220;modeless&#8221; form?  What is a &#8220;modal&#8221; form? by Angel Beltre</title>
		<link>http://www.carriereducation.com/wordpress-3.0.5/wordpress/?p=14#comment-90</link>
		<dc:creator>Angel Beltre</dc:creator>
		<pubDate>Mon, 24 Oct 2011 16:50:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.carriereducation.com/wordpress-3.0.5/wordpress/?p=14#comment-90</guid>
		<description>A modeless dialog box lets the user to supply information and allows the user to shift focus between the dialog box and other dialog boxes or forms without having to close the first dialog box. You’re able to work elsewhere while the dialog box is displayed. In a modal dialog box, a user must supply information or cancel the dialog box before allowing the application to continue. Programs use modal dialog boxes in union with commands that need more information before they can continue. A modeless form is harder to program because users can access them in an unpredictable order.</description>
		<content:encoded><![CDATA[<p>A modeless dialog box lets the user to supply information and allows the user to shift focus between the dialog box and other dialog boxes or forms without having to close the first dialog box. You’re able to work elsewhere while the dialog box is displayed. In a modal dialog box, a user must supply information or cancel the dialog box before allowing the application to continue. Programs use modal dialog boxes in union with commands that need more information before they can continue. A modeless form is harder to program because users can access them in an unpredictable order.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on What is a &#8220;modeless&#8221; form?  What is a &#8220;modal&#8221; form? by Zack Wigal</title>
		<link>http://www.carriereducation.com/wordpress-3.0.5/wordpress/?p=14#comment-88</link>
		<dc:creator>Zack Wigal</dc:creator>
		<pubDate>Mon, 24 Oct 2011 16:40:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.carriereducation.com/wordpress-3.0.5/wordpress/?p=14#comment-88</guid>
		<description>Model is where you can’t do anything until you finish whatever you were doing in the current window.  In some cases, this is needed because you could want to control the order in which the user does something. Saving is an example of this. You would want the user to save before changing the file. Another example would be the shut down window.
Modeless is where you can click outside the window. This would be used in pretty much any case where you can’t come up with a reason why you should not allow the user to click out of the window.</description>
		<content:encoded><![CDATA[<p>Model is where you can’t do anything until you finish whatever you were doing in the current window.  In some cases, this is needed because you could want to control the order in which the user does something. Saving is an example of this. You would want the user to save before changing the file. Another example would be the shut down window.<br />
Modeless is where you can click outside the window. This would be used in pretty much any case where you can’t come up with a reason why you should not allow the user to click out of the window.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on What is a &#8220;modeless&#8221; form?  What is a &#8220;modal&#8221; form? by Brandon Farmer</title>
		<link>http://www.carriereducation.com/wordpress-3.0.5/wordpress/?p=14#comment-87</link>
		<dc:creator>Brandon Farmer</dc:creator>
		<pubDate>Mon, 24 Oct 2011 16:26:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.carriereducation.com/wordpress-3.0.5/wordpress/?p=14#comment-87</guid>
		<description>Brandon Farmer
What is a modeless form and what is a modal form?
A modeless form means that the form itself doesn’t require immediate user input before being closed or for interaction with other controls to take place.  Modeless forms are also harder to program because users can access them in an unpredictable order.  The Find dialog box accessible from the Edit menu in Visual Studio is a perfect example of a modeless dialog box.  Modal form or windows are exactly the opposite because they have exclusive focus, meaning it requires user input before any other action can take place in the program.  Controls that are outside of the modal form or window will not take any user interaction until the modal is dismissed.  A modal form must also be closed or hidden before you can continue working with the rest of the application.  These are the main differences between a modeless form and a modal form.</description>
		<content:encoded><![CDATA[<p>Brandon Farmer<br />
What is a modeless form and what is a modal form?<br />
A modeless form means that the form itself doesn’t require immediate user input before being closed or for interaction with other controls to take place.  Modeless forms are also harder to program because users can access them in an unpredictable order.  The Find dialog box accessible from the Edit menu in Visual Studio is a perfect example of a modeless dialog box.  Modal form or windows are exactly the opposite because they have exclusive focus, meaning it requires user input before any other action can take place in the program.  Controls that are outside of the modal form or window will not take any user interaction until the modal is dismissed.  A modal form must also be closed or hidden before you can continue working with the rest of the application.  These are the main differences between a modeless form and a modal form.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on What is a &#8220;modeless&#8221; form?  What is a &#8220;modal&#8221; form? by Eric</title>
		<link>http://www.carriereducation.com/wordpress-3.0.5/wordpress/?p=14#comment-86</link>
		<dc:creator>Eric</dc:creator>
		<pubDate>Mon, 24 Oct 2011 16:22:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.carriereducation.com/wordpress-3.0.5/wordpress/?p=14#comment-86</guid>
		<description>Modal forms retain focus by the system until the user has completed input or confirmed they are done with the form.  A modal form is sometimes called a dialogue a box.  Any other forms open within the program are usually hidden or cannot be selected until input has been given on the modal form.
Modeless forms do not require input to be completed before switching to another form within the program, and do not retain focus by default.  
An example to help understand this concept is a user choosing a file from a file open dialogue box.  The user may not select another window/form within the program until the user has either selected the file, or pressed the cancel button.  The file dialogue box is an example of a modal form.</description>
		<content:encoded><![CDATA[<p>Modal forms retain focus by the system until the user has completed input or confirmed they are done with the form.  A modal form is sometimes called a dialogue a box.  Any other forms open within the program are usually hidden or cannot be selected until input has been given on the modal form.<br />
Modeless forms do not require input to be completed before switching to another form within the program, and do not retain focus by default.<br />
An example to help understand this concept is a user choosing a file from a file open dialogue box.  The user may not select another window/form within the program until the user has either selected the file, or pressed the cancel button.  The file dialogue box is an example of a modal form.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on What is a &#8220;modeless&#8221; form?  What is a &#8220;modal&#8221; form? by Jesse Barrett</title>
		<link>http://www.carriereducation.com/wordpress-3.0.5/wordpress/?p=14#comment-85</link>
		<dc:creator>Jesse Barrett</dc:creator>
		<pubDate>Mon, 24 Oct 2011 16:22:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.carriereducation.com/wordpress-3.0.5/wordpress/?p=14#comment-85</guid>
		<description>A modal dialog box makes the user enter some sort of input before allowing them to continue.  It is possible, however, to perform other tasks without closing the dialog box by pressing the alt and tab keys at the same time, thus hiding the dialog box. An example of a situation where a modeless dialog box is used is an error dialog box.  A modeless dialog box, on the other hand, allows the user to minimize the dialog box and open or use other applications while still having the dialog box open.  Modeless forms can be more difficult to program because the user does not access them in any particular order.</description>
		<content:encoded><![CDATA[<p>A modal dialog box makes the user enter some sort of input before allowing them to continue.  It is possible, however, to perform other tasks without closing the dialog box by pressing the alt and tab keys at the same time, thus hiding the dialog box. An example of a situation where a modeless dialog box is used is an error dialog box.  A modeless dialog box, on the other hand, allows the user to minimize the dialog box and open or use other applications while still having the dialog box open.  Modeless forms can be more difficult to program because the user does not access them in any particular order.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on What is a &#8220;modeless&#8221; form?  What is a &#8220;modal&#8221; form? by Patrick</title>
		<link>http://www.carriereducation.com/wordpress-3.0.5/wordpress/?p=14#comment-84</link>
		<dc:creator>Patrick</dc:creator>
		<pubDate>Mon, 24 Oct 2011 16:18:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.carriereducation.com/wordpress-3.0.5/wordpress/?p=14#comment-84</guid>
		<description>Modal windows are windows that don’t let you go to other windows. For example, if you go to shut down menu it will not allow you to go to any other windows. But other types of windows like the save windows allow you to go to other programs like internet browsers, whereas the shutdown menu won’t allow you to go to any other windows. Modeless forms allow you to go between windows freely like being on a web browser, which allows you to switch between the other windows open freely and do not force you to be within one program.</description>
		<content:encoded><![CDATA[<p>Modal windows are windows that don’t let you go to other windows. For example, if you go to shut down menu it will not allow you to go to any other windows. But other types of windows like the save windows allow you to go to other programs like internet browsers, whereas the shutdown menu won’t allow you to go to any other windows. Modeless forms allow you to go between windows freely like being on a web browser, which allows you to switch between the other windows open freely and do not force you to be within one program.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Team Rotation by Raymond Stewart</title>
		<link>http://www.carriereducation.com/wordpress-3.0.5/wordpress/?p=5#comment-81</link>
		<dc:creator>Raymond Stewart</dc:creator>
		<pubDate>Thu, 20 Oct 2011 17:07:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.carriereducation.com/wordpress-3.0.5/wordpress/?p=5#comment-81</guid>
		<description>Team Rotation – I both like and somewhat dislike the rotating positions. Let’s go over the likes first. The thing I like about the rotation is that I learn a lot about what I can and cannot do well, just like I thought I was going to be a terrible hardware person but it turns out I was pretty good at managing hardware. The thing I don’t like about it is getting the position where I must be the scribe just because sometimes people do things without telling me and it doesn’t get recorded. I also don’t like when things get overly complicated when we have people working on the same thing but they are doing two different things. For example getting wordpress installed onto the wamp server, because we have the confusion it wasted a lot of time, the next day it was set up in less than 10 minutes and all we had to do was follow the directions. Not sure if it can be improved because I am well aware that you cannot please everyone because everybody is different.</description>
		<content:encoded><![CDATA[<p>Team Rotation – I both like and somewhat dislike the rotating positions. Let’s go over the likes first. The thing I like about the rotation is that I learn a lot about what I can and cannot do well, just like I thought I was going to be a terrible hardware person but it turns out I was pretty good at managing hardware. The thing I don’t like about it is getting the position where I must be the scribe just because sometimes people do things without telling me and it doesn’t get recorded. I also don’t like when things get overly complicated when we have people working on the same thing but they are doing two different things. For example getting wordpress installed onto the wamp server, because we have the confusion it wasted a lot of time, the next day it was set up in less than 10 minutes and all we had to do was follow the directions. Not sure if it can be improved because I am well aware that you cannot please everyone because everybody is different.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Team Rotation by Glenda Anderson</title>
		<link>http://www.carriereducation.com/wordpress-3.0.5/wordpress/?p=5#comment-80</link>
		<dc:creator>Glenda Anderson</dc:creator>
		<pubDate>Thu, 20 Oct 2011 17:06:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.carriereducation.com/wordpress-3.0.5/wordpress/?p=5#comment-80</guid>
		<description>Team Rotation
I learned from team rotation that it is good to know many things so if someone in your group is absent the project will not suffer from the lack of knowledge missing because of an absence. Especially when there is a deadline to meet and consequences for either a student environment or an actual business. I liked the process and I think it should be practiced in both school and business because it gives everyone hands-on experience in every area. It can be improved by if the information necessary to perform the new function is documented so you will know what you need to do. It is hard trying to take on new duties or skill sets if you don’t know what you are doing and just thrown in a situation that means the difference to success and failure. No one wants to fail especially when other people are depending on you; no one lives in a vacuum so instructions or assistance in the rotation process would be helpful and needed.</description>
		<content:encoded><![CDATA[<p>Team Rotation<br />
I learned from team rotation that it is good to know many things so if someone in your group is absent the project will not suffer from the lack of knowledge missing because of an absence. Especially when there is a deadline to meet and consequences for either a student environment or an actual business. I liked the process and I think it should be practiced in both school and business because it gives everyone hands-on experience in every area. It can be improved by if the information necessary to perform the new function is documented so you will know what you need to do. It is hard trying to take on new duties or skill sets if you don’t know what you are doing and just thrown in a situation that means the difference to success and failure. No one wants to fail especially when other people are depending on you; no one lives in a vacuum so instructions or assistance in the rotation process would be helpful and needed.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

