<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.catglobe.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Nguyenhuutrung</id>
	<title>Catglobe Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.catglobe.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Nguyenhuutrung"/>
	<link rel="alternate" type="text/html" href="https://wiki.catglobe.com/Special:Contributions/Nguyenhuutrung"/>
	<updated>2026-05-07T14:40:31Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.0</generator>
	<entry>
		<id>https://wiki.catglobe.com/index.php?title=Array_class&amp;diff=24662</id>
		<title>Array class</title>
		<link rel="alternate" type="text/html" href="https://wiki.catglobe.com/index.php?title=Array_class&amp;diff=24662"/>
		<updated>2013-10-17T03:10:03Z</updated>

		<summary type="html">&lt;p&gt;Nguyenhuutrung: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{CGscriptClass_Template&lt;br /&gt;
|Name=Array&lt;br /&gt;
|Description=The array object&lt;br /&gt;
|Constructors=&lt;br /&gt;
{{CGscriptConstructors_Template|Description=Creates an empty array}}&lt;br /&gt;
{{CGscriptConstructors_Template|Parameters=&lt;br /&gt;
{{CGscriptParameters_Template|Type=number|Name=count|Description=Number of items to put in the array}}&lt;br /&gt;
|Description=Creates an array with a predefined size, where all elements are Empty}}&lt;br /&gt;
|Methods=&lt;br /&gt;
{{CGscriptMethods_Template|ReturnType=Empty|Name=Add|Parameters=&lt;br /&gt;
{{CGscriptParameters_Template|Type=AnyType|Name=element|Description=element to add}}&lt;br /&gt;
|Description=Add a new element to the Array}}&lt;br /&gt;
{{CGscriptMethods_Template|ReturnType=AnyType|Name=First|Parameters=&lt;br /&gt;
{{CGscriptParameters_Template|Type=Function|Name=selector|Description=A function to test each element for a condition.}}&lt;br /&gt;
|Description=Returns the first element in a sequence that satisfies a specified condition.}}&lt;br /&gt;
{{CGscriptMethods_Template|ReturnType=AnyType|Name=FirstOrDefault|Parameters=&lt;br /&gt;
{{CGscriptParameters_Template|Type=Function|Name=selector|Description=A function to test each element for a condition.}}&lt;br /&gt;
|Description=Returns the first element in a sequence that satisfies a specified condition or empty if not found.}}&lt;br /&gt;
{{CGscriptMethods_Template|ReturnType=number|Name=Frequency|Parameters=&lt;br /&gt;
{{CGscriptParameters_Template|Type=number|Name=number|Description=The number to search for}}&lt;br /&gt;
|Description=Counts the number of times a given Number object exists in the Array. Can only use if all the elements are of type Number}}&lt;br /&gt;
{{CGscriptMethods_Template|ReturnType=AnyType|Name=this[] { get; }|Parameters=&lt;br /&gt;
{{CGscriptParameters_Template|Type=number|Name=index|Description=Index}}&lt;br /&gt;
|Description=Get element at index}}&lt;br /&gt;
{{CGscriptMethods_Template|ReturnType=bool|Name=IsCharacterArray|Description=check if array is an array of characters}}&lt;br /&gt;
{{CGscriptMethods_Template|ReturnType=bool|Name=IsNumericArray|Description=check if array is an array of numbers}}&lt;br /&gt;
{{CGscriptMethods_Template|ReturnType=bool|Name=IsNumericArray|Description=check if array is an array of integer numbers}}&lt;br /&gt;
{{CGscriptMethods_Template|ReturnType=bool|Name=IsStringArray|Description=check if array is an array of string}}&lt;br /&gt;
{{CGscriptMethods_Template|ReturnType=array|Name=OrderBy|Parameters=&lt;br /&gt;
{{CGscriptParameters_Template|Type=Function|Name=comparer|Description=Function that compares two objects of the same type. Must return a signed integer that indicates the relative values of first param A and second param B. Value Less than 0 : A is less than B.Value 0 : A equals B.Value Greater than 0 : A is greater than B.}}&lt;br /&gt;
|Description=Sorts the elements of a sequence in ascending order by using a specified comparer.}}&lt;br /&gt;
{{CGscriptMethods_Template|ReturnType=Empty|Name=RemoveItemAt|Parameters=&lt;br /&gt;
{{CGscriptParameters_Template|Type=number|Name=index|Description=The index to remove the object from}}&lt;br /&gt;
|Description=Remove an element from the Array}}&lt;br /&gt;
{{CGscriptMethods_Template|ReturnType=array|Name=Select|Parameters=&lt;br /&gt;
{{CGscriptParameters_Template|Type=Function|Name=selector|Description=A transform function to apply to each element.}}&lt;br /&gt;
|Description=Projects each element of a sequence into a new form.}}&lt;br /&gt;
{{CGscriptMethods_Template|ReturnType=Empty|Name=this[] { set; }|Parameters=&lt;br /&gt;
{{CGscriptParameters_Template|Type=number|Name=index|Description=Index|Comma=,}}{{CGscriptParameters_Template|Type=AnyType|Name=value|Description=Value to set}}&lt;br /&gt;
|Description=Set element value at index}}&lt;br /&gt;
{{CGscriptMethods_Template|ReturnType=string|Name=ToString|Description=The string representation of the object.}}&lt;br /&gt;
{{CGscriptMethods_Template|ReturnType=array|Name=Where|Parameters=&lt;br /&gt;
{{CGscriptParameters_Template|Type=Function|Name=predicate|Description=A function that takes 1 parameter of the types in the array and return true/false}}&lt;br /&gt;
|Description=Filters a sequence of values based on a predicate.}}&lt;br /&gt;
|Properties=&lt;br /&gt;
{{CGscriptProperties_Template|ReturnType=number|Name=Average|HasGetter=1|Description=Average of the objects in the Array object. Can only use if all the elements are of type Number}}&lt;br /&gt;
{{CGscriptProperties_Template|ReturnType=number|Name=Count|HasGetter=1|Description=Number of elements in Array}}&lt;br /&gt;
{{CGscriptProperties_Template|ReturnType=number|Name=Max|HasGetter=1|Description=Largest of all the objects in the Array object. Can only use if all the elements are of type Number}}&lt;br /&gt;
{{CGscriptProperties_Template|ReturnType=number|Name=Min|HasGetter=1|Description=Smallest of all the objects in the Array object. Can only use if all the elements are of type Number}}&lt;br /&gt;
{{CGscriptProperties_Template|ReturnType=string|Name=ObjectTypeName|HasGetter=1|Description=The name of the type of object.}}&lt;br /&gt;
{{CGscriptProperties_Template|ReturnType=number|Name=Sum|HasGetter=1|Description=Sum of all the objects in the Array object. Can only use if all the elements are of type Number}}&lt;br /&gt;
{{CGscriptProperties_Template|ReturnType=TypeInformation|Name=TypeInformation|HasGetter=1|Description=Get information about this class.}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;span style=&amp;quot;color:#DF8621;&amp;quot;&amp;gt;&#039;&#039;&#039;Examples&#039;&#039;&#039;&amp;lt;/span&amp;gt; ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;javascript&amp;quot;&amp;gt;array x = new Array();&lt;br /&gt;
print(x); // {}&amp;lt;/source&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;source lang=&amp;quot;javascript&amp;quot;&amp;gt;array x = new Array(10);&lt;br /&gt;
print(x); // {Empty,Empty,Empty,Empty,Empty,Empty,Empty,Empty,Empty,Empty}&amp;lt;/source&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;source lang=&amp;quot;javascript&amp;quot;&amp;gt;array x = {10,20,30,40,50,60,70,80,90,100};&lt;br /&gt;
array y = x&lt;br /&gt;
.Select(function (number a) { a;})&lt;br /&gt;
// .Select(function (string a) { a;}) -&amp;gt; will not work: Cannot assign a value of type &#039;Number&#039; to a variable of type &#039;String&#039;&lt;br /&gt;
// .Select(function (array a) { a;}) -&amp;gt; will not work: Cannot assign a value of type &#039;Number&#039; to a variable of type &#039;Array&#039;&lt;br /&gt;
// .Select(function (bool a) { a;}) -&amp;gt; will not work: Cannot assign a value of type &#039;Number&#039; to a variable of type &#039;Boolean&#039;&lt;br /&gt;
// .Select(function () { a;}) -&amp;gt; will not work: Function called with too many parameters @&lt;br /&gt;
.Where(function (number a) {number i = getRandomNumber(0,10)*10; i &amp;gt; 40;});&lt;br /&gt;
print(y);&amp;lt;/source&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;source lang=&amp;quot;javascript&amp;quot;&amp;gt;array x = {10,20,30,40,50,60,70,80,90,100};&lt;br /&gt;
array y = x&lt;br /&gt;
.Select(function (number a) { 88888;})&lt;br /&gt;
.Where(function (number a) {number i = getRandomNumber(0,10)*10; i &amp;gt; 40;});&lt;br /&gt;
print(y);&amp;lt;/source&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;source lang=&amp;quot;javascript&amp;quot;&amp;gt;array x = {10,20,30,40,50,60,70,80,90,100};&lt;br /&gt;
array y = x&lt;br /&gt;
.Select(function (number a) { a;})&lt;br /&gt;
.Where(function (number a) {number i = getRandomNumber(0,10)*10; i &amp;gt; 40;})&lt;br /&gt;
.OrderBy(function(number a, number b) {if (a&amp;gt;b) 1; else if (a&amp;lt;b) -1; else 0;});&lt;br /&gt;
// .OrderBy(function(number a, number b){if (a&amp;gt;b) -1; else if (a&amp;lt;b) 1; else 0;});&lt;br /&gt;
print(y);&amp;lt;/source&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;source lang=&amp;quot;javascript&amp;quot;&amp;gt;array x = {{1,2,3},{4,false,6,7,8},{10,&amp;quot;ab&amp;quot;,{&amp;quot;aaa&amp;quot;,11,true},13,14},{&amp;quot;aa&amp;quot;,&amp;quot;bb&amp;quot;,17},{},{true,88}};&lt;br /&gt;
array y = x&lt;br /&gt;
.Select(function (array a) {; a;})&lt;br /&gt;
.Where(function (array a) {arrayCount(a) &amp;gt; 3;});&lt;br /&gt;
print(y); // {{4,False,6,7,8},{10,ab,{aaa,11,True},13,14}}&amp;lt;/source&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;source lang=&amp;quot;javascript&amp;quot;&amp;gt;array y = {20,30,40,50,70,80,90,100};&lt;br /&gt;
print(y.FirstOrDefault(function (number a) { true; })); // 20&lt;br /&gt;
print(y.FirstOrDefault(function (number a) { a &amp;gt; 70; })); // 80&lt;br /&gt;
print(y.First(function(number a) { true; })); // 20&lt;br /&gt;
print(y.First(function(number a) { a &amp;gt; 40; })); // 50&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Nguyenhuutrung</name></author>
	</entry>
	<entry>
		<id>https://wiki.catglobe.com/index.php?title=File:User-icon.png&amp;diff=24590</id>
		<title>File:User-icon.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.catglobe.com/index.php?title=File:User-icon.png&amp;diff=24590"/>
		<updated>2013-10-15T05:07:17Z</updated>

		<summary type="html">&lt;p&gt;Nguyenhuutrung: MsUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;MsUpload&lt;/div&gt;</summary>
		<author><name>Nguyenhuutrung</name></author>
	</entry>
	<entry>
		<id>https://wiki.catglobe.com/index.php?title=Questionnaire_Editor_-_Create_a_question&amp;diff=19722</id>
		<title>Questionnaire Editor - Create a question</title>
		<link rel="alternate" type="text/html" href="https://wiki.catglobe.com/index.php?title=Questionnaire_Editor_-_Create_a_question&amp;diff=19722"/>
		<updated>2011-11-04T07:32:26Z</updated>

		<summary type="html">&lt;p&gt;Nguyenhuutrung: /* QUESTIONNAIRE EDITOR - CREATE A QUESTION */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== QUESTIONNAIRE EDITOR - CREATE A QUESTION&amp;lt;br&amp;gt;  ==&lt;br /&gt;
&lt;br /&gt;
=== 1. CREATE NEW QUESTION&amp;lt;br&amp;gt;  ===&lt;br /&gt;
[[Image:Questionnaire Started 2.png|200px|right|top]]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
* Open the questionnaire editor (see Questionnaire editor – how to get started).&amp;lt;br&amp;gt;&lt;br /&gt;
* In the questionnaire editor, click the ”Add new question” button. This action will create a new question below the current one.&amp;lt;br&amp;gt;&lt;br /&gt;
* Or use insert menu to insert new question.&amp;lt;br&amp;gt;&lt;br /&gt;
* Or through shortcuts.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
{{note}}The “Insert” menu allows inserting a new question above, below, at the top or bottom or import a question from another questionnaire.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== 2. NAMING THE QUESTION&amp;lt;br&amp;gt;  ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Questionnaire Started 3.png|250px|right|top]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Type the question name under ”Question Label”.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
* Formulate your question under ”Question Text”.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== 3. DEFINE THE TYPE OF QUESTION&amp;lt;br&amp;gt;  ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Questionnaire Started 4.png|250px|right|top]]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
* Click the arrow next to “Single”.&amp;lt;br&amp;gt;&lt;br /&gt;
* The “Select form” menu shows supporting types in the questionnaire. The type “Single” is set as default for new created questions.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== 4. ADD OR COPY ANSWERS TO THE QUESTIONNAIRE&amp;lt;br&amp;gt;  ===&lt;br /&gt;
&lt;br /&gt;
* Click “Add” to add answer options (see step 5).&amp;lt;br&amp;gt;&lt;br /&gt;
* If you already have a list of answers, you can copy them into the editor by copying the content (from Word or Excel) and clicking the “Paste” button to insert the answers into the answer options&amp;lt;br&amp;gt;field (see step 6)&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Image:Questionnaire Started 5.png|350px]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== 5. WRITE IN YOUR ANSWERS ===&lt;br /&gt;
[[Image:Questionnaire Started 6.png|300px|right|top]]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
* If “Add options” is chosen, type in your answers in the ”Answer Option Text” box.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
{{note}} The answer option value shall always be greater then zero&lt;br /&gt;
&lt;br /&gt;
=== 6. VALID FORMATS TO COPY  ===&lt;br /&gt;
&lt;br /&gt;
* It is possible to copy-paste the answer options from Word or Excel if the content of the copied area is in the correct format.&amp;lt;br&amp;gt;The format in word has to be either:&amp;lt;br&amp;gt;&lt;br /&gt;
:1: Man&amp;lt;br&amp;gt;&lt;br /&gt;
:2: Woman&amp;lt;br&amp;gt;&lt;br /&gt;
:[value of the answer] [colon] [answer text] or listed in tables [[Image:Questionnaire Started 8.png]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* In Excel, every answer option has to be in different cells like the example above&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
{{note}}Pasting from a horizontal list will insert the answers into one answer option.&lt;br /&gt;
&lt;br /&gt;
[[Category:Quick_start]]&lt;/div&gt;</summary>
		<author><name>Nguyenhuutrung</name></author>
	</entry>
	<entry>
		<id>https://wiki.catglobe.com/index.php?title=Questionnaire_Editor_-_How_to_get_started&amp;diff=19721</id>
		<title>Questionnaire Editor - How to get started</title>
		<link rel="alternate" type="text/html" href="https://wiki.catglobe.com/index.php?title=Questionnaire_Editor_-_How_to_get_started&amp;diff=19721"/>
		<updated>2011-11-04T07:26:19Z</updated>

		<summary type="html">&lt;p&gt;Nguyenhuutrung: /* QUESTIONNAIRE EDITOR - HOW TO GET STARTED */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== QUESTIONNAIRE EDITOR - HOW TO GET STARTED&amp;lt;br&amp;gt;  ==&lt;br /&gt;
&lt;br /&gt;
=== 1. GO TO THE QUESTIONNAIRE MODULE  ===&lt;br /&gt;
&lt;br /&gt;
*Go to &amp;quot;Tools&amp;quot; -&amp;amp;gt; &amp;quot;Questionnaires&amp;quot; -&amp;amp;gt; &amp;quot;Questionnaires&amp;quot;.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== 2. CREATE A NEW QUESTIONNAIRE&amp;lt;br&amp;gt;  ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Create a new questionnaire -1.png|right|200px|Create a new questionnaire -1.png]] &lt;br /&gt;
&lt;br /&gt;
*Click the green icon: &amp;quot;Create questionnaire&amp;quot;.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== 3. CHOOSE A NAME FOR YOUR QUESTIONNAIRE&amp;lt;br&amp;gt;  ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Create a new questionnaire -2.png|right|300px|Create a new questionnaire -2.png]] &lt;br /&gt;
&lt;br /&gt;
*Type a name for the questionnaire in the &amp;quot;Questionnaire name&amp;quot; box.&amp;lt;br&amp;gt; &lt;br /&gt;
*Find a layout for the questionnaire.&amp;lt;br&amp;gt; &lt;br /&gt;
*If this questionnaire is a CATI questionnaire, choose which CATI outcome set type this questionnaire shall have. CATI is a interviewer module.&amp;lt;br&amp;gt; &lt;br /&gt;
*Choose &amp;quot;Save&amp;quot; or &amp;quot;Save &amp;amp;amp; close&amp;quot; to start working with the editor.&amp;lt;br&amp;gt; &lt;br /&gt;
*The questionnaire editor will popup after saving.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== 4. QUESTIONNAIRE EDITOR&amp;lt;br&amp;gt;  ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Create a new questionnaire -3.png|right|250px|Create a new questionnaire -3.png]] &lt;br /&gt;
&lt;br /&gt;
*The questionnaire has now been created and forth coming questions etc. can now be created in the open questionnaire editor&lt;br /&gt;
&lt;br /&gt;
{{note}}Your language setting decides which language the questionnaire starts as default. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== 5. OPENING THE QUESTIONNAIRE EDITOR&amp;lt;br&amp;gt;  ===&lt;br /&gt;
&lt;br /&gt;
*To access the questionnaire editor, highlight your questionnaire in the questionnaire list and click on &amp;quot;Template&amp;quot;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Create a new questionnaire -5.png|right|200px|Create a new questionnaire -5.png]]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Category:Quick_start]]&lt;/div&gt;</summary>
		<author><name>Nguyenhuutrung</name></author>
	</entry>
	<entry>
		<id>https://wiki.catglobe.com/index.php?title=Questionnaire_Editor_-_How_to_get_started&amp;diff=19720</id>
		<title>Questionnaire Editor - How to get started</title>
		<link rel="alternate" type="text/html" href="https://wiki.catglobe.com/index.php?title=Questionnaire_Editor_-_How_to_get_started&amp;diff=19720"/>
		<updated>2011-11-04T07:16:58Z</updated>

		<summary type="html">&lt;p&gt;Nguyenhuutrung: /* QUESTIONNAIRE EDITOR - HOW TO GET STARTED */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== QUESTIONNAIRE EDITOR - HOW TO GET STARTED&amp;lt;br&amp;gt;  ==&lt;br /&gt;
