<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>ResearchTutorials.com</title>
	<atom:link href="http://www.researchtutorials.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.researchtutorials.com</link>
	<description>Helping you work faster and smarter. Video tutorials for the academic and research community.</description>
	<lastBuildDate>Fri, 23 Oct 2009 17:17:53 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Make Access combo boxes drop down automatically</title>
		<link>http://www.researchtutorials.com/data-management/make-access-combo-boxes-drop-down-automatically/</link>
		<comments>http://www.researchtutorials.com/data-management/make-access-combo-boxes-drop-down-automatically/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 14:53:14 +0000</pubDate>
		<dc:creator>Kurt</dc:creator>
				<category><![CDATA[Data Management]]></category>
		<category><![CDATA[access 2003]]></category>
		<category><![CDATA[combo box]]></category>

		<guid isPermaLink="false">http://www.researchtutorials.com/wptestsite/?p=130</guid>
		<description><![CDATA[By default, in order to see the items in a combo box, you need to click on the little arrow in the drop down box. This can get tedious, especially if there are a lot of combo boxes on your form. It's also not efficient for high speed data entry, like using TAB to move through controls and the number pad or arrow keys to select answers. With just a few lines of code, you can make your combo boxes drop down automatically when the cursor enters them. I'll show you two ways to accomplish this.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.researchtutorials.com/wp-content/uploads/2009/07/dropdown2.jpg"  rel="shadowbox[post-130];player=img;"><img class="size-full wp-image-289 alignright" title="dropdown" src="http://www.researchtutorials.com/wp-content/uploads/2009/07/dropdown2.jpg" alt="dropdown" width="292" height="126" /></a>By default, in order to see the items in a combo box, you need to click on the little arrow in the drop down box. This can get tedious, especially if there are a lot of combo boxes on your form. It&#8217;s also not efficient for high speed data entry, like using TAB to move through controls and the number pad or arrow keys to select answers. With just a few lines of code, you can make your combo boxes drop down automatically when the cursor enters them. I&#8217;ll show you two ways to accomplish this.</p>
<p>After the video I list the steps for both methods. You can just read those but if you get lost, the video should clarify everything.</p>
<p><a href="http://www.researchtutorials.com/data-management/make-access-combo-boxes-drop-down-automatically/" ><em>Click here to view the embedded video.</em></a></p>
<h3>Method 1: Apply the drop down setting to combo boxes, one by one</h3>
<p>This method is useful if you&#8217;re dealing only with a few combo boxes.</p>
<ol>
<li>Open the form in Design View</li>
<li>Double click on the combo box to open its properties box</li>
<li>Click the <strong>Enter</strong> tab</li>
<li>In the <strong>On Enter</strong> line, click the dropdown arrow and select <strong>[EventProcedure]</strong></li>
<li> Click the marching ants (&#8230;). This open the Visual Basic window.</li>
<li> In between the two lines of code already provided (Private Sub &#8230; End Sub), type the following:</li>
</ol>
<blockquote>
<pre>Me.q1.Dropdown</pre>
</blockquote>
<p>So the final code should look like this:</p>
<blockquote>
<pre>Private Sub q1_Enter()
   Me.q1.Dropdown
End Sub</pre>
</blockquote>
<p>(This example assumes q1 is the name of your combo box.)</p>
<ol>
<li>Close the Visual Basic window (big red X, top right corner)</li>
<li>Close the still open properties box</li>
<li> Open your form in Form View and test it out.</li>
</ol>
<h3>Method 2: Apply the setting to multiple combo boxes, all at once</h3>
<p>This method is useful if you want to apply the setting to many combo boxes at once. Also, because the code is in what&#8217;s called a &#8220;global module,&#8221; you can use it with combo boxes on many different forms. (&#8220;Global&#8221; means the code can be referred to from any form in your database.) This is more efficient and results in less code filling up your database.</p>
<ol>
<li>In the Access database window, click on <strong>Modules</strong>. (If the database window isn&#8217;t showing, it&#8217;s probably hiding behind an open form. Close or minimize your form, or hit <strong>F11</strong> to pull it up.)</li>
<li> Click <strong>New</strong>. This opens the Visual Basic window.</li>
<li> Type the following:</li>
</ol>
<blockquote>
<pre>Function DropdownCombo()
On Error Resume Next
   Screen.ActiveControl.Dropdown
End Function</pre>
</blockquote>
<ol>
<li>Click <strong>Save</strong>, give the module a name (e.g., modDropdown), and click <strong>OK</strong></li>
<li>Close the Visual Basic window (big red <strong>X</strong>, top right corner)</li>
<li> In the Access database window, click on <strong>Forms</strong></li>
<li> Select your form</li>
<li> Click <strong>Design</strong></li>
<li> Click the combo box or combo boxes to which you&#8217;d like to apply the drop down feature. (To select multiple combo boxes, hold down <strong>SHIFT </strong>while clicking them. This allows you to create a &#8220;Multiple Selection.&#8221;)</li>
<li> Once you&#8217;ve selected them, hover your mouse over any one of them until you see the flat hand</li>
<li> Right click, choose <strong>Properties</strong></li>
<li> Click on the <strong>Event</strong> tab</li>
<li> On the <strong>On Enter line</strong>, type this: =DropdownCombo()</li>
<li> Close the Properties box</li>
<li> Open the form in Form View to test it out.</li>
</ol>
<p><h3>Downloads</h3>
<table style="border: 1px solid #CCC;" cellpadding="3" width="100%">
  <tr>
    <td width="35">
      <img src="http://www.researchtutorials.com/wp-content/plugins/downloads-manager/img/icons/default.gif" alt="http://www.researchtutorials.com/wp-content/plugins/downloads-manager/img/icons/default.gif">
    </td>
    <td>
      <b>Download:</b> <a href="http://www.researchtutorials.com/?file_id=6" >Dropdown Combo Box Example (Access 2003)</a> <small>(792KB)</small><br />
      <b>Added:</b> 28/07/2009 <br />
      <b>Tutorial:</b> Make Access combo boxes drop down automatically
http://www.researchtutorials.com/data-management/make-access-combo-boxes-drop-down-automatically/ <br />
    </td>
  </tr>
</table></p>
<a href="http://www.addtoany.com/add_to/hotmail?linkurl=http%3A%2F%2Fwww.researchtutorials.com%2Fdata-management%2Fmake-access-combo-boxes-drop-down-automatically%2F&amp;linkname=Make%20Access%20combo%20boxes%20drop%20down%20automatically"  title="Hotmail" rel="nofollow" target="_blank"><img src="http://www.researchtutorials.com/wp-content/plugins/add-to-any/icons/live.png" width="16" height="16" alt="Hotmail"/></a> <a href="http://www.addtoany.com/add_to/yahoo_mail?linkurl=http%3A%2F%2Fwww.researchtutorials.com%2Fdata-management%2Fmake-access-combo-boxes-drop-down-automatically%2F&amp;linkname=Make%20Access%20combo%20boxes%20drop%20down%20automatically"  title="Yahoo Mail" rel="nofollow" target="_blank"><img src="http://www.researchtutorials.com/wp-content/plugins/add-to-any/icons/yahoo.png" width="16" height="16" alt="Yahoo Mail"/></a> <a href="http://www.addtoany.com/add_to/evernote?linkurl=http%3A%2F%2Fwww.researchtutorials.com%2Fdata-management%2Fmake-access-combo-boxes-drop-down-automatically%2F&amp;linkname=Make%20Access%20combo%20boxes%20drop%20down%20automatically"  title="Evernote" rel="nofollow" target="_blank"><img src="http://www.researchtutorials.com/wp-content/plugins/add-to-any/icons/evernote.png" width="16" height="16" alt="Evernote"/></a> <a href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fwww.researchtutorials.com%2Fdata-management%2Fmake-access-combo-boxes-drop-down-automatically%2F&amp;linkname=Make%20Access%20combo%20boxes%20drop%20down%20automatically"  title="Delicious" rel="nofollow" target="_blank"><img src="http://www.researchtutorials.com/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fwww.researchtutorials.com%2Fdata-management%2Fmake-access-combo-boxes-drop-down-automatically%2F&amp;linkname=Make%20Access%20combo%20boxes%20drop%20down%20automatically"  title="Digg" rel="nofollow" target="_blank"><img src="http://www.researchtutorials.com/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a target="_blank" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.researchtutorials.com%2Fdata-management%2Fmake-access-combo-boxes-drop-down-automatically%2F&amp;linkname=Make%20Access%20combo%20boxes%20drop%20down%20automatically" class="a2a_dd addtoany_share_save" ><img src="http://www.researchtutorials.com/wp-content/plugins/add-to-any/favicon.png" width="16" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.researchtutorials.com/data-management/make-access-combo-boxes-drop-down-automatically/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Create a Survey Database in Access: Part I</title>
		<link>http://www.researchtutorials.com/data-management/create-a-survey-database-in-access-part-i/</link>
		<comments>http://www.researchtutorials.com/data-management/create-a-survey-database-in-access-part-i/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 14:46:57 +0000</pubDate>
		<dc:creator>Kurt</dc:creator>
				<category><![CDATA[Data Management]]></category>
		<category><![CDATA[access 2003]]></category>
		<category><![CDATA[questionnaire]]></category>
		<category><![CDATA[survey]]></category>

		<guid isPermaLink="false">http://www.researchtutorials.com/wptestsite/?p=128</guid>
		<description><![CDATA[Microsoft Access is an excellent tool to assist with data entry for a survey project. With Access, you can create a simple data entry interface that not only looks like your survey, but also includes features to reduce data entry errors and still make the process go fast. This is part one of a two part tutorial spanning 16 videos which walks you through every step involved in creating a typical database for storing survey or questionnaire data.]]></description>
			<content:encoded><![CDATA[<p>Microsoft Access is an excellent tool to assist with data entry for a survey project. With Access, you can create a simple data entry interface that not only looks like your survey, but also includes features to reduce data entry errors and still make the process go fast. This is a two part tutorial spanning 16 videos which walks through every step involved in creating a typical database for storing survey or questionnaire data.</p>
<p><a href="http://www.researchtutorials.com/wp-content/uploads/2009/07/surveycustomer1.jpg"  rel="shadowbox[post-128];player=img;"><img class="alignright size-medium wp-image-314" title="surveycustomer" src="http://www.researchtutorials.com/wp-content/uploads/2009/07/surveycustomer1-300x245.jpg" alt="surveycustomer" width="300" height="245" /></a>Many people enter survey data (or data from chart reviews) directly into Excel or SPSS, or worse: directly into an Access table instead of an Access form. This is spreadsheet doom! Entering data directly into a spreadsheet is fraught with problems: it yields higher rates of data entry errors and data anomalies, many of which you won&#8217;t uncover until you start to analyze the data and find yourself wondering why Larry Smith&#8217;s survey was entered twice; why some zip codes have 3 digits and some have letters; and why the female gender has been entered four different ways: &#8220;Female&#8221;, &#8220;F&#8221;, &#8220;girl&#8221;, and &#8220;Beyonce.&#8221; It&#8217;s also very confusing to have to figure out how someone who answered, &#8220;No, I didn&#8217;t attend the orientation&#8221; was somehow able to answer in great detail a follow-up question about what they liked most about the orientation &#8211; the orientation that they supposedly didn&#8217;t attend.</p>
<p>These errors will add to your project hours of tedious data cleaning and investigating. If you&#8217;re doing both the data entry and data analysis, you have only yourself to blame. But if someone else is doing the analysis, don&#8217;t be surprised if they stop responding to your emails when you ask for their help on another project. Save yourself the headaches by making a great Access database from the start.</p>
<p>I&#8217;ve split this tutorial into two parts:</p>
<ul>
<li> Part I (which you&#8217;re reading now) introduces you to the sample survey project, the Access environment, and shows you how to set up your tables in Access. (6 videos)</li>
<li> Part II shows you how to build the data entry form, which is based on the tables you built earlier. (10 videos)</li>
</ul>
<h2>Video 1: A Quick Look at the Database you&#8217;ll Build</h2>
<p><a href="http://www.researchtutorials.com/data-management/create-a-survey-database-in-access-part-i/" ><em>Click here to view the embedded video.</em></a></p>
<h2>Video 2: A Quick Look at the Sample Survey</h2>
<p><a href="http://www.researchtutorials.com/data-management/create-a-survey-database-in-access-part-i/" ><em>Click here to view the embedded video.</em></a></p>
<h2>Video 3: Turn Your Survey into a Codebook (the Blueprint for your Database)</h2>
<p><a href="http://www.researchtutorials.com/data-management/create-a-survey-database-in-access-part-i/" ><em>Click here to view the embedded video.</em></a></p>
<h2>Video 4: Opening Access and Getting Started</h2>
<p><a href="http://www.researchtutorials.com/data-management/create-a-survey-database-in-access-part-i/" ><em>Click here to view the embedded video.</em></a></p>
<h2>Video 5: Create a &#8220;Lookup Table&#8221; to Store the Answer Choices</h2>
<p>The method I teach here for setting up your tables differs from the method most database experts would recommend. My approach is very simplified, and requires you to build only two tables: one table to store all of the answer options to your multiple choice questions (e.g., &#8220;Yes,&#8221; &#8220;No,&#8221; &#8220;Strongly Disagree,&#8221; &#8220;Disagree,&#8221; etc.) and one table to store the actual responses you collect from people who filled out your surveys. (An even more simplified version would involve only one table that holds everything.)</p>
<p>There are pros and cons to this simplified approach:</p>
<h3>CONS</h3>
<p>It will be difficult to use Access&#8217;s built-in query and report features to calculate and show summary statistics of your data (e.g., frequencies and percentages to show how everyone answered each question.) This is because your data &#8211; when structured in the way I teach in this tutorial &#8211; will not be fully &#8220;normalized.&#8221; Creating a non-normal structure means that you&#8217;re cramming into one or two tables many different categories of data: data about your survey questions (their wording, their numbering, etc.); data about answer choices on your survey (Yes/No, Strongly Disagree &#8230; Strongly Agree, etc.); data about your respondents (name, sex, race, etc.); and data on the actual responses people gave to each question (e.g., how many people answer &#8220;Yes&#8221; to question 7, etc.). A fully normalized survey database would put each of these categories of data into its own table, like so:</p>
<ul>
<li>tblQuestions: stores information about the survey questions (with fields like QuestionID, QuestionNumber, QuestionText, etc.)</li>
<li> tblAnswerChoices: stores information about the response options for each multiple choice question (with fields like QuestionID, Choice [e.g., "Yes," "No," "Strongly Agree," "Agree," etc..)</li>
<li> tblRespondents: stores information on the respondents (with fields like RespondentID, LastName, Sex, Race, etc.)</li>
<li> tblResponses: stores the actual responses you collect (with fields like ResponseID, QuestionID, ResponseID, Response, etc.)</li>
</ul>
<p>These four tables would then be connected to each other, like so:</p>
<p><a href="http://www.researchtutorials.com/wp-content/uploads/2009/07/Relationships.jpg"  rel="shadowbox[post-128];player=img;"><img class="alignnone size-full wp-image-266" title="Relationships" src="http://www.researchtutorials.com/wp-content/uploads/2009/07/Relationships.jpg" alt="Relationships" width="450" height="290" /></a></p>
<p>Each of these tables is called - in database speak - a "relation," which is why Access is a type of "relational database" management system. In a normalized database, each table contains only data on a single topic (one table for data about survey questions; one table for data about respondents, etc.). The tables are then linked to each other on a common field or "key" to form relationships. Take a look at tblQuestions and tblResponses. See the line connecting them? Notice it has a "1" next to tblQuestions and an infinity sign next to tblResponses. This tells us that there is a "one-to-many relationship" between these two tables, such that "one" question can have "many" responses.</p>
<p>When each category of data is stored in its own table, it's much easier to create Access queries to calculate statistics about each category of data. Or you can combine queries to get statistics about multiple categories of data, like a report that shows how males vs. females (data from tblRespondents) answered (data from tblResponses) each question (data from tblResponses). Normalization is a big concept and entire books are dedicated to it. For a quick but excellent overview of normalization and relational database concepts, check out <a target="_blank" href="http://pubs.logicalexpressions.com/Pub0009/LPMArticle.asp?ID=88" >Databases: Normalizing Access Data</a> and <a target="_blank" href="http://pubs.logicalexpressions.com/pub0009/LPMArticle.asp?ID=73" >Databases: Access Terminology and Relational Database Concepts</a>.</p>
<p>Another downside to this simplified approach is that you can't reuse your survey database to manage other (different) surveys you might collect data on in the future. In a normalized survey database, the characteristics of the survey are not hard coded into the table or forms.</p>
<p>It's the difference between this non-normal structure ...</p>
<p><a href="http://www.researchtutorials.com/wp-content/uploads/2009/07/nonnormaltable.jpg"  rel="shadowbox[post-128];player=img;"><img class="alignnone size-full wp-image-262" title="nonnormaltable" src="http://www.researchtutorials.com/wp-content/uploads/2009/07/nonnormaltable.jpg" alt="nonnormaltable" width="408" height="186" /></a></p>
<p>... and this normalized one:</p>
<p><a href="http://www.researchtutorials.com/wp-content/uploads/2009/07/normaltabledata.jpg"  rel="shadowbox[post-128];player=img;"><img class="alignnone size-full wp-image-265" title="normaltabledata" src="http://www.researchtutorials.com/wp-content/uploads/2009/07/normaltabledata.jpg" alt="normaltabledata" width="540" height="197" /></a></p>
<p>When we view the normalized table in Datasheet view, we see this is where the characteristics of the survey have been specified. That's right! The features of the survey are entered in rows, as real, dynamic data:</p>
<p>When you're done with the survey project, you can easily delete the data and keep the table structures (and probably the forms) intact for use with another survey. (Or, add a 5th table to the relationships picture earlier - a table called tblSurveys (with fields like SurveyID, SurveyName, SurveyAuthor) - and link it (one-to-many) to tblQuestions (add a new field in tblQuestions called SurveyID). Vaoila! You have a single Access database you can use to manage all of your survey projects.</p>
<p>So with all the advantages you get from a normalized structure, why would I recommend a non-normal, simplified approach?</p>
<h3>PROS</h3>
<p>Statistical programs (like SPSS, SAS, etc.) hate normalized data. If you plan to export your data to a statistical program for analysis, you'll have to spend a lot of time converting your normalized data (which, for one, is spread across four tables) into a non-normal structure, like a single flat file. Look at the picture above (the one in Datasheet view). If you export that to SPSS, it will give you a dataset with variables called QuestionID, QuestionNumber, etc., and cases containing data about the survey questions. Um ... that's not what you want. Instead you need a dataset with variables (i.e., columns) like q1, q2, q3, and so on, with cases that represent each respondent's answers to the survey. In a normalized Access database, your variables are stored as live data, in rows; in SPSS, your variables are hard coded, one per column, and their properties are stored in the Variable view window. With a normalized structure, not only will you need to merge the four different tables into one, but you will also need to somehow transpose the columns and rows so that you end up with something SPSS can make sense of. Ugh.</p>
<p>Another advantage of my simplified approach is that it gives you great flexibility when creating the data entry form(s), also called the graphical user interface (or GUI, pronounced "gooey"). The closer the GUI looks like the original survey, the faster (and more error-free) the data entry will go. In the GUI of a normalized survey database, you most likely have to present the survey questions as one long, single column, continuous list. Have fun with all that vertical scrolling. You won't have much flexibility with making an eye-pleasing, multi-column, multi-tab, bells-and-whistles GUI like the one you'll learn in Part II of this tutorial.</p>
<p>Again, it's the difference between a GUI based on a non-normalized table structure:</p>
<p><a href="http://www.researchtutorials.com/wp-content/uploads/2009/07/nonnormalgui2.jpg"  rel="shadowbox[post-128];player=img;"><img class="alignnone size-full wp-image-261" title="nonnormalgui2" src="http://www.researchtutorials.com/wp-content/uploads/2009/07/nonnormalgui2.jpg" alt="nonnormalgui2" width="520" height="508" /></a></p>
<p>... and a GUI based on a normalized one (this one is from a different project):</p>
<p><a href="http://www.researchtutorials.com/wp-content/uploads/2009/07/normalgui.jpg"  rel="shadowbox[post-128];player=img;"><img class="alignnone size-full wp-image-263" title="normalgui" src="http://www.researchtutorials.com/wp-content/uploads/2009/07/normalgui.jpg" alt="normalgui" width="520" height="401" /></a></p>
<p>Both GUIs "work," but with the first one I was able to take more liberties with the design and implement better validation rules.</p>
<p>A final advantage of the simplified approach is that it's easier to add to your form custom validation rules, automatic skip pattern logic, and so on. Creating conditional codes on a normalized GUI form like above is tricky. (e.g., 'If user selects "Other" for Question1, enable Question1_specify; otherwise, disable Question1_specify and jump to Question 2.). On either type of form, you have to write code to add such rules, but it's much easier to do this in a GUI based on a non-normalized structure.</p>
<p>So the choice of whether to normalize or not is up to you. As you can see, it depends on your needs, the project, and, most importantly, whether you plan to analyze you data in Access or a statistical program. I've built lots of survey databases and have always found the non-normalized approach much better suited to my needs. Of course, this doesn't stop the Access purists from shaking their fists at me.</p>
<p>Now back to the videos!</p>
<h2>Video 5: Create a "Lookup Table" to Store the Answer Choices</h2>
<p><a href="http://www.researchtutorials.com/data-management/create-a-survey-database-in-access-part-i/" ><em>Click here to view the embedded video.</em></a></p>
<h2>Video 6: Create a Table to Store the Survey Questions and the Data you Collect</h2>
<p><a href="http://www.researchtutorials.com/data-management/create-a-survey-database-in-access-part-i/" ><em>Click here to view the embedded video.</em></a></p>
<p>Once the tables are done, you&#8217;re ready to build your form. So when you&#8217;re ready, check out <a href="http://www.researchtutorials.com/data-management/create-a-survey-database-in-access-part-ii/" title="Create a Survey Database in Access: Part II" >Create a Survey Database in Access: Part II</a>.</p>
<a href="http://www.addtoany.com/add_to/hotmail?linkurl=http%3A%2F%2Fwww.researchtutorials.com%2Fdata-management%2Fcreate-a-survey-database-in-access-part-i%2F&amp;linkname=Create%20a%20Survey%20Database%20in%20Access%3A%20Part%20I"  title="Hotmail" rel="nofollow" target="_blank"><img src="http://www.researchtutorials.com/wp-content/plugins/add-to-any/icons/live.png" width="16" height="16" alt="Hotmail"/></a> <a href="http://www.addtoany.com/add_to/yahoo_mail?linkurl=http%3A%2F%2Fwww.researchtutorials.com%2Fdata-management%2Fcreate-a-survey-database-in-access-part-i%2F&amp;linkname=Create%20a%20Survey%20Database%20in%20Access%3A%20Part%20I"  title="Yahoo Mail" rel="nofollow" target="_blank"><img src="http://www.researchtutorials.com/wp-content/plugins/add-to-any/icons/yahoo.png" width="16" height="16" alt="Yahoo Mail"/></a> <a href="http://www.addtoany.com/add_to/evernote?linkurl=http%3A%2F%2Fwww.researchtutorials.com%2Fdata-management%2Fcreate-a-survey-database-in-access-part-i%2F&amp;linkname=Create%20a%20Survey%20Database%20in%20Access%3A%20Part%20I"  title="Evernote" rel="nofollow" target="_blank"><img src="http://www.researchtutorials.com/wp-content/plugins/add-to-any/icons/evernote.png" width="16" height="16" alt="Evernote"/></a> <a href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fwww.researchtutorials.com%2Fdata-management%2Fcreate-a-survey-database-in-access-part-i%2F&amp;linkname=Create%20a%20Survey%20Database%20in%20Access%3A%20Part%20I"  title="Delicious" rel="nofollow" target="_blank"><img src="http://www.researchtutorials.com/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fwww.researchtutorials.com%2Fdata-management%2Fcreate-a-survey-database-in-access-part-i%2F&amp;linkname=Create%20a%20Survey%20Database%20in%20Access%3A%20Part%20I"  title="Digg" rel="nofollow" target="_blank"><img src="http://www.researchtutorials.com/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a target="_blank" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.researchtutorials.com%2Fdata-management%2Fcreate-a-survey-database-in-access-part-i%2F&amp;linkname=Create%20a%20Survey%20Database%20in%20Access%3A%20Part%20I" class="a2a_dd addtoany_share_save" ><img src="http://www.researchtutorials.com/wp-content/plugins/add-to-any/favicon.png" width="16" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.researchtutorials.com/data-management/create-a-survey-database-in-access-part-i/feed/</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
		<item>
		<title>Create a Survey Database in Access: Part II</title>
		<link>http://www.researchtutorials.com/data-management/create-a-survey-database-in-access-part-ii/</link>
		<comments>http://www.researchtutorials.com/data-management/create-a-survey-database-in-access-part-ii/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 14:46:18 +0000</pubDate>
		<dc:creator>Kurt</dc:creator>
				<category><![CDATA[Data Management]]></category>
		<category><![CDATA[access 2003]]></category>
		<category><![CDATA[questionnaire]]></category>
		<category><![CDATA[survey]]></category>

		<guid isPermaLink="false">http://www.researchtutorials.com/wptestsite/?p=125</guid>
		<description><![CDATA[This is Part II of a two-part tutorial on how to create a survey database in Access. Part I introduced the sample project, survey, and how to set up the tables. Part II picks up where Part I left off, and walks you through how to set up your data entry form.]]></description>
			<content:encoded><![CDATA[<p>This is Part II of a two-part tutorial on how to create a survey database in Access. <a href="http://www.researchtutorials.com/data-management/create-a-survey-database-in-access-part-i/" title="Create a Survey Database in Access: Part I" >Part I</a> introduced the sample project, survey, and how to set up the tables. Part II picks up where Part I left off, and walks you through how to set up your data entry form.</p>
<h2>Video 1: Starting a new form; Design View; dragging and dropping fields onto your form; &#8220;labels&#8221; vs &#8220;controls&#8221;; moving controls and labels; deleting, editing, and adding labels; the &#8220;Toolbox&#8221;</h2>
<p><a href="http://www.researchtutorials.com/data-management/create-a-survey-database-in-access-part-ii/" ><em>Click here to view the embedded video.</em></a></p>
<h2>Video 2: Form View; hiding the default record selector, dividing line, and scroll bars; saving and naming form</h2>
<p><a href="http://www.researchtutorials.com/data-management/create-a-survey-database-in-access-part-ii/" ><em>Click here to view the embedded video.</em></a></p>
<h2>Video 3: Adding more fields to the form; copying and pasting labels; using form grid to maintain a consistent layout</h2>
<p><a href="http://www.researchtutorials.com/data-management/create-a-survey-database-in-access-part-ii/" ><em>Click here to view the embedded video.</em></a></p>
<h2>Video 4: Changing font; resizing controls &amp; labels; grouping and deselecting controls; moving a group of controls closer to their labels by lengthening and resizing</h2>
<p><a href="http://www.researchtutorials.com/data-management/create-a-survey-database-in-access-part-ii/" ><em>Click here to view the embedded video.</em></a></p>
<h2>Video 5: Updating your form and field list after making changes (e.g., properties, new fields, etc.) to the underlying table</h2>
<p><a href="http://www.researchtutorials.com/data-management/create-a-survey-database-in-access-part-ii/" ><em>Click here to view the embedded video.</em></a></p>
<h2>Video 6: Adding some more labels; adding a hard return (CTRL+ENTER) inside a label so it goes on two lines; shrink excess form space</h2>
<p><a href="http://www.researchtutorials.com/data-management/create-a-survey-database-in-access-part-ii/" ><em>Click here to view the embedded video.</em></a></p>
<h2>Video 7: Changing text alignment; changing width of drop down list; ensuring your data entry boxes are mapped to the correct field</h2>
<p><a href="http://www.researchtutorials.com/data-management/create-a-survey-database-in-access-part-ii/" ><em>Click here to view the embedded video.</em></a></p>
<h2>Video 8: Add a soft gray line; changing the tab order</h2>
<p><a href="http://www.researchtutorials.com/data-management/create-a-survey-database-in-access-part-ii/" ><em>Click here to view the embedded video.</em></a></p>
<h2>Video 9: Add a &#8220;Delete Record&#8221; button; brief view of Visual Basic, Access&#8217; programming language</h2>
<p><a href="http://www.researchtutorials.com/data-management/create-a-survey-database-in-access-part-ii/" ><em>Click here to view the embedded video.</em></a></p>
<h2>Video 10: Create rectangles, background colors, and section headings; Access&#8217; weird ampersand (&amp;) issue; changing the order of items in a drop down (i.e., combo) box; show more than 8 items in a drop down list</h2>
<p><a href="http://www.researchtutorials.com/data-management/create-a-survey-database-in-access-part-ii/" ><em>Click here to view the embedded video.</em></a></p>
<a href="http://www.addtoany.com/add_to/hotmail?linkurl=http%3A%2F%2Fwww.researchtutorials.com%2Fdata-management%2Fcreate-a-survey-database-in-access-part-ii%2F&amp;linkname=Create%20a%20Survey%20Database%20in%20Access%3A%20Part%20II"  title="Hotmail" rel="nofollow" target="_blank"><img src="http://www.researchtutorials.com/wp-content/plugins/add-to-any/icons/live.png" width="16" height="16" alt="Hotmail"/></a> <a href="http://www.addtoany.com/add_to/yahoo_mail?linkurl=http%3A%2F%2Fwww.researchtutorials.com%2Fdata-management%2Fcreate-a-survey-database-in-access-part-ii%2F&amp;linkname=Create%20a%20Survey%20Database%20in%20Access%3A%20Part%20II"  title="Yahoo Mail" rel="nofollow" target="_blank"><img src="http://www.researchtutorials.com/wp-content/plugins/add-to-any/icons/yahoo.png" width="16" height="16" alt="Yahoo Mail"/></a> <a href="http://www.addtoany.com/add_to/evernote?linkurl=http%3A%2F%2Fwww.researchtutorials.com%2Fdata-management%2Fcreate-a-survey-database-in-access-part-ii%2F&amp;linkname=Create%20a%20Survey%20Database%20in%20Access%3A%20Part%20II"  title="Evernote" rel="nofollow" target="_blank"><img src="http://www.researchtutorials.com/wp-content/plugins/add-to-any/icons/evernote.png" width="16" height="16" alt="Evernote"/></a> <a href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fwww.researchtutorials.com%2Fdata-management%2Fcreate-a-survey-database-in-access-part-ii%2F&amp;linkname=Create%20a%20Survey%20Database%20in%20Access%3A%20Part%20II"  title="Delicious" rel="nofollow" target="_blank"><img src="http://www.researchtutorials.com/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fwww.researchtutorials.com%2Fdata-management%2Fcreate-a-survey-database-in-access-part-ii%2F&amp;linkname=Create%20a%20Survey%20Database%20in%20Access%3A%20Part%20II"  title="Digg" rel="nofollow" target="_blank"><img src="http://www.researchtutorials.com/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a target="_blank" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.researchtutorials.com%2Fdata-management%2Fcreate-a-survey-database-in-access-part-ii%2F&amp;linkname=Create%20a%20Survey%20Database%20in%20Access%3A%20Part%20II" class="a2a_dd addtoany_share_save" ><img src="http://www.researchtutorials.com/wp-content/plugins/add-to-any/favicon.png" width="16" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.researchtutorials.com/data-management/create-a-survey-database-in-access-part-ii/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>Send Emails and Attachments from Access</title>
		<link>http://www.researchtutorials.com/data-management/send-emails-and-attachments-from-access/</link>
		<comments>http://www.researchtutorials.com/data-management/send-emails-and-attachments-from-access/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 01:36:14 +0000</pubDate>
		<dc:creator>Kurt</dc:creator>
				<category><![CDATA[Data Management]]></category>
		<category><![CDATA[access 2003]]></category>

		<guid isPermaLink="false">http://www.researchtutorials.com/wptestsite/?p=74</guid>
		<description><![CDATA[If you have an Access database with a list of contacts and emails, watch this tutorial to learn how to add a form so you can email them and (optionally) include an attachment.]]></description>
			<content:encoded><![CDATA[<p>If you have an Access database with a list of contacts and emails, watch this tutorial to learn how to add a form so you can email them and (optionally) include an attachment.</p>
<p><a href="http://www.researchtutorials.com/data-management/send-emails-and-attachments-from-access/" ><em>Click here to view the embedded video.</em></a></p>
<h3>Resources Mentioned in this Tutorial</h3>
<p><a target="_blank" href="http://www.datastrat.com" >www.datastrat.com</a></p>
<h3>Code you can Copy and Paste</h3>
<p>In the tutorial, I made some changes to the original e-mail form. If you want to make these same changes, here is the code in case you want to copy and paste it (in place of the corresponding code in your form). The changes I made are highlighted in red.</p>
<blockquote>
<pre>Private Sub cmdEmail_Click()
On Error GoTo Err_cmdEmail_Click

   Dim strDocName As String
   Dim strEmail As String
   Dim strMailSubject As String
   Dim strMsg As String

   <span style="color: #ff0000;">'strDocName = Me.lstRpt</span>
   strEmail = Me.txtSelected &amp; vbNullString
   strMailSubject = Me.txtMailSubject &amp; vbNullString
   strMsg = Me.txtMsg &amp; vbNullString &amp; vbCrLf &amp; vbCrLf &amp; "Your Name" &amp; _
      vbCrLf &amp; MailTo: youremail@nowhere.com

   <span style="color: #ff0000;">If IsNull(Me.lstRpt) Then
      DoCmd.SendObject To:=strEmail, Subject:=strMailSubject, _
         MessageText:=strMsg
   Else</span>
      DoCmd.SendObject objecttype:=acSendReport, _
         ObjectName:=<span style="color: #ff0000;">Me.lstRpt</span>, outputformat:=acFormatHTML, _
         To:=strEmail, Subject:=strMailSubject, MessageText:=strMsg
   <span style="color: #ff0000;">End If</span>

   Exit_cmdEmail_Click:
      Exit Sub

   Err_cmdEmail_Click:
     <span style="color: #ff0000;"> Select Case Err.Number
      Case 2501
         Resume Next
         Resume Exit_cmdEmail_Click
      Case Else</span>
         MsgBox Err.Description
         Resume Exit_cmdEmail_Click
     <span style="color: #ff0000;">End Select</span>

End Sub</pre>
</blockquote>
<a href="http://www.addtoany.com/add_to/hotmail?linkurl=http%3A%2F%2Fwww.researchtutorials.com%2Fdata-management%2Fsend-emails-and-attachments-from-access%2F&amp;linkname=Send%20Emails%20and%20Attachments%20from%20Access"  title="Hotmail" rel="nofollow" target="_blank"><img src="http://www.researchtutorials.com/wp-content/plugins/add-to-any/icons/live.png" width="16" height="16" alt="Hotmail"/></a> <a href="http://www.addtoany.com/add_to/yahoo_mail?linkurl=http%3A%2F%2Fwww.researchtutorials.com%2Fdata-management%2Fsend-emails-and-attachments-from-access%2F&amp;linkname=Send%20Emails%20and%20Attachments%20from%20Access"  title="Yahoo Mail" rel="nofollow" target="_blank"><img src="http://www.researchtutorials.com/wp-content/plugins/add-to-any/icons/yahoo.png" width="16" height="16" alt="Yahoo Mail"/></a> <a href="http://www.addtoany.com/add_to/evernote?linkurl=http%3A%2F%2Fwww.researchtutorials.com%2Fdata-management%2Fsend-emails-and-attachments-from-access%2F&amp;linkname=Send%20Emails%20and%20Attachments%20from%20Access"  title="Evernote" rel="nofollow" target="_blank"><img src="http://www.researchtutorials.com/wp-content/plugins/add-to-any/icons/evernote.png" width="16" height="16" alt="Evernote"/></a> <a href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fwww.researchtutorials.com%2Fdata-management%2Fsend-emails-and-attachments-from-access%2F&amp;linkname=Send%20Emails%20and%20Attachments%20from%20Access"  title="Delicious" rel="nofollow" target="_blank"><img src="http://www.researchtutorials.com/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fwww.researchtutorials.com%2Fdata-management%2Fsend-emails-and-attachments-from-access%2F&amp;linkname=Send%20Emails%20and%20Attachments%20from%20Access"  title="Digg" rel="nofollow" target="_blank"><img src="http://www.researchtutorials.com/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a target="_blank" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.researchtutorials.com%2Fdata-management%2Fsend-emails-and-attachments-from-access%2F&amp;linkname=Send%20Emails%20and%20Attachments%20from%20Access" class="a2a_dd addtoany_share_save" ><img src="http://www.researchtutorials.com/wp-content/plugins/add-to-any/favicon.png" width="16" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.researchtutorials.com/data-management/send-emails-and-attachments-from-access/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Export Data from a Word Form to Excel</title>
		<link>http://www.researchtutorials.com/data-management/export-data-from-a-word-form-to-excel/</link>
		<comments>http://www.researchtutorials.com/data-management/export-data-from-a-word-form-to-excel/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 01:23:26 +0000</pubDate>
		<dc:creator>Kurt</dc:creator>
				<category><![CDATA[Data Management]]></category>
		<category><![CDATA[excel 2003]]></category>
		<category><![CDATA[export data]]></category>
		<category><![CDATA[word 2003]]></category>
		<category><![CDATA[word form]]></category>

		<guid isPermaLink="false">http://www.researchtutorials.com/wptestsite/?p=72</guid>
		<description><![CDATA[Do you have some completed Word forms and need to export the data to an Excel spreadsheet? Here&#8217;s how!
     ]]></description>
			<content:encoded><![CDATA[<p>Do you have some completed Word forms and need to export the data to an Excel spreadsheet? Here&#8217;s how!<span id="more-72"></span></p>
<p><a href="http://www.researchtutorials.com/data-management/export-data-from-a-word-form-to-excel/" ><em>Click here to view the embedded video.</em></a></p>
<a href="http://www.addtoany.com/add_to/hotmail?linkurl=http%3A%2F%2Fwww.researchtutorials.com%2Fdata-management%2Fexport-data-from-a-word-form-to-excel%2F&amp;linkname=Export%20Data%20from%20a%20Word%20Form%20to%20Excel"  title="Hotmail" rel="nofollow" target="_blank"><img src="http://www.researchtutorials.com/wp-content/plugins/add-to-any/icons/live.png" width="16" height="16" alt="Hotmail"/></a> <a href="http://www.addtoany.com/add_to/yahoo_mail?linkurl=http%3A%2F%2Fwww.researchtutorials.com%2Fdata-management%2Fexport-data-from-a-word-form-to-excel%2F&amp;linkname=Export%20Data%20from%20a%20Word%20Form%20to%20Excel"  title="Yahoo Mail" rel="nofollow" target="_blank"><img src="http://www.researchtutorials.com/wp-content/plugins/add-to-any/icons/yahoo.png" width="16" height="16" alt="Yahoo Mail"/></a> <a href="http://www.addtoany.com/add_to/evernote?linkurl=http%3A%2F%2Fwww.researchtutorials.com%2Fdata-management%2Fexport-data-from-a-word-form-to-excel%2F&amp;linkname=Export%20Data%20from%20a%20Word%20Form%20to%20Excel"  title="Evernote" rel="nofollow" target="_blank"><img src="http://www.researchtutorials.com/wp-content/plugins/add-to-any/icons/evernote.png" width="16" height="16" alt="Evernote"/></a> <a href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fwww.researchtutorials.com%2Fdata-management%2Fexport-data-from-a-word-form-to-excel%2F&amp;linkname=Export%20Data%20from%20a%20Word%20Form%20to%20Excel"  title="Delicious" rel="nofollow" target="_blank"><img src="http://www.researchtutorials.com/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fwww.researchtutorials.com%2Fdata-management%2Fexport-data-from-a-word-form-to-excel%2F&amp;linkname=Export%20Data%20from%20a%20Word%20Form%20to%20Excel"  title="Digg" rel="nofollow" target="_blank"><img src="http://www.researchtutorials.com/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a target="_blank" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.researchtutorials.com%2Fdata-management%2Fexport-data-from-a-word-form-to-excel%2F&amp;linkname=Export%20Data%20from%20a%20Word%20Form%20to%20Excel" class="a2a_dd addtoany_share_save" ><img src="http://www.researchtutorials.com/wp-content/plugins/add-to-any/favicon.png" width="16" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.researchtutorials.com/data-management/export-data-from-a-word-form-to-excel/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Make a Fillable Form in Word</title>
		<link>http://www.researchtutorials.com/data-collection/make-a-fillable-form-in-word/</link>
		<comments>http://www.researchtutorials.com/data-collection/make-a-fillable-form-in-word/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 01:17:22 +0000</pubDate>
		<dc:creator>Kurt</dc:creator>
				<category><![CDATA[Data Collection]]></category>
		<category><![CDATA[fillable form]]></category>
		<category><![CDATA[word 2003]]></category>

		<guid isPermaLink="false">http://www.researchtutorials.com/wptestsite/?p=59</guid>
		<description><![CDATA[Why bother faxing or mailing something back and forth when you can create the same form in Word so that it can be filled out on the computer, saved, and sent by email?
Downloads

  
    
      
    
    
   [...]]]></description>
			<content:encoded><![CDATA[<p>Why bother faxing or mailing something back and forth when you can create the same form in Word so that it can be filled out on the computer, saved, and sent by email?<span id="more-59"></span><br />
<p><a href="http://www.researchtutorials.com/data-collection/make-a-fillable-form-in-word/" ><em>Click here to view the embedded video.</em></a></p><br />
<h3>Downloads</h3>
<table style="border: 1px solid #CCC;" cellpadding="3" width="100%">
  <tr>
    <td width="35">
      <img src="http://www.researchtutorials.com/wp-content/plugins/downloads-manager/img/icons/default.gif" alt="http://www.researchtutorials.com/wp-content/plugins/downloads-manager/img/icons/default.gif">
    </td>
    <td>
      <b>Download:</b> <a href="http://www.researchtutorials.com/?file_id=5" >Fillable Form Example (Word 2003)</a> <small>(67.5KB)</small><br />
      <b>Added:</b> 28/07/2009 <br />
      <b>Tutorial:</b> Make a fillable form in Word <br />
    </td>
  </tr>
</table></p>
<a href="http://www.addtoany.com/add_to/hotmail?linkurl=http%3A%2F%2Fwww.researchtutorials.com%2Fdata-collection%2Fmake-a-fillable-form-in-word%2F&amp;linkname=Make%20a%20Fillable%20Form%20in%20Word"  title="Hotmail" rel="nofollow" target="_blank"><img src="http://www.researchtutorials.com/wp-content/plugins/add-to-any/icons/live.png" width="16" height="16" alt="Hotmail"/></a> <a href="http://www.addtoany.com/add_to/yahoo_mail?linkurl=http%3A%2F%2Fwww.researchtutorials.com%2Fdata-collection%2Fmake-a-fillable-form-in-word%2F&amp;linkname=Make%20a%20Fillable%20Form%20in%20Word"  title="Yahoo Mail" rel="nofollow" target="_blank"><img src="http://www.researchtutorials.com/wp-content/plugins/add-to-any/icons/yahoo.png" width="16" height="16" alt="Yahoo Mail"/></a> <a href="http://www.addtoany.com/add_to/evernote?linkurl=http%3A%2F%2Fwww.researchtutorials.com%2Fdata-collection%2Fmake-a-fillable-form-in-word%2F&amp;linkname=Make%20a%20Fillable%20Form%20in%20Word"  title="Evernote" rel="nofollow" target="_blank"><img src="http://www.researchtutorials.com/wp-content/plugins/add-to-any/icons/evernote.png" width="16" height="16" alt="Evernote"/></a> <a href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fwww.researchtutorials.com%2Fdata-collection%2Fmake-a-fillable-form-in-word%2F&amp;linkname=Make%20a%20Fillable%20Form%20in%20Word"  title="Delicious" rel="nofollow" target="_blank"><img src="http://www.researchtutorials.com/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fwww.researchtutorials.com%2Fdata-collection%2Fmake-a-fillable-form-in-word%2F&amp;linkname=Make%20a%20Fillable%20Form%20in%20Word"  title="Digg" rel="nofollow" target="_blank"><img src="http://www.researchtutorials.com/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a target="_blank" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.researchtutorials.com%2Fdata-collection%2Fmake-a-fillable-form-in-word%2F&amp;linkname=Make%20a%20Fillable%20Form%20in%20Word" class="a2a_dd addtoany_share_save" ><img src="http://www.researchtutorials.com/wp-content/plugins/add-to-any/favicon.png" width="16" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.researchtutorials.com/data-collection/make-a-fillable-form-in-word/feed/</wfw:commentRss>
		<slash:comments>98</slash:comments>
		</item>
		<item>
		<title>Create a Poster for Research Day</title>
		<link>http://www.researchtutorials.com/presenting/create-a-poster-for-research-day/</link>
		<comments>http://www.researchtutorials.com/presenting/create-a-poster-for-research-day/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 00:56:48 +0000</pubDate>
		<dc:creator>Kurt</dc:creator>
				<category><![CDATA[Presenting]]></category>
		<category><![CDATA[poster]]></category>
		<category><![CDATA[powerpoint 2003]]></category>

		<guid isPermaLink="false">http://www.researchtutorials.com/wptestsite/?p=37</guid>
		<description><![CDATA[Need help putting together an academic poster for a conference or research day? Look no farther! This tutorial will walk you through every step.
Table of Contents
 Introduction &#8211; 0:00
Learning Objective &#8211; 0:30
Poster Layout &#8211; 0:50
See an Example &#8211; 3:20
Option 1: Start from Scratch &#8211; 5:18
Option 2: Use a Template &#8211; 18:21
Get Inspired &#8211; 29:52
Printing your [...]]]></description>
			<content:encoded><![CDATA[<p>Need help putting together an academic poster for a conference or research day? Look no farther! This tutorial will walk you through every step.<span id="more-37"></span></p>
<p><a href="http://www.researchtutorials.com/presenting/create-a-poster-for-research-day/" ><em>Click here to view the embedded video.</em></a></p>
<h3>Table of Contents</h3>
<ul> Introduction &#8211; 0:00<br />
Learning Objective &#8211; 0:30<br />
Poster Layout &#8211; 0:50<br />
See an Example &#8211; 3:20<br />
Option 1: Start from Scratch &#8211; 5:18<br />
Option 2: Use a Template &#8211; 18:21<br />
Get Inspired &#8211; 29:52<br />
Printing your Poster &#8211; 30:45<br />
TOTAL RUNNING TIME &#8211; 33:11</ul>
<h3>Resources Mentioned in this Tutorial</h3>
<p><a target="_blank" href="http://www.posterpresentations.com" >www.posterpresentations.com</a><br />
<a target="_blank" href="http://www.posterpresentations.com" >www.postersession.com</a><br />
<a target="_blank" href="http://www.posters4research.com" >www.posters4research.com</a></p>
<h3>Footnote</h3>
<p>This is something I didn’t cover in the video tutorial. PowerPoint doesn’t let you create a document with a width or height larger than 56 inches. So if you want to create a larger poster with any of these common dimensions (W x H) …</p>
<p style="text-align: center;"><span style="color: #333333;"><strong>72 x 48   |   96 x 48   |   60 x 36   |   72 x 36   | 96 x 36</strong></span></p>
<p>… you need to work at half size in PowerPoint. For example, if you want a 96 x 48 poster, set the width and height of your document (File &gt; Page Setup) to 48 x 24 inches.</p>
<p>When you send your PowerPoint slide to the printer, just tell them the desired dimensions of your poster (e.g., 96 x 48). At print time, they’ll know to double the size of the slide you sent!</p>
<p>Of course, if you’re using a preset template (e.g., from one of the sites I mentioned in this tutorial), they’ve already applied this half-rule to the size of your slide. To double check, just go to File &gt; Page Setup.</p>
<a href="http://www.addtoany.com/add_to/hotmail?linkurl=http%3A%2F%2Fwww.researchtutorials.com%2Fpresenting%2Fcreate-a-poster-for-research-day%2F&amp;linkname=Create%20a%20Poster%20for%20Research%20Day"  title="Hotmail" rel="nofollow" target="_blank"><img src="http://www.researchtutorials.com/wp-content/plugins/add-to-any/icons/live.png" width="16" height="16" alt="Hotmail"/></a> <a href="http://www.addtoany.com/add_to/yahoo_mail?linkurl=http%3A%2F%2Fwww.researchtutorials.com%2Fpresenting%2Fcreate-a-poster-for-research-day%2F&amp;linkname=Create%20a%20Poster%20for%20Research%20Day"  title="Yahoo Mail" rel="nofollow" target="_blank"><img src="http://www.researchtutorials.com/wp-content/plugins/add-to-any/icons/yahoo.png" width="16" height="16" alt="Yahoo Mail"/></a> <a href="http://www.addtoany.com/add_to/evernote?linkurl=http%3A%2F%2Fwww.researchtutorials.com%2Fpresenting%2Fcreate-a-poster-for-research-day%2F&amp;linkname=Create%20a%20Poster%20for%20Research%20Day"  title="Evernote" rel="nofollow" target="_blank"><img src="http://www.researchtutorials.com/wp-content/plugins/add-to-any/icons/evernote.png" width="16" height="16" alt="Evernote"/></a> <a href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fwww.researchtutorials.com%2Fpresenting%2Fcreate-a-poster-for-research-day%2F&amp;linkname=Create%20a%20Poster%20for%20Research%20Day"  title="Delicious" rel="nofollow" target="_blank"><img src="http://www.researchtutorials.com/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fwww.researchtutorials.com%2Fpresenting%2Fcreate-a-poster-for-research-day%2F&amp;linkname=Create%20a%20Poster%20for%20Research%20Day"  title="Digg" rel="nofollow" target="_blank"><img src="http://www.researchtutorials.com/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a target="_blank" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.researchtutorials.com%2Fpresenting%2Fcreate-a-poster-for-research-day%2F&amp;linkname=Create%20a%20Poster%20for%20Research%20Day" class="a2a_dd addtoany_share_save" ><img src="http://www.researchtutorials.com/wp-content/plugins/add-to-any/favicon.png" width="16" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.researchtutorials.com/presenting/create-a-poster-for-research-day/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Manage Bibliographies with EndNote</title>
		<link>http://www.researchtutorials.com/writing/manage-bibliographies-with-endnote/</link>
		<comments>http://www.researchtutorials.com/writing/manage-bibliographies-with-endnote/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 00:02:46 +0000</pubDate>
		<dc:creator>Kurt</dc:creator>
				<category><![CDATA[Writing]]></category>
		<category><![CDATA[bibliographies]]></category>
		<category><![CDATA[endnote]]></category>

		<guid isPermaLink="false">http://www.researchtutorials.com/wptestsite/?p=27</guid>
		<description><![CDATA[EndNote helps you search online bibliographic databases, create libraries of your favorite references, and automate the process of inserting in-text citations and generating bibliographies in papers, all according to the style of your choice (e.g., APA, AMA, etc.). If you spend any time writing papers and are tired of spending hours tediously formatting references to fit a certain style, check out this tutorial. Your life will never be the same ...]]></description>
			<content:encoded><![CDATA[<p>EndNote helps you search online bibliographic databases, create libraries of your favorite references, and automate the process of inserting in-text citations and generating bibliographies in papers, all according to the style of your choice (e.g., APA, AMA, etc.). If you spend any time writing papers and are tired of spending hours tediously formatting references to fit a certain style, check out this tutorial. Your life will never be the same &#8230;</p>
<p>This video is less a tutorial and more just a quick overview of what EndNote can do. I hope to get more tutorials up which go into more detail.</p>
<p><a href="http://www.researchtutorials.com/writing/manage-bibliographies-with-endnote/" ><em>Click here to view the embedded video.</em></a></p>
<p>EndNote is available at <a target="_blank" href="http://www.endnote.com" >www.endnote.com</a> . There are discounted prices for students and tax-exempt organizations.</p>
<a href="http://www.addtoany.com/add_to/hotmail?linkurl=http%3A%2F%2Fwww.researchtutorials.com%2Fwriting%2Fmanage-bibliographies-with-endnote%2F&amp;linkname=Manage%20Bibliographies%20with%20EndNote"  title="Hotmail" rel="nofollow" target="_blank"><img src="http://www.researchtutorials.com/wp-content/plugins/add-to-any/icons/live.png" width="16" height="16" alt="Hotmail"/></a> <a href="http://www.addtoany.com/add_to/yahoo_mail?linkurl=http%3A%2F%2Fwww.researchtutorials.com%2Fwriting%2Fmanage-bibliographies-with-endnote%2F&amp;linkname=Manage%20Bibliographies%20with%20EndNote"  title="Yahoo Mail" rel="nofollow" target="_blank"><img src="http://www.researchtutorials.com/wp-content/plugins/add-to-any/icons/yahoo.png" width="16" height="16" alt="Yahoo Mail"/></a> <a href="http://www.addtoany.com/add_to/evernote?linkurl=http%3A%2F%2Fwww.researchtutorials.com%2Fwriting%2Fmanage-bibliographies-with-endnote%2F&amp;linkname=Manage%20Bibliographies%20with%20EndNote"  title="Evernote" rel="nofollow" target="_blank"><img src="http://www.researchtutorials.com/wp-content/plugins/add-to-any/icons/evernote.png" width="16" height="16" alt="Evernote"/></a> <a href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fwww.researchtutorials.com%2Fwriting%2Fmanage-bibliographies-with-endnote%2F&amp;linkname=Manage%20Bibliographies%20with%20EndNote"  title="Delicious" rel="nofollow" target="_blank"><img src="http://www.researchtutorials.com/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fwww.researchtutorials.com%2Fwriting%2Fmanage-bibliographies-with-endnote%2F&amp;linkname=Manage%20Bibliographies%20with%20EndNote"  title="Digg" rel="nofollow" target="_blank"><img src="http://www.researchtutorials.com/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a target="_blank" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.researchtutorials.com%2Fwriting%2Fmanage-bibliographies-with-endnote%2F&amp;linkname=Manage%20Bibliographies%20with%20EndNote" class="a2a_dd addtoany_share_save" ><img src="http://www.researchtutorials.com/wp-content/plugins/add-to-any/favicon.png" width="16" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.researchtutorials.com/writing/manage-bibliographies-with-endnote/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