&lt;br /&gt;
=== 1. GO TO THE QUESTIONNAIRE MODULE  ===&lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; Go to “Tools” -&amp;amp;gt; “Questionnaires” -&amp;amp;gt; “Questionnaires”.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== 2. CREATE A NEW QUESTIONNAIRE&amp;lt;br&amp;gt;  ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Create a new questionnaire -1.png|200px|right|top]]&lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; Click the green icon: ”Create questionnaire”.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== 3. CHOOSE A NAME FOR YOUR QUESTIONNAIRE&amp;lt;br&amp;gt;  ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Create a new questionnaire -2.png|300px|right|top]] &lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; Type a name for the questionnaire in the ”Questionnaire name” box.&amp;lt;br&amp;gt;&amp;amp;gt; Find a layout for the questionnaire.&amp;lt;br&amp;gt;&amp;amp;gt; If this questionnaire is a CATI questionnaire, choose which CATI outcome set type this questionnaire shall have. CATI is a interviewer module.&amp;lt;br&amp;gt;&amp;amp;gt; Choose “Save” or “Save &amp;amp;amp; close” to start working with the editor.&amp;lt;br&amp;gt;&amp;amp;gt; The questionnaire editor will popup after saving.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== 4. QUESTIONNAIRE EDITOR&amp;lt;br&amp;gt;  ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Create a new questionnaire -3.png|250px|right|top]] &lt;br /&gt;
&lt;br /&gt;
1. The questionnaire has now been created and forth coming questions etc. can now be created in the open questionnaire editor &lt;br /&gt;
&lt;br /&gt;
{{note}}Your language setting decides which language the questionnaire starts as default.&lt;br /&gt;
&lt;br /&gt;
=== 5. OPENING THE QUESTIONNAIRE EDITOR&amp;lt;br&amp;gt; ===&lt;br /&gt;
&lt;br /&gt;
2. To access the questionnaire editor, highlight your questionnaire in the questionnaire list and click on “Template&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Create_a_new_questionnaire_-5.png|200px|right|top]]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Category:Quick_start]]&lt;/div&gt;</summary>
		<author><name>Nguyenhuutrung</name></author>
	</entry>
	<entry>
		<id>https://wiki.catglobe.com/index.php?title=Questionnaire_Editor_-_How_to_get_started&amp;diff=19719</id>
		<title>Questionnaire Editor - How to get started</title>
		<link rel="alternate" type="text/html" href="https://wiki.catglobe.com/index.php?title=Questionnaire_Editor_-_How_to_get_started&amp;diff=19719"/>
		<updated>2011-11-04T07:15:57Z</updated>

		<summary type="html">&lt;p&gt;Nguyenhuutrung: /* 3. CHOOSE A NAME FOR YOUR QUESTIONNAIRE */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== QUESTIONNAIRE EDITOR - HOW TO GET STARTED&amp;lt;br&amp;gt;  ==&lt;br /&gt;
&lt;br /&gt;
=== 1. GO TO THE QUESTIONNAIRE MODULE  ===&lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; Go to “Tools” -&amp;amp;gt; “Questionnaires” -&amp;amp;gt; “Questionnaires”.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== 2. CREATE A NEW QUESTIONNAIRE&amp;lt;br&amp;gt;  ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Create a new questionnaire -1.png|200px|right|top]]&lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; Click the green icon: ”Create questionnaire”.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== 3. CHOOSE A NAME FOR YOUR QUESTIONNAIRE&amp;lt;br&amp;gt;  ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Create a new questionnaire -2.png|300px|right|top]] &lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; Type a name for the questionnaire in the ”Questionnaire name” box.&amp;lt;br&amp;gt;&amp;amp;gt; Find a layout for the questionnaire.&amp;lt;br&amp;gt;&amp;amp;gt; If this questionnaire is a CATI questionnaire, choose which CATI outcome set type this questionnaire shall have. CATI is a interviewer module.&amp;lt;br&amp;gt;&amp;amp;gt; Choose “Save” or “Save &amp;amp;amp; close” to start working with the editor.&amp;lt;br&amp;gt;&amp;amp;gt; The questionnaire editor will popup after saving.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== 4. QUESTIONNAIRE EDITOR&amp;lt;br&amp;gt;  ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Create a new questionnaire -3.png|250px|right|top]] &lt;br /&gt;
&lt;br /&gt;
1. The questionnaire has now been created and forth coming questions etc. can now be created in the open questionnaire editor &lt;br /&gt;
&lt;br /&gt;
{{note}}Your language setting decides which language the questionnaire starts as default.&lt;br /&gt;
&lt;br /&gt;
=== 5. OPENING THE QUESTIONNAIRE EDITOR&amp;lt;br&amp;gt; ===&lt;br /&gt;
&lt;br /&gt;
2. To access the questionnaire editor, highlight your questionnaire in the questionnaire list and click on “Template&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Create_a_new_questionnaire_-5.png|200px|right|top]]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Category:Quick_start]]&lt;/div&gt;</summary>
		<author><name>Nguyenhuutrung</name></author>
	</entry>
	<entry>
		<id>https://wiki.catglobe.com/index.php?title=Questionnaire_Editor_-_How_to_get_started&amp;diff=19718</id>
		<title>Questionnaire Editor - How to get started</title>
		<link rel="alternate" type="text/html" href="https://wiki.catglobe.com/index.php?title=Questionnaire_Editor_-_How_to_get_started&amp;diff=19718"/>
		<updated>2011-11-04T07:15:27Z</updated>

		<summary type="html">&lt;p&gt;Nguyenhuutrung: /* 4. QUESTIONNAIRE EDITOR */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== QUESTIONNAIRE EDITOR - HOW TO GET STARTED&amp;lt;br&amp;gt;  ==&lt;br /&gt;
&lt;br /&gt;
=== 1. GO TO THE QUESTIONNAIRE MODULE  ===&lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; Go to “Tools” -&amp;amp;gt; “Questionnaires” -&amp;amp;gt; “Questionnaires”.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== 2. CREATE A NEW QUESTIONNAIRE&amp;lt;br&amp;gt;  ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Create a new questionnaire -1.png|200px|right|top]]&lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; Click the green icon: ”Create questionnaire”.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== 3. CHOOSE A NAME FOR YOUR QUESTIONNAIRE&amp;lt;br&amp;gt;  ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Create a new questionnaire -2.png|350px|right|top]] &lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; Type a name for the questionnaire in the ”Questionnaire name” box.&amp;lt;br&amp;gt;&amp;amp;gt; Find a layout for the questionnaire.&amp;lt;br&amp;gt;&amp;amp;gt; If this questionnaire is a CATI questionnaire, choose which CATI outcome set type this questionnaire shall have. CATI is a interviewer module.&amp;lt;br&amp;gt;&amp;amp;gt; Choose “Save” or “Save &amp;amp;amp; close” to start working with the editor.&amp;lt;br&amp;gt;&amp;amp;gt; The questionnaire editor will popup after saving.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== 4. QUESTIONNAIRE EDITOR&amp;lt;br&amp;gt;  ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Create a new questionnaire -3.png|250px|right|top]] &lt;br /&gt;
&lt;br /&gt;
1. The questionnaire has now been created and forth coming questions etc. can now be created in the open questionnaire editor &lt;br /&gt;
&lt;br /&gt;
{{note}}Your language setting decides which language the questionnaire starts as default.&lt;br /&gt;
&lt;br /&gt;
=== 5. OPENING THE QUESTIONNAIRE EDITOR&amp;lt;br&amp;gt; ===&lt;br /&gt;
&lt;br /&gt;
2. To access the questionnaire editor, highlight your questionnaire in the questionnaire list and click on “Template&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Create_a_new_questionnaire_-5.png|200px|right|top]]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Category:Quick_start]]&lt;/div&gt;</summary>
		<author><name>Nguyenhuutrung</name></author>
	</entry>
	<entry>
		<id>https://wiki.catglobe.com/index.php?title=Questionnaire_Editor_-_Create_a_question&amp;diff=19717</id>
		<title>Questionnaire Editor - Create a question</title>
		<link rel="alternate" type="text/html" href="https://wiki.catglobe.com/index.php?title=Questionnaire_Editor_-_Create_a_question&amp;diff=19717"/>
		<updated>2011-11-04T07:13:55Z</updated>

		<summary type="html">&lt;p&gt;Nguyenhuutrung: /* 6. VALID FORMATS TO COPY */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== QUESTIONNAIRE EDITOR - CREATE A QUESTION&amp;lt;br&amp;gt;  ==&lt;br /&gt;
&lt;br /&gt;
=== 1. CREATE NEW QUESTION&amp;lt;br&amp;gt;  ===&lt;br /&gt;
[[Image:Questionnaire Started 2.png|200px|right|top]]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; Open the questionnaire editor (see Questionnaire editor – how to get started).&amp;lt;br&amp;gt;&amp;amp;gt; In the questionnaire editor, click the ”Add new question” button. This action will create a new question below the current one.&amp;lt;br&amp;gt;&amp;amp;gt; Or use insert menu to insert new question.&amp;lt;br&amp;gt;&amp;amp;gt; Or through shortcuts.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
{{note}}The “Insert” menu allows inserting a new question above, below, at the top or bottom or import a question from another questionnaire.&lt;br /&gt;
&lt;br /&gt;
=== 2. NAMING THE QUESTION&amp;lt;br&amp;gt;  ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Questionnaire Started 3.png|250px|right|top]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; Type the question name under ”Question Label”.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; Formulate your question under ”Question Text”.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== 3. DEFINE THE TYPE OF QUESTION&amp;lt;br&amp;gt;  ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Questionnaire Started 4.png|250px|right|top]]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; Click the arrow next to “Single”.&amp;lt;br&amp;gt;&amp;amp;gt; The “Select form” menu shows supporting types in the questionnaire. The type “Single” is set as default for new created questions.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== 4. ADD OR COPY ANSWERS TO THE QUESTIONNAIRE&amp;lt;br&amp;gt;  ===&lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; Click “Add” to add answer options (see step 5).&amp;lt;br&amp;gt;&amp;amp;gt; If you already have a list of answers, you can copy them into the editor by copying the content (from Word or Excel) and clicking the “Paste” button to insert the answers into the answer options&amp;lt;br&amp;gt;field (see step 6)&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Image:Questionnaire Started 5.png|350px]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== 5. WRITE IN YOUR ANSWERS&amp;lt;br&amp;gt;  ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Questionnaire Started 6.png|300px|right|top]]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; If “Add options” is chosen, type in your answers in the ”Answer Option Text” box.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
{{note}} The answer option value shall always be greater then zero&lt;br /&gt;
&lt;br /&gt;
=== 6. VALID FORMATS TO COPY  ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;amp;gt; It is possible to copy-paste the answer options from Word or Excel if the content of the copied area is in the correct format.&amp;lt;br&amp;gt;The format in word has to be either:&amp;lt;br&amp;gt;1: Man&amp;lt;br&amp;gt;2: Woman&amp;lt;br&amp;gt;[value of the answer] [colon] [answer text] or listed in tables &lt;br /&gt;
&lt;br /&gt;
[[Image:Questionnaire Started 8.png]]&amp;lt;br&amp;gt;&amp;amp;gt; In Excel, every answer option has to be in different cells like the example above&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
{{note}}Pasting from a horizontal list will insert the answers into one answer option.&lt;br /&gt;
&lt;br /&gt;
[[Category:Quick_start]]&lt;/div&gt;</summary>
		<author><name>Nguyenhuutrung</name></author>
	</entry>
	<entry>
		<id>https://wiki.catglobe.com/index.php?title=Questionnaire_Editor_-_Create_a_question&amp;diff=19716</id>
		<title>Questionnaire Editor - Create a question</title>
		<link rel="alternate" type="text/html" href="https://wiki.catglobe.com/index.php?title=Questionnaire_Editor_-_Create_a_question&amp;diff=19716"/>
		<updated>2011-11-04T07:13:30Z</updated>

		<summary type="html">&lt;p&gt;Nguyenhuutrung: /* 5. WRITE IN YOUR ANSWERS */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== QUESTIONNAIRE EDITOR - CREATE A QUESTION&amp;lt;br&amp;gt;  ==&lt;br /&gt;
&lt;br /&gt;
=== 1. CREATE NEW QUESTION&amp;lt;br&amp;gt;  ===&lt;br /&gt;
[[Image:Questionnaire Started 2.png|200px|right|top]]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; Open the questionnaire editor (see Questionnaire editor – how to get started).&amp;lt;br&amp;gt;&amp;amp;gt; In the questionnaire editor, click the ”Add new question” button. This action will create a new question below the current one.&amp;lt;br&amp;gt;&amp;amp;gt; Or use insert menu to insert new question.&amp;lt;br&amp;gt;&amp;amp;gt; Or through shortcuts.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
{{note}}The “Insert” menu allows inserting a new question above, below, at the top or bottom or import a question from another questionnaire.&lt;br /&gt;
&lt;br /&gt;
=== 2. NAMING THE QUESTION&amp;lt;br&amp;gt;  ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Questionnaire Started 3.png|250px|right|top]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; Type the question name under ”Question Label”.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; Formulate your question under ”Question Text”.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== 3. DEFINE THE TYPE OF QUESTION&amp;lt;br&amp;gt;  ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Questionnaire Started 4.png|250px|right|top]]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; Click the arrow next to “Single”.&amp;lt;br&amp;gt;&amp;amp;gt; The “Select form” menu shows supporting types in the questionnaire. The type “Single” is set as default for new created questions.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== 4. ADD OR COPY ANSWERS TO THE QUESTIONNAIRE&amp;lt;br&amp;gt;  ===&lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; Click “Add” to add answer options (see step 5).&amp;lt;br&amp;gt;&amp;amp;gt; If you already have a list of answers, you can copy them into the editor by copying the content (from Word or Excel) and clicking the “Paste” button to insert the answers into the answer options&amp;lt;br&amp;gt;field (see step 6)&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Image:Questionnaire Started 5.png|350px]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== 5. WRITE IN YOUR ANSWERS&amp;lt;br&amp;gt;  ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Questionnaire Started 6.png|300px|right|top]]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; If “Add options” is chosen, type in your answers in the ”Answer Option Text” box.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
{{note}} The answer option value shall always be greater then zero&lt;br /&gt;
&lt;br /&gt;
=== 6. VALID FORMATS TO COPY  ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;amp;gt; It is possible to copy-paste the answer options from Word or Excel if the content of the copied area is in the correct format.&amp;lt;br&amp;gt;The format in word has to be either:&amp;lt;br&amp;gt;1: Man&amp;lt;br&amp;gt;2: Woman&amp;lt;br&amp;gt;[value of the answer] [colon] [answer text] or listed in tables &lt;br /&gt;
&lt;br /&gt;
[[Image:Questionnaire Started 8.png]]&amp;lt;br&amp;gt;&amp;amp;gt; In Excel, every answer option has to be in different cells like the example above&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Image:Questionnaire Started 9.png|600px]] &lt;br /&gt;
&lt;br /&gt;
[[Category:Quick_start]]&lt;/div&gt;</summary>
		<author><name>Nguyenhuutrung</name></author>
	</entry>
	<entry>
		<id>https://wiki.catglobe.com/index.php?title=Questionnaire_Editor_-_Create_a_question&amp;diff=19715</id>
		<title>Questionnaire Editor - Create a question</title>
		<link rel="alternate" type="text/html" href="https://wiki.catglobe.com/index.php?title=Questionnaire_Editor_-_Create_a_question&amp;diff=19715"/>
		<updated>2011-11-04T07:12:52Z</updated>

		<summary type="html">&lt;p&gt;Nguyenhuutrung: /* 1. CREATE NEW QUESTION */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== QUESTIONNAIRE EDITOR - CREATE A QUESTION&amp;lt;br&amp;gt;  ==&lt;br /&gt;
&lt;br /&gt;
=== 1. CREATE NEW QUESTION&amp;lt;br&amp;gt;  ===&lt;br /&gt;
[[Image:Questionnaire Started 2.png|200px|right|top]]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; Open the questionnaire editor (see Questionnaire editor – how to get started).&amp;lt;br&amp;gt;&amp;amp;gt; In the questionnaire editor, click the ”Add new question” button. This action will create a new question below the current one.&amp;lt;br&amp;gt;&amp;amp;gt; Or use insert menu to insert new question.&amp;lt;br&amp;gt;&amp;amp;gt; Or through shortcuts.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
{{note}}The “Insert” menu allows inserting a new question above, below, at the top or bottom or import a question from another questionnaire.&lt;br /&gt;
&lt;br /&gt;
=== 2. NAMING THE QUESTION&amp;lt;br&amp;gt;  ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Questionnaire Started 3.png|250px|right|top]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; Type the question name under ”Question Label”.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; Formulate your question under ”Question Text”.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== 3. DEFINE THE TYPE OF QUESTION&amp;lt;br&amp;gt;  ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Questionnaire Started 4.png|250px|right|top]]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; Click the arrow next to “Single”.&amp;lt;br&amp;gt;&amp;amp;gt; The “Select form” menu shows supporting types in the questionnaire. The type “Single” is set as default for new created questions.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== 4. ADD OR COPY ANSWERS TO THE QUESTIONNAIRE&amp;lt;br&amp;gt;  ===&lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; Click “Add” to add answer options (see step 5).&amp;lt;br&amp;gt;&amp;amp;gt; If you already have a list of answers, you can copy them into the editor by copying the content (from Word or Excel) and clicking the “Paste” button to insert the answers into the answer options&amp;lt;br&amp;gt;field (see step 6)&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Image:Questionnaire Started 5.png|350px]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== 5. WRITE IN YOUR ANSWERS&amp;lt;br&amp;gt;  ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Questionnaire Started 6.png|300px|right|top]]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; If “Add options” is chosen, type in your answers in the ”Answer Option Text” box.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Image:Questionnaire Started 7.png]]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== 6. VALID FORMATS TO COPY  ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;amp;gt; It is possible to copy-paste the answer options from Word or Excel if the content of the copied area is in the correct format.&amp;lt;br&amp;gt;The format in word has to be either:&amp;lt;br&amp;gt;1: Man&amp;lt;br&amp;gt;2: Woman&amp;lt;br&amp;gt;[value of the answer] [colon] [answer text] or listed in tables &lt;br /&gt;
&lt;br /&gt;
[[Image:Questionnaire Started 8.png]]&amp;lt;br&amp;gt;&amp;amp;gt; In Excel, every answer option has to be in different cells like the example above&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Image:Questionnaire Started 9.png|600px]] &lt;br /&gt;
&lt;br /&gt;
[[Category:Quick_start]]&lt;/div&gt;</summary>
		<author><name>Nguyenhuutrung</name></author>
	</entry>
	<entry>
		<id>https://wiki.catglobe.com/index.php?title=Template:Note&amp;diff=19714</id>
		<title>Template:Note</title>
		<link rel="alternate" type="text/html" href="https://wiki.catglobe.com/index.php?title=Template:Note&amp;diff=19714"/>
		<updated>2011-11-04T05:19:56Z</updated>

		<summary type="html">&lt;p&gt;Nguyenhuutrung: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#if: {{{1|}}}|&amp;lt;div class=&amp;quot;block-note&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;block-contents&amp;quot;&amp;gt;|[[File:Note.png|18px|Note|link=]]}} &#039;&#039;&#039;Note:&#039;&#039;&#039; {{#if: {{{1|}}}|{{{1}}}&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;}}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
&lt;br /&gt;
=== Method 1 ===&lt;br /&gt;
&lt;br /&gt;
The following displays the note icon and the word &#039;Note:&#039;.  You can follow this with whatever text/images/markup you like, and it works in-line, within a paragraph.&lt;br /&gt;
 Monsters are green. &amp;lt;nowiki&amp;gt;{{note}}&amp;lt;/nowiki&amp;gt; this is an in-line note, to remind you that some monsters are orangey-purple.&lt;br /&gt;
&lt;br /&gt;
Monsters are green. {{note}} this is an in-line note, to remind you that some monsters are orangey-purple.&lt;br /&gt;
&lt;br /&gt;
=== Method 2 ===&lt;br /&gt;
The following includes the text passed to the template, and uses a table to stop the text flowing round the icon.  These always force a newline before and after the note.&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;{{note|Here is a long note, which is sufficiently wordy to run onto a second line, &lt;br /&gt;
 which would normally cause it to wrap round the icon, but because we passed it as a parameter &lt;br /&gt;
 it keeps its left alignment straight.}}&amp;lt;/nowiki&amp;gt; &lt;br /&gt;
&lt;br /&gt;
{{note|Here is a long note, which is sufficiently wordy to run onto a second line, which would normally cause it to wrap round the icon, but because we passed it as a parameter it keeps its left alignment straight.}}&lt;br /&gt;
&lt;br /&gt;
{{Languages|Template:Note}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Templates|{{PAGENAME}}]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Nguyenhuutrung</name></author>
	</entry>
	<entry>
		<id>https://wiki.catglobe.com/index.php?title=Template:Note&amp;diff=19713</id>
		<title>Template:Note</title>
		<link rel="alternate" type="text/html" href="https://wiki.catglobe.com/index.php?title=Template:Note&amp;diff=19713"/>
		<updated>2011-11-04T04:02:15Z</updated>

		<summary type="html">&lt;p&gt;Nguyenhuutrung: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#if: {{{1|}}}|&amp;lt;div class=&amp;quot;block-note&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;block-contents&amp;quot;&amp;gt;|[[File:Note.png|18px|Note|link=]]}} &#039;&#039;&#039;Note:&#039;&#039;&#039; {{#if: {{{1|}}}|{{{1}}}&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
&lt;br /&gt;
=== Method 1 ===&lt;br /&gt;
&lt;br /&gt;
The following displays the note icon and the word &#039;Note:&#039;.  You can follow this with whatever text/images/markup you like, and it works in-line, within a paragraph.&lt;br /&gt;
 Monsters are green. &amp;lt;nowiki&amp;gt;{{note}}&amp;lt;/nowiki&amp;gt; this is an in-line note, to remind you that some monsters are orangey-purple.&lt;br /&gt;
&lt;br /&gt;
Monsters are green. {{note}} this is an in-line note, to remind you that some monsters are orangey-purple.&lt;br /&gt;
&lt;br /&gt;
=== Method 2 ===&lt;br /&gt;
The following includes the text passed to the template, and uses a table to stop the text flowing round the icon.  These always force a newline before and after the note.&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;{{note|Here is a long note, which is sufficiently wordy to run onto a second line, &lt;br /&gt;
 which would normally cause it to wrap round the icon, but because we passed it as a parameter &lt;br /&gt;
 it keeps its left alignment straight.}}&amp;lt;/nowiki&amp;gt; &lt;br /&gt;
&lt;br /&gt;
{{note|Here is a long note, which is sufficiently wordy to run onto a second line, which would normally cause it to wrap round the icon, but because we passed it as a parameter it keeps its left alignment straight.}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Nguyenhuutrung</name></author>
	</entry>
	<entry>
		<id>https://wiki.catglobe.com/index.php?title=File:Note.png&amp;diff=19712</id>
		<title>File:Note.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.catglobe.com/index.php?title=File:Note.png&amp;diff=19712"/>
		<updated>2011-11-04T04:02:00Z</updated>

		<summary type="html">&lt;p&gt;Nguyenhuutrung: Use for Template:Note. Please don&amp;#039;t delete&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Use for Template:Note. Please don&#039;t delete&lt;/div&gt;</summary>
		<author><name>Nguyenhuutrung</name></author>
	</entry>
	<entry>
		<id>https://wiki.catglobe.com/index.php?title=Template:Note&amp;diff=19711</id>
		<title>Template:Note</title>
		<link rel="alternate" type="text/html" href="https://wiki.catglobe.com/index.php?title=Template:Note&amp;diff=19711"/>
		<updated>2011-11-04T03:59:58Z</updated>

		<summary type="html">&lt;p&gt;Nguyenhuutrung: Created page with &amp;quot;{{#if: {{{1|}}}|&amp;lt;div class=&amp;quot;block-note&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;block-contents&amp;quot;&amp;gt;|link=}} &amp;#039;&amp;#039;&amp;#039;Note:&amp;#039;&amp;#039;&amp;#039; {{#if: {{{1|}}}|{{{1}}}&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;}}  &amp;lt;noinclude&amp;gt;  ==...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#if: {{{1|}}}|&amp;lt;div class=&amp;quot;block-note&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;block-contents&amp;quot;&amp;gt;|[[File:Bulbgraph.png|18px|Note|link=]]}} &#039;&#039;&#039;Note:&#039;&#039;&#039; {{#if: {{{1|}}}|{{{1}}}&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
&lt;br /&gt;
=== Method 1 ===&lt;br /&gt;
&lt;br /&gt;
The following displays the note icon and the word &#039;Note:&#039;.  You can follow this with whatever text/images/markup you like, and it works in-line, within a paragraph.&lt;br /&gt;
 Monsters are green. &amp;lt;nowiki&amp;gt;{{note}}&amp;lt;/nowiki&amp;gt; this is an in-line note, to remind you that some monsters are orangey-purple.&lt;br /&gt;
&lt;br /&gt;
Monsters are green. {{note}} this is an in-line note, to remind you that some monsters are orangey-purple.&lt;br /&gt;
&lt;br /&gt;
=== Method 2 ===&lt;br /&gt;
The following includes the text passed to the template, and uses a table to stop the text flowing round the icon.  These always force a newline before and after the note.&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;{{note|Here is a long note, which is sufficiently wordy to run onto a second line, &lt;br /&gt;
 which would normally cause it to wrap round the icon, but because we passed it as a parameter &lt;br /&gt;
 it keeps its left alignment straight.}}&amp;lt;/nowiki&amp;gt; &lt;br /&gt;
&lt;br /&gt;
{{note|Here is a long note, which is sufficiently wordy to run onto a second line, which would normally cause it to wrap round the icon, but because we passed it as a parameter it keeps its left alignment straight.}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Nguyenhuutrung</name></author>
	</entry>
	<entry>
		<id>https://wiki.catglobe.com/index.php?title=Questionnaire_Editor_-_Create_a_question&amp;diff=19710</id>
		<title>Questionnaire Editor - Create a question</title>
		<link rel="alternate" type="text/html" href="https://wiki.catglobe.com/index.php?title=Questionnaire_Editor_-_Create_a_question&amp;diff=19710"/>
		<updated>2011-11-03T08:05:28Z</updated>

		<summary type="html">&lt;p&gt;Nguyenhuutrung: /* 4. ADD OR COPY ANSWERS TO THE QUESTIONNAIRE */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== QUESTIONNAIRE EDITOR - CREATE A QUESTION&amp;lt;br&amp;gt;  ==&lt;br /&gt;
&lt;br /&gt;
=== 1. CREATE NEW QUESTION&amp;lt;br&amp;gt;  ===&lt;br /&gt;
[[Image:Questionnaire Started 2.png|200px|right|top]]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; Open the questionnaire editor (see Questionnaire editor – how to get started).&amp;lt;br&amp;gt;&amp;amp;gt; In the questionnaire editor, click the ”Add new question” button. This action will create a new question below the current one.&amp;lt;br&amp;gt;&amp;amp;gt; Or use insert menu to insert new question.&amp;lt;br&amp;gt;&amp;amp;gt; Or through shortcuts.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Image:Questionnaire Started 1.png|500px]]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== 2. NAMING THE QUESTION&amp;lt;br&amp;gt;  ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Questionnaire Started 3.png|250px|right|top]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; Type the question name under ”Question Label”.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; Formulate your question under ”Question Text”.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== 3. DEFINE THE TYPE OF QUESTION&amp;lt;br&amp;gt;  ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Questionnaire Started 4.png|250px|right|top]]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; Click the arrow next to “Single”.&amp;lt;br&amp;gt;&amp;amp;gt; The “Select form” menu shows supporting types in the questionnaire. The type “Single” is set as default for new created questions.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== 4. ADD OR COPY ANSWERS TO THE QUESTIONNAIRE&amp;lt;br&amp;gt;  ===&lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; Click “Add” to add answer options (see step 5).&amp;lt;br&amp;gt;&amp;amp;gt; If you already have a list of answers, you can copy them into the editor by copying the content (from Word or Excel) and clicking the “Paste” button to insert the answers into the answer options&amp;lt;br&amp;gt;field (see step 6)&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Image:Questionnaire Started 5.png|350px]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== 5. WRITE IN YOUR ANSWERS&amp;lt;br&amp;gt;  ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Questionnaire Started 6.png|300px|right|top]]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; If “Add options” is chosen, type in your answers in the ”Answer Option Text” box.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Image:Questionnaire Started 7.png]]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== 6. VALID FORMATS TO COPY  ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;amp;gt; It is possible to copy-paste the answer options from Word or Excel if the content of the copied area is in the correct format.&amp;lt;br&amp;gt;The format in word has to be either:&amp;lt;br&amp;gt;1: Man&amp;lt;br&amp;gt;2: Woman&amp;lt;br&amp;gt;[value of the answer] [colon] [answer text] or listed in tables &lt;br /&gt;
&lt;br /&gt;
[[Image:Questionnaire Started 8.png]]&amp;lt;br&amp;gt;&amp;amp;gt; In Excel, every answer option has to be in different cells like the example above&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Image:Questionnaire Started 9.png|600px]] &lt;br /&gt;
&lt;br /&gt;
[[Category:Quick_start]]&lt;/div&gt;</summary>
		<author><name>Nguyenhuutrung</name></author>
	</entry>
	<entry>
		<id>https://wiki.catglobe.com/index.php?title=Questionnaire_Editor_-_Create_a_question&amp;diff=19709</id>
		<title>Questionnaire Editor - Create a question</title>
		<link rel="alternate" type="text/html" href="https://wiki.catglobe.com/index.php?title=Questionnaire_Editor_-_Create_a_question&amp;diff=19709"/>
		<updated>2011-11-03T08:01:37Z</updated>

		<summary type="html">&lt;p&gt;Nguyenhuutrung: /* QUESTIONNAIRE EDITOR - CREATE A QUESTION */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== QUESTIONNAIRE EDITOR - CREATE A QUESTION&amp;lt;br&amp;gt;  ==&lt;br /&gt;
&lt;br /&gt;
=== 1. CREATE NEW QUESTION&amp;lt;br&amp;gt;  ===&lt;br /&gt;
[[Image:Questionnaire Started 2.png|200px|right|top]]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; Open the questionnaire editor (see Questionnaire editor – how to get started).&amp;lt;br&amp;gt;&amp;amp;gt; In the questionnaire editor, click the ”Add new question” button. This action will create a new question below the current one.&amp;lt;br&amp;gt;&amp;amp;gt; Or use insert menu to insert new question.&amp;lt;br&amp;gt;&amp;amp;gt; Or through shortcuts.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Image:Questionnaire Started 1.png|500px]]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== 2. NAMING THE QUESTION&amp;lt;br&amp;gt;  ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Questionnaire Started 3.png|250px|right|top]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; Type the question name under ”Question Label”.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; Formulate your question under ”Question Text”.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== 3. DEFINE THE TYPE OF QUESTION&amp;lt;br&amp;gt;  ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Questionnaire Started 4.png|250px|right|top]]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; Click the arrow next to “Single”.&amp;lt;br&amp;gt;&amp;amp;gt; The “Select form” menu shows supporting types in the questionnaire. The type “Single” is set as default for new created questions.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== 4. ADD OR COPY ANSWERS TO THE QUESTIONNAIRE&amp;lt;br&amp;gt;  ===&lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; Click “Add” to add answer options (see step 5).&amp;lt;br&amp;gt;&amp;amp;gt; If you already have a list of answers, you can copy them into the editor by copying the content (from Word or Excel) and clicking the “Paste” button to insert the answers into the answer options&amp;lt;br&amp;gt;field (see step 6)&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Image:Questionnaire Started 5.png]]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== 5. WRITE IN YOUR ANSWERS&amp;lt;br&amp;gt;  ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Questionnaire Started 6.png|300px|right|top]]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; If “Add options” is chosen, type in your answers in the ”Answer Option Text” box.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Image:Questionnaire Started 7.png]]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== 6. VALID FORMATS TO COPY  ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;amp;gt; It is possible to copy-paste the answer options from Word or Excel if the content of the copied area is in the correct format.&amp;lt;br&amp;gt;The format in word has to be either:&amp;lt;br&amp;gt;1: Man&amp;lt;br&amp;gt;2: Woman&amp;lt;br&amp;gt;[value of the answer] [colon] [answer text] or listed in tables &lt;br /&gt;
&lt;br /&gt;
[[Image:Questionnaire Started 8.png]]&amp;lt;br&amp;gt;&amp;amp;gt; In Excel, every answer option has to be in different cells like the example above&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Image:Questionnaire Started 9.png|600px]] &lt;br /&gt;
&lt;br /&gt;
[[Category:Quick_start]]&lt;/div&gt;</summary>
		<author><name>Nguyenhuutrung</name></author>
	</entry>
	<entry>
		<id>https://wiki.catglobe.com/index.php?title=Questionnaire_Editor_-_Create_a_question&amp;diff=19708</id>
		<title>Questionnaire Editor - Create a question</title>
		<link rel="alternate" type="text/html" href="https://wiki.catglobe.com/index.php?title=Questionnaire_Editor_-_Create_a_question&amp;diff=19708"/>
		<updated>2011-11-03T07:59:11Z</updated>

		<summary type="html">&lt;p&gt;Nguyenhuutrung: /* QUESTIONNAIRE EDITOR - CREATE A QUESTION */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== QUESTIONNAIRE EDITOR - CREATE A QUESTION&amp;lt;br&amp;gt;  ==&lt;br /&gt;
&lt;br /&gt;
=== 1. CREATE NEW QUESTION&amp;lt;br&amp;gt;  ===&lt;br /&gt;
[[Image:Questionnaire Started 2.png|250px|right|top]]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; Open the questionnaire editor (see Questionnaire editor – how to get started).&amp;lt;br&amp;gt;&amp;amp;gt; In the questionnaire editor, click the ”Add new question” button. This action will create a new question below the current one.&amp;lt;br&amp;gt;&amp;amp;gt; Or use insert menu to insert new question.&amp;lt;br&amp;gt;&amp;amp;gt; Or through shortcuts.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Image:Questionnaire Started 1.png]]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== 2. NAMING THE QUESTION&amp;lt;br&amp;gt;  ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Questionnaire Started 3.png|250px|right|top]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; Type the question name under ”Question Label”.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; Formulate your question under ”Question Text”.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== 3. DEFINE THE TYPE OF QUESTION&amp;lt;br&amp;gt;  ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Questionnaire Started 4.png|250px|right|top]]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; Click the arrow next to “Single”.&amp;lt;br&amp;gt;&amp;amp;gt; The “Select form” menu shows supporting types in the questionnaire. The type “Single” is set as default for new created questions.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== 4. ADD OR COPY ANSWERS TO THE QUESTIONNAIRE&amp;lt;br&amp;gt;  ===&lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; Click “Add” to add answer options (see step 5).&amp;lt;br&amp;gt;&amp;amp;gt; If you already have a list of answers, you can copy them into the editor by copying the content (from Word or Excel) and clicking the “Paste” button to insert the answers into the answer options&amp;lt;br&amp;gt;field (see step 6)&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Image:Questionnaire Started 5.png]]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== 5. WRITE IN YOUR ANSWERS&amp;lt;br&amp;gt;  ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Questionnaire Started 6.png|300px|right|top]]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; If “Add options” is chosen, type in your answers in the ”Answer Option Text” box.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Image:Questionnaire Started 7.png]]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== 6. VALID FORMATS TO COPY  ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;amp;gt; It is possible to copy-paste the answer options from Word or Excel if the content of the copied area is in the correct format.&amp;lt;br&amp;gt;The format in word has to be either:&amp;lt;br&amp;gt;1: Man&amp;lt;br&amp;gt;2: Woman&amp;lt;br&amp;gt;[value of the answer] [colon] [answer text] or listed in tables &lt;br /&gt;
&lt;br /&gt;
[[Image:Questionnaire Started 8.png]]&amp;lt;br&amp;gt;&amp;amp;gt; In Excel, every answer option has to be in different cells like the example above&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Image:Questionnaire Started 9.png|500px]] &lt;br /&gt;
&lt;br /&gt;
[[Category:Quick_start]]&lt;/div&gt;</summary>
		<author><name>Nguyenhuutrung</name></author>
	</entry>
	<entry>
		<id>https://wiki.catglobe.com/index.php?title=Questionnaire_Editor_-_How_to_get_started&amp;diff=19707</id>
		<title>Questionnaire Editor - How to get started</title>
		<link rel="alternate" type="text/html" href="https://wiki.catglobe.com/index.php?title=Questionnaire_Editor_-_How_to_get_started&amp;diff=19707"/>
		<updated>2011-11-03T07:54:53Z</updated>

		<summary type="html">&lt;p&gt;Nguyenhuutrung: /* QUESTIONNAIRE EDITOR - HOW TO GET STARTED */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== QUESTIONNAIRE EDITOR - HOW TO GET STARTED&amp;lt;br&amp;gt;  ==&lt;br /&gt;
&lt;br /&gt;
=== 1. GO TO THE QUESTIONNAIRE MODULE  ===&lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; Go to “Tools” -&amp;amp;gt; “Questionnaires” -&amp;amp;gt; “Questionnaires”.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== 2. CREATE A NEW QUESTIONNAIRE&amp;lt;br&amp;gt;  ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Create a new questionnaire -1.png|200px|right|top]]&lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; Click the green icon: ”Create questionnaire”.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== 3. CHOOSE A NAME FOR YOUR QUESTIONNAIRE&amp;lt;br&amp;gt;  ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Create a new questionnaire -2.png|350px|right|top]] &lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; Type a name for the questionnaire in the ”Questionnaire name” box.&amp;lt;br&amp;gt;&amp;amp;gt; Find a layout for the questionnaire.&amp;lt;br&amp;gt;&amp;amp;gt; If this questionnaire is a CATI questionnaire, choose which CATI outcome set type this questionnaire shall have. CATI is a interviewer module.&amp;lt;br&amp;gt;&amp;amp;gt; Choose “Save” or “Save &amp;amp;amp; close” to start working with the editor.&amp;lt;br&amp;gt;&amp;amp;gt; The questionnaire editor will popup after saving.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== 4. QUESTIONNAIRE EDITOR&amp;lt;br&amp;gt;  ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Create a new questionnaire -3.png|250px|right|top]] &lt;br /&gt;
&lt;br /&gt;
1. The questionnaire has now been created and forth coming questions etc. can now be created in the open questionnaire editor &lt;br /&gt;
&lt;br /&gt;
[[Image:Create a new questionnaire -4.png]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== 5. OPENING THE QUESTIONNAIRE EDITOR&amp;lt;br&amp;gt; ===&lt;br /&gt;
&lt;br /&gt;
2. To access the questionnaire editor, highlight your questionnaire in the questionnaire list and click on “Template&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Create_a_new_questionnaire_-5.png|200px|right|top]]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Category:Quick_start]]&lt;/div&gt;</summary>
		<author><name>Nguyenhuutrung</name></author>
	</entry>
	<entry>
		<id>https://wiki.catglobe.com/index.php?title=Questionnaire_Editor_-_Create_a_question&amp;diff=19706</id>
		<title>Questionnaire Editor - Create a question</title>
		<link rel="alternate" type="text/html" href="https://wiki.catglobe.com/index.php?title=Questionnaire_Editor_-_Create_a_question&amp;diff=19706"/>
		<updated>2011-11-03T07:30:27Z</updated>

		<summary type="html">&lt;p&gt;Nguyenhuutrung: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
= QUESTIONNAIRE EDITOR - CREATE A QUESTION&amp;lt;br&amp;gt;  =&lt;br /&gt;
&lt;br /&gt;
== 1 CREATE NEW QUESTION&amp;lt;br&amp;gt;  ==&lt;br /&gt;
[[Image:Questionnaire Started 2.png|right|top]]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; Open the questionnaire editor (see Questionnaire editor – how to get started).&amp;lt;br&amp;gt;&amp;amp;gt; In the questionnaire editor, click the ”Add new question” button. This action will create a new question below the current one.&amp;lt;br&amp;gt;&amp;amp;gt; Or use insert menu to insert new question.&amp;lt;br&amp;gt;&amp;amp;gt; Or through shortcuts.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Image:Questionnaire Started 1.png]]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 2 NAMING THE QUESTION&amp;lt;br&amp;gt;  ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Questionnaire Started 3.png|right|top]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; Type the question name under ”Question Label”.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; Formulate your question under ”Question Text”.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 3 DEFINE THE TYPE OF QUESTION&amp;lt;br&amp;gt;  ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Questionnaire Started 4.png|right|top]]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; Click the arrow next to “Single”.&amp;lt;br&amp;gt;&amp;amp;gt; The “Select form” menu shows supporting types in the questionnaire. The type “Single” is set as default for new created questions.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 4 ADD OR COPY ANSWERS TO THE QUESTIONNAIRE&amp;lt;br&amp;gt;  ==&lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; Click “Add” to add answer options (see step 5).&amp;lt;br&amp;gt;&amp;amp;gt; If you already have a list of answers, you can copy them into the editor by copying the content (from Word or Excel) and clicking the “Paste” button to insert the answers into the answer options&amp;lt;br&amp;gt;field (see step 6)&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Image:Questionnaire Started 5.png]]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== 5 WRITE IN YOUR ANSWERS&amp;lt;br&amp;gt;  ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Questionnaire Started 6.png|right|top]]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;amp;gt; If “Add options” is chosen, type in your answers in the ”Answer Option Text” box.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Image:Questionnaire Started 7.png]]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== 6 VALID FORMATS TO COPY  ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;amp;gt; It is possible to copy-paste the answer options from Word or Excel if the content of the copied area is in the correct format.&amp;lt;br&amp;gt;The format in word has to be either:&amp;lt;br&amp;gt;1: Man&amp;lt;br&amp;gt;2: Woman&amp;lt;br&amp;gt;[value of the answer] [colon] [answer text] or listed in tables &lt;br /&gt;
&lt;br /&gt;
[[Image:Questionnaire Started 8.png]]&amp;lt;br&amp;gt;&amp;amp;gt; In Excel, every answer option has to be in different cells like the example above&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Image:Questionnaire Started 9.png]] &lt;br /&gt;
&lt;br /&gt;
[[Category:Quick_start]]&lt;/div&gt;</summary>
		<author><name>Nguyenhuutrung</name></author>
	</entry>
</feed>