<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[QP School - All Forums]]></title>
		<link>https://qomplainerzschool.lima-city.de/</link>
		<description><![CDATA[QP School - https://qomplainerzschool.lima-city.de]]></description>
		<pubDate>Fri, 03 Apr 2026 22:57:39 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[SELECT statement with MS Access SQL]]></title>
			<link>https://qomplainerzschool.lima-city.de/showthread.php?tid=5284</link>
			<pubDate>Thu, 27 Jul 2023 17:35:07 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://qomplainerzschool.lima-city.de/member.php?action=profile&uid=1">Qomplainerz</a>]]></dc:creator>
			<guid isPermaLink="false">https://qomplainerzschool.lima-city.de/showthread.php?tid=5284</guid>
			<description><![CDATA[Example:<br />
<br />
SELECT employee_id, first_name, job_title<br />
FROM employees<br />
WHERE job_title = 'Manager';<br />
<br />
Let's break down the SQL code:<br />
<br />
SELECT: This keyword indicates that we want to retrieve data from the table.<br />
employee_id, first_name, job_title: These are the columns we want to retrieve data from. <br />
We specified three columns: "employee_id," "first_name," and "job_title."<br />
FROM: This keyword indicates the table from which we want to retrieve data. <br />
In this case, we want data from the "employees" table.<br />
WHERE: This optional keyword is used for filtering the rows. <br />
We can specify a condition to retrieve only those rows that satisfy the given condition.<br />
job_title = 'Manager': This is the condition specified in the WHERE clause. <br />
It means we only want to retrieve rows where the "job_title" column has the value "Manager."<br />
<br />
When you run this SQL code as a query in Microsoft Access, it will return a result set containing the "employee_id," "first_name," and "job_title" columns for all employees who have the job title "Manager." The result will be displayed in the Datasheet View, showing only the relevant information based on the specified condition.]]></description>
			<content:encoded><![CDATA[Example:<br />
<br />
SELECT employee_id, first_name, job_title<br />
FROM employees<br />
WHERE job_title = 'Manager';<br />
<br />
Let's break down the SQL code:<br />
<br />
SELECT: This keyword indicates that we want to retrieve data from the table.<br />
employee_id, first_name, job_title: These are the columns we want to retrieve data from. <br />
We specified three columns: "employee_id," "first_name," and "job_title."<br />
FROM: This keyword indicates the table from which we want to retrieve data. <br />
In this case, we want data from the "employees" table.<br />
WHERE: This optional keyword is used for filtering the rows. <br />
We can specify a condition to retrieve only those rows that satisfy the given condition.<br />
job_title = 'Manager': This is the condition specified in the WHERE clause. <br />
It means we only want to retrieve rows where the "job_title" column has the value "Manager."<br />
<br />
When you run this SQL code as a query in Microsoft Access, it will return a result set containing the "employee_id," "first_name," and "job_title" columns for all employees who have the job title "Manager." The result will be displayed in the Datasheet View, showing only the relevant information based on the specified condition.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[SELECT statement with the MS Access GUI]]></title>
			<link>https://qomplainerzschool.lima-city.de/showthread.php?tid=5283</link>
			<pubDate>Thu, 27 Jul 2023 17:31:50 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://qomplainerzschool.lima-city.de/member.php?action=profile&uid=1">Qomplainerz</a>]]></dc:creator>
			<guid isPermaLink="false">https://qomplainerzschool.lima-city.de/showthread.php?tid=5283</guid>
			<description><![CDATA[Let's walk through an example of the SELECT statement step by step. <br />
Suppose we have a table named "employees" in the Microsoft Access database with the following columns: <br />
"employee_id," "first_name," "last_name," "job_title," and "salary."<br />
<br />
Step 1: Connect to the Database<br />
First, you need to open Microsoft Access and open the database that contains the "employees" table.<br />
<br />
Step 2: Launch the Query Design View<br />
To execute a SELECT statement, you can create a query in Access using the Query Design View.<br />
<br />
    Click on the "Create" tab in the top menu.<br />
    Click on "Query Design" in the "Queries" group.<br />
<br />
Step 3: Add the Table to the Query Design View<br />
In the Query Design View, you will see the "Show Table" dialog. <br />
Add the "employees" table to the query design by double-clicking on it or selecting it and clicking the "Add" button.<br />
<br />
Step 4: Select Columns to Retrieve Data<br />
You will see the "employees" table added to the Query Design View with all its columns. <br />
To specify which columns you want to retrieve, drag and drop them from the table grid to the query design area.<br />
<br />
Let's say we want to retrieve the "employee_id," "first_name," and "job_title" columns:<br />
<br />
Step 5: Specify the Criteria (Optional)<br />
If you want to filter the results based on specific conditions, you can use the "Criteria" row in the query design grid. <br />
For example, if you only want to retrieve employees with a certain job title (e.g., "Manager"), you can add the condition in the "Criteria" row for the "job_title" column:<br />
<br />
Step 6: Run the Query<br />
Once you have defined the SELECT statement in the Query Design View, click the "Run" button (it looks like a red exclamation mark) in the top menu to execute the query.<br />
<br />
Step 7: View the Results<br />
After running the query, you will see the results displayed in the Datasheet View. <br />
The Datasheet View will show the selected columns from the "employees" table, filtered based on any conditions you specified.<br />
<br />
That's it! You have successfully executed a SELECT statement in Microsoft Access to retrieve specific columns from the "employees" table, and optionally filtered the results based on certain criteria.<br />
<br />
Remember, you can save the query for future use or modify it as needed. <br />
SELECT statements are the foundation of data retrieval in SQL, allowing you to view specific information from the database tables.]]></description>
			<content:encoded><![CDATA[Let's walk through an example of the SELECT statement step by step. <br />
Suppose we have a table named "employees" in the Microsoft Access database with the following columns: <br />
"employee_id," "first_name," "last_name," "job_title," and "salary."<br />
<br />
Step 1: Connect to the Database<br />
First, you need to open Microsoft Access and open the database that contains the "employees" table.<br />
<br />
Step 2: Launch the Query Design View<br />
To execute a SELECT statement, you can create a query in Access using the Query Design View.<br />
<br />
    Click on the "Create" tab in the top menu.<br />
    Click on "Query Design" in the "Queries" group.<br />
<br />
Step 3: Add the Table to the Query Design View<br />
In the Query Design View, you will see the "Show Table" dialog. <br />
Add the "employees" table to the query design by double-clicking on it or selecting it and clicking the "Add" button.<br />
<br />
Step 4: Select Columns to Retrieve Data<br />
You will see the "employees" table added to the Query Design View with all its columns. <br />
To specify which columns you want to retrieve, drag and drop them from the table grid to the query design area.<br />
<br />
Let's say we want to retrieve the "employee_id," "first_name," and "job_title" columns:<br />
<br />
Step 5: Specify the Criteria (Optional)<br />
If you want to filter the results based on specific conditions, you can use the "Criteria" row in the query design grid. <br />
For example, if you only want to retrieve employees with a certain job title (e.g., "Manager"), you can add the condition in the "Criteria" row for the "job_title" column:<br />
<br />
Step 6: Run the Query<br />
Once you have defined the SELECT statement in the Query Design View, click the "Run" button (it looks like a red exclamation mark) in the top menu to execute the query.<br />
<br />
Step 7: View the Results<br />
After running the query, you will see the results displayed in the Datasheet View. <br />
The Datasheet View will show the selected columns from the "employees" table, filtered based on any conditions you specified.<br />
<br />
That's it! You have successfully executed a SELECT statement in Microsoft Access to retrieve specific columns from the "employees" table, and optionally filtered the results based on certain criteria.<br />
<br />
Remember, you can save the query for future use or modify it as needed. <br />
SELECT statements are the foundation of data retrieval in SQL, allowing you to view specific information from the database tables.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Creating hyperlinks in HTML5]]></title>
			<link>https://qomplainerzschool.lima-city.de/showthread.php?tid=5282</link>
			<pubDate>Thu, 27 Jul 2023 15:23:52 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://qomplainerzschool.lima-city.de/member.php?action=profile&uid=1">Qomplainerz</a>]]></dc:creator>
			<guid isPermaLink="false">https://qomplainerzschool.lima-city.de/showthread.php?tid=5282</guid>
			<description><![CDATA[The a element in HTML is used to create hyperlinks, allowing you to link to other web pages, resources, files, or specific sections within a page.<br />
<br />
Example: <br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;!DOCTYPE html&gt;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
  &lt;meta charset="UTF-8"&gt;<br />
  &lt;title&gt;Hyperlink Example&lt;/title&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
  &lt;p&gt;Welcome to my website! Check out &lt;a href="https://openai.com"&gt;OpenAI&lt;/a&gt;.&lt;/p&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</code></div></div><br />
Explanation:<br />
<br />
Opening and Closing Tags: <br />
The a element is an inline element and requires an opening a tag and a closing a tag to create a link. <br />
The content between the opening and closing tags is what's displayed as the clickable link.<br />
<br />
href Attribute: <br />
The most crucial attribute of the a element is href, which specifies the destination URL or the target of the link. <br />
In the example, href="https://openai.com" tells the browser to navigate to the OpenAI website when the link is clicked.<br />
<br />
Link Text: <br />
The content between the opening and closing a tags is known as the link text. <br />
In our example, the link text is "OpenAI." <br />
When the user clicks on this text, they will be redirected to the URL specified in the href attribute.<br />
<br />
Absolute URL: <br />
In the example, we used an absolute URL (<a href="https://openai.com" target="_blank" rel="noopener" class="mycode_url">https://openai.com</a>) as the value for the href attribute. <br />
This means the link will take the user directly to the OpenAI website.<br />
<br />
Relative URL (optional): <br />
Instead of an absolute URL, you can also use a relative URL for the href attribute. <br />
A relative URL is relative to the current web page's location. <br />
For example, if your current page is in the same directory as another page named about.html, you can use href="about.html" to create a link to the "about.html" page.<br />
<br />
Linking to Files: <br />
Besides web pages, you can use the a element to link to various resources like images, PDFs, videos, and more. <br />
Just provide the correct URL to the file in the href attribute.<br />
<br />
Linking to Sections within a Page (optional): <br />
You can also link to specific sections within the same page by using the id attribute on an element and providing its value as the destination of the link. For example:<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;!DOCTYPE html&gt;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
  &lt;meta charset="UTF-8"&gt;<br />
  &lt;title&gt;Internal Link Example&lt;/title&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
  &lt;h2 id="section1"&gt;Section 1&lt;/h2&gt;<br />
  &lt;p&gt;Welcome to Section 1. &lt;a href="#section2"&gt;Jump to Section 2&lt;/a&gt;.&lt;/p&gt;<br />
<br />
  &lt;h2 id="section2"&gt;Section 2&lt;/h2&gt;<br />
  &lt;p&gt;Welcome to Section 2. &lt;a href="#section1"&gt;Go back to Section 1&lt;/a&gt;.&lt;/p&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</code></div></div><br />
In this example, we've created two sections with h2 headings, each having a unique id attribute. <br />
The links within the paragraphs allow the user to jump back and forth between the sections within the same page.<br />
<br />
Opening Links in a New Tab (optional): By default, when a user clicks on a link, the new content replaces the current page. <br />
However, you can add the target="_blank" attribute to the a element to open the link in a new browser tab or window.]]></description>
			<content:encoded><![CDATA[The a element in HTML is used to create hyperlinks, allowing you to link to other web pages, resources, files, or specific sections within a page.<br />
<br />
Example: <br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;!DOCTYPE html&gt;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
  &lt;meta charset="UTF-8"&gt;<br />
  &lt;title&gt;Hyperlink Example&lt;/title&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
  &lt;p&gt;Welcome to my website! Check out &lt;a href="https://openai.com"&gt;OpenAI&lt;/a&gt;.&lt;/p&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</code></div></div><br />
Explanation:<br />
<br />
Opening and Closing Tags: <br />
The a element is an inline element and requires an opening a tag and a closing a tag to create a link. <br />
The content between the opening and closing tags is what's displayed as the clickable link.<br />
<br />
href Attribute: <br />
The most crucial attribute of the a element is href, which specifies the destination URL or the target of the link. <br />
In the example, href="https://openai.com" tells the browser to navigate to the OpenAI website when the link is clicked.<br />
<br />
Link Text: <br />
The content between the opening and closing a tags is known as the link text. <br />
In our example, the link text is "OpenAI." <br />
When the user clicks on this text, they will be redirected to the URL specified in the href attribute.<br />
<br />
Absolute URL: <br />
In the example, we used an absolute URL (<a href="https://openai.com" target="_blank" rel="noopener" class="mycode_url">https://openai.com</a>) as the value for the href attribute. <br />
This means the link will take the user directly to the OpenAI website.<br />
<br />
Relative URL (optional): <br />
Instead of an absolute URL, you can also use a relative URL for the href attribute. <br />
A relative URL is relative to the current web page's location. <br />
For example, if your current page is in the same directory as another page named about.html, you can use href="about.html" to create a link to the "about.html" page.<br />
<br />
Linking to Files: <br />
Besides web pages, you can use the a element to link to various resources like images, PDFs, videos, and more. <br />
Just provide the correct URL to the file in the href attribute.<br />
<br />
Linking to Sections within a Page (optional): <br />
You can also link to specific sections within the same page by using the id attribute on an element and providing its value as the destination of the link. For example:<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;!DOCTYPE html&gt;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
  &lt;meta charset="UTF-8"&gt;<br />
  &lt;title&gt;Internal Link Example&lt;/title&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
  &lt;h2 id="section1"&gt;Section 1&lt;/h2&gt;<br />
  &lt;p&gt;Welcome to Section 1. &lt;a href="#section2"&gt;Jump to Section 2&lt;/a&gt;.&lt;/p&gt;<br />
<br />
  &lt;h2 id="section2"&gt;Section 2&lt;/h2&gt;<br />
  &lt;p&gt;Welcome to Section 2. &lt;a href="#section1"&gt;Go back to Section 1&lt;/a&gt;.&lt;/p&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</code></div></div><br />
In this example, we've created two sections with h2 headings, each having a unique id attribute. <br />
The links within the paragraphs allow the user to jump back and forth between the sections within the same page.<br />
<br />
Opening Links in a New Tab (optional): By default, when a user clicks on a link, the new content replaces the current page. <br />
However, you can add the target="_blank" attribute to the a element to open the link in a new browser tab or window.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[What's new in HTML5?]]></title>
			<link>https://qomplainerzschool.lima-city.de/showthread.php?tid=5281</link>
			<pubDate>Thu, 27 Jul 2023 14:48:36 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://qomplainerzschool.lima-city.de/member.php?action=profile&uid=1">Qomplainerz</a>]]></dc:creator>
			<guid isPermaLink="false">https://qomplainerzschool.lima-city.de/showthread.php?tid=5281</guid>
			<description><![CDATA[1. Semantic elements:<br />
<br />
HTML5 introduces many new semantic elements that help describe the structure of the content better, making it easier for search engines and screen readers to understand the page's purpose. Some key semantic elements include header, nav, main, article, section, footer, aside, etc.<br />
<br />
2. Multimedia:<br />
<br />
HTML5 provides built-in support for audio and video without the need for plugins like Flash. <br />
The audio and video elements allow embedding media directly into the page.<br />
<br />
Example:<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;audio controls&gt;<br />
  &lt;source src="audio.mp3" type="audio/mpeg"&gt;<br />
  Your browser does not support the audio element.<br />
&lt;/audio&gt;</code></div></div><br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;video controls width="640" height="360"&gt;<br />
  &lt;source src="video.mp4" type="video/mp4"&gt;<br />
  Your browser does not support the video element.<br />
&lt;/video&gt;</code></div></div><br />
<br />
3. Form enhancements:<br />
<br />
HTML5 enhances form handling with new input types, validation attributes, and the datalist element for autocomplete suggestions.<br />
<br />
Example:<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;input type="email" required&gt;<br />
&lt;input type="date"&gt;<br />
&lt;input type="range" min="0" max="100"&gt;<br />
&lt;input type="color"&gt;<br />
&lt;input type="search" list="search-suggestions"&gt;<br />
&lt;datalist id="search-suggestions"&gt;<br />
  &lt;option value="Keyword 1"&gt;<br />
  &lt;option value="Keyword 2"&gt;<br />
&lt;/datalist&gt;</code></div></div><br />
<br />
4. Canvas:<br />
<br />
The canvas element allows dynamic rendering of graphics, charts, animations, and games using JavaScript. <br />
It provides a 2D drawing context and, with WebGL, can even support 3D graphics.<br />
<br />
5. Offline web applications:<br />
<br />
HTML5 includes an Application Cache feature that enables web applications to work offline and load faster by storing resources locally. <br />
This is achieved using the manifest attribute in the html tag.<br />
<br />
6. Geolocation:<br />
<br />
HTML5 supports geolocation, allowing websites to access the user's location through the Geolocation API.<br />
<br />
7. Web storage:<br />
<br />
HTML5 introduces Web Storage (localStorage and sessionStorage) to store data locally on the user's browser for a more extended period compared to cookies.<br />
<br />
8. Web workers:<br />
<br />
Web Workers allow running JavaScript code in the background without interfering with the page's responsiveness, enabling multi-threading.<br />
<br />
9. Drag and Drop:<br />
<br />
HTML5 provides native support for drag-and-drop interactions, making it easier to implement intuitive UI elements.]]></description>
			<content:encoded><![CDATA[1. Semantic elements:<br />
<br />
HTML5 introduces many new semantic elements that help describe the structure of the content better, making it easier for search engines and screen readers to understand the page's purpose. Some key semantic elements include header, nav, main, article, section, footer, aside, etc.<br />
<br />
2. Multimedia:<br />
<br />
HTML5 provides built-in support for audio and video without the need for plugins like Flash. <br />
The audio and video elements allow embedding media directly into the page.<br />
<br />
Example:<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;audio controls&gt;<br />
  &lt;source src="audio.mp3" type="audio/mpeg"&gt;<br />
  Your browser does not support the audio element.<br />
&lt;/audio&gt;</code></div></div><br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;video controls width="640" height="360"&gt;<br />
  &lt;source src="video.mp4" type="video/mp4"&gt;<br />
  Your browser does not support the video element.<br />
&lt;/video&gt;</code></div></div><br />
<br />
3. Form enhancements:<br />
<br />
HTML5 enhances form handling with new input types, validation attributes, and the datalist element for autocomplete suggestions.<br />
<br />
Example:<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;input type="email" required&gt;<br />
&lt;input type="date"&gt;<br />
&lt;input type="range" min="0" max="100"&gt;<br />
&lt;input type="color"&gt;<br />
&lt;input type="search" list="search-suggestions"&gt;<br />
&lt;datalist id="search-suggestions"&gt;<br />
  &lt;option value="Keyword 1"&gt;<br />
  &lt;option value="Keyword 2"&gt;<br />
&lt;/datalist&gt;</code></div></div><br />
<br />
4. Canvas:<br />
<br />
The canvas element allows dynamic rendering of graphics, charts, animations, and games using JavaScript. <br />
It provides a 2D drawing context and, with WebGL, can even support 3D graphics.<br />
<br />
5. Offline web applications:<br />
<br />
HTML5 includes an Application Cache feature that enables web applications to work offline and load faster by storing resources locally. <br />
This is achieved using the manifest attribute in the html tag.<br />
<br />
6. Geolocation:<br />
<br />
HTML5 supports geolocation, allowing websites to access the user's location through the Geolocation API.<br />
<br />
7. Web storage:<br />
<br />
HTML5 introduces Web Storage (localStorage and sessionStorage) to store data locally on the user's browser for a more extended period compared to cookies.<br />
<br />
8. Web workers:<br />
<br />
Web Workers allow running JavaScript code in the background without interfering with the page's responsiveness, enabling multi-threading.<br />
<br />
9. Drag and Drop:<br />
<br />
HTML5 provides native support for drag-and-drop interactions, making it easier to implement intuitive UI elements.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[What is HTML5?]]></title>
			<link>https://qomplainerzschool.lima-city.de/showthread.php?tid=5279</link>
			<pubDate>Thu, 27 Jul 2023 14:43:27 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://qomplainerzschool.lima-city.de/member.php?action=profile&uid=1">Qomplainerz</a>]]></dc:creator>
			<guid isPermaLink="false">https://qomplainerzschool.lima-city.de/showthread.php?tid=5279</guid>
			<description><![CDATA[HTML5 (Hypertext Markup Language 5) is the latest version of the standard markup language used for creating and structuring content on the web. <br />
It comes with several new features and improvements over its predecessors.]]></description>
			<content:encoded><![CDATA[HTML5 (Hypertext Markup Language 5) is the latest version of the standard markup language used for creating and structuring content on the web. <br />
It comes with several new features and improvements over its predecessors.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Neck isometric exercises]]></title>
			<link>https://qomplainerzschool.lima-city.de/showthread.php?tid=5278</link>
			<pubDate>Thu, 27 Jul 2023 13:44:11 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://qomplainerzschool.lima-city.de/member.php?action=profile&uid=1">Qomplainerz</a>]]></dc:creator>
			<guid isPermaLink="false">https://qomplainerzschool.lima-city.de/showthread.php?tid=5278</guid>
			<description><![CDATA[Place your hand on your forehead.<br />
Push your head forward against your hand while resisting with your hand.<br />
Hold the tension for 5-10 seconds, then relax.<br />
Repeat the isometric push in all directions: forward, backward (placing hand on the back of your head), and sideways (placing hand against the side of your head).<br />
Repeat each direction 5-10 times.]]></description>
			<content:encoded><![CDATA[Place your hand on your forehead.<br />
Push your head forward against your hand while resisting with your hand.<br />
Hold the tension for 5-10 seconds, then relax.<br />
Repeat the isometric push in all directions: forward, backward (placing hand on the back of your head), and sideways (placing hand against the side of your head).<br />
Repeat each direction 5-10 times.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Shoulder shrug]]></title>
			<link>https://qomplainerzschool.lima-city.de/showthread.php?tid=5277</link>
			<pubDate>Thu, 27 Jul 2023 13:43:51 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://qomplainerzschool.lima-city.de/member.php?action=profile&uid=1">Qomplainerz</a>]]></dc:creator>
			<guid isPermaLink="false">https://qomplainerzschool.lima-city.de/showthread.php?tid=5277</guid>
			<description><![CDATA[Sit or stand with your back straight.<br />
Slowly lift both shoulders towards your ears.<br />
Hold for 5-10 seconds, then relax.<br />
Repeat the shoulder shrug 10-15 times.]]></description>
			<content:encoded><![CDATA[Sit or stand with your back straight.<br />
Slowly lift both shoulders towards your ears.<br />
Hold for 5-10 seconds, then relax.<br />
Repeat the shoulder shrug 10-15 times.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Neck retraction]]></title>
			<link>https://qomplainerzschool.lima-city.de/showthread.php?tid=5276</link>
			<pubDate>Thu, 27 Jul 2023 13:43:28 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://qomplainerzschool.lima-city.de/member.php?action=profile&uid=1">Qomplainerz</a>]]></dc:creator>
			<guid isPermaLink="false">https://qomplainerzschool.lima-city.de/showthread.php?tid=5276</guid>
			<description><![CDATA[Sit or stand with your back straight.<br />
Tuck your chin in towards your neck without tilting your head up or down.<br />
Hold the position for 5-10 seconds.<br />
Relax and repeat 5-10 times.]]></description>
			<content:encoded><![CDATA[Sit or stand with your back straight.<br />
Tuck your chin in towards your neck without tilting your head up or down.<br />
Hold the position for 5-10 seconds.<br />
Relax and repeat 5-10 times.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Neck flexion and extension]]></title>
			<link>https://qomplainerzschool.lima-city.de/showthread.php?tid=5275</link>
			<pubDate>Thu, 27 Jul 2023 13:42:57 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://qomplainerzschool.lima-city.de/member.php?action=profile&uid=1">Qomplainerz</a>]]></dc:creator>
			<guid isPermaLink="false">https://qomplainerzschool.lima-city.de/showthread.php?tid=5275</guid>
			<description><![CDATA[Sit or stand with your back straight.<br />
Slowly tilt your head forward, bringing your chin toward your chest (flexion).<br />
Hold the stretch for 15-30 seconds.<br />
Gently lift your head and look up towards the ceiling (extension).<br />
Hold for 15-30 seconds.<br />
Repeat the flexion and extension stretches 2-3 times each.]]></description>
			<content:encoded><![CDATA[Sit or stand with your back straight.<br />
Slowly tilt your head forward, bringing your chin toward your chest (flexion).<br />
Hold the stretch for 15-30 seconds.<br />
Gently lift your head and look up towards the ceiling (extension).<br />
Hold for 15-30 seconds.<br />
Repeat the flexion and extension stretches 2-3 times each.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Neck rotation]]></title>
			<link>https://qomplainerzschool.lima-city.de/showthread.php?tid=5274</link>
			<pubDate>Thu, 27 Jul 2023 13:42:31 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://qomplainerzschool.lima-city.de/member.php?action=profile&uid=1">Qomplainerz</a>]]></dc:creator>
			<guid isPermaLink="false">https://qomplainerzschool.lima-city.de/showthread.php?tid=5274</guid>
			<description><![CDATA[Sit or stand with your back straight.<br />
Slowly turn your head to one side, looking over your shoulder.<br />
Hold the stretch for 15-30 seconds.<br />
Return to the starting position and repeat on the other side.<br />
Perform this stretch 2-3 times on each side.]]></description>
			<content:encoded><![CDATA[Sit or stand with your back straight.<br />
Slowly turn your head to one side, looking over your shoulder.<br />
Hold the stretch for 15-30 seconds.<br />
Return to the starting position and repeat on the other side.<br />
Perform this stretch 2-3 times on each side.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Neck tilt]]></title>
			<link>https://qomplainerzschool.lima-city.de/showthread.php?tid=5273</link>
			<pubDate>Thu, 27 Jul 2023 13:42:10 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://qomplainerzschool.lima-city.de/member.php?action=profile&uid=1">Qomplainerz</a>]]></dc:creator>
			<guid isPermaLink="false">https://qomplainerzschool.lima-city.de/showthread.php?tid=5273</guid>
			<description><![CDATA[Sit or stand with your back straight.<br />
Slowly tilt your head to one side, bringing your ear toward your shoulder.<br />
Hold the stretch for 15-30 seconds.<br />
Return to the starting position and repeat on the other side.<br />
Do this stretch 2-3 times on each side.]]></description>
			<content:encoded><![CDATA[Sit or stand with your back straight.<br />
Slowly tilt your head to one side, bringing your ear toward your shoulder.<br />
Hold the stretch for 15-30 seconds.<br />
Return to the starting position and repeat on the other side.<br />
Do this stretch 2-3 times on each side.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Format cells in a range with bold font and yellow background color]]></title>
			<link>https://qomplainerzschool.lima-city.de/showthread.php?tid=5272</link>
			<pubDate>Thu, 27 Jul 2023 13:26:06 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://qomplainerzschool.lima-city.de/member.php?action=profile&uid=1">Qomplainerz</a>]]></dc:creator>
			<guid isPermaLink="false">https://qomplainerzschool.lima-city.de/showthread.php?tid=5272</guid>
			<description><![CDATA[Example:<br />
<br />
Sub FormatCellsInRange()<br />
    Dim ws As Worksheet<br />
    Dim formatRange As Range<br />
<br />
    'Set the worksheet where the data is located<br />
    Set ws = ThisWorkbook.Sheets("Sheet1")<br />
<br />
    'Set the range of cells to be formatted (adjust the range as per your data)<br />
    Set formatRange = ws.Range("A1:B5")<br />
<br />
    'Apply formatting to the range<br />
    With formatRange<br />
        .Font.Bold = True<br />
        .Interior.Color = RGB(255, 255, 0) 'Yellow color<br />
    End With<br />
End Sub<br />
<br />
Explanation:<br />
<br />
The code defines a subroutine named FormatCellsInRange.<br />
It declares variables for the worksheet (ws) and the range of cells to be formatted (formatRange).<br />
Set ws = ThisWorkbook.Sheets("Sheet1") specifies the worksheet ("Sheet1") where the data is located.<br />
Set formatRange = ws.Range("A1:B5") sets the range A1:B5 to be formatted. <br />
Adjust the range as per your data.<br />
The With block is used to apply formatting to the formatRange.<br />
.Font.Bold = True makes the font bold for all cells in the range.<br />
.Interior.Color = RGB(255, 255, 0) sets the background color of all cells in the range to yellow using the RGB value (255, 255, 0).]]></description>
			<content:encoded><![CDATA[Example:<br />
<br />
Sub FormatCellsInRange()<br />
    Dim ws As Worksheet<br />
    Dim formatRange As Range<br />
<br />
    'Set the worksheet where the data is located<br />
    Set ws = ThisWorkbook.Sheets("Sheet1")<br />
<br />
    'Set the range of cells to be formatted (adjust the range as per your data)<br />
    Set formatRange = ws.Range("A1:B5")<br />
<br />
    'Apply formatting to the range<br />
    With formatRange<br />
        .Font.Bold = True<br />
        .Interior.Color = RGB(255, 255, 0) 'Yellow color<br />
    End With<br />
End Sub<br />
<br />
Explanation:<br />
<br />
The code defines a subroutine named FormatCellsInRange.<br />
It declares variables for the worksheet (ws) and the range of cells to be formatted (formatRange).<br />
Set ws = ThisWorkbook.Sheets("Sheet1") specifies the worksheet ("Sheet1") where the data is located.<br />
Set formatRange = ws.Range("A1:B5") sets the range A1:B5 to be formatted. <br />
Adjust the range as per your data.<br />
The With block is used to apply formatting to the formatRange.<br />
.Font.Bold = True makes the font bold for all cells in the range.<br />
.Interior.Color = RGB(255, 255, 0) sets the background color of all cells in the range to yellow using the RGB value (255, 255, 0).]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Copy data to another worksheet]]></title>
			<link>https://qomplainerzschool.lima-city.de/showthread.php?tid=5271</link>
			<pubDate>Thu, 27 Jul 2023 13:24:59 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://qomplainerzschool.lima-city.de/member.php?action=profile&uid=1">Qomplainerz</a>]]></dc:creator>
			<guid isPermaLink="false">https://qomplainerzschool.lima-city.de/showthread.php?tid=5271</guid>
			<description><![CDATA[Example:<br />
<br />
Sub CopyDataToAnotherSheet()<br />
    Dim sourceWs As Worksheet<br />
    Dim targetWs As Worksheet<br />
    Dim lastRowSource As Long<br />
    Dim lastRowTarget As Long<br />
<br />
    'Set the source worksheet where the data is located<br />
    Set sourceWs = ThisWorkbook.Sheets("SourceSheet")<br />
<br />
    'Set the target worksheet where the data will be copied<br />
    Set targetWs = ThisWorkbook.Sheets("TargetSheet")<br />
<br />
    'Find the last row with data in the source worksheet<br />
    lastRowSource = sourceWs.Cells(sourceWs.Rows.Count, "A").End(xlUp).Row<br />
<br />
    'Find the last row with data in the target worksheet<br />
    lastRowTarget = targetWs.Cells(targetWs.Rows.Count, "A").End(xlUp).Row<br />
<br />
    'Copy the data from the source worksheet to the target worksheet<br />
    sourceWs.Range("A1:A" &amp; lastRowSource).Copy targetWs.Range("A" &amp; lastRowTarget + 1)<br />
End Sub<br />
<br />
Explanation:<br />
<br />
The code defines a subroutine named CopyDataToAnotherSheet.<br />
It declares variables for the source worksheet (sourceWs), the target worksheet (targetWs), and the last row with data in each worksheet (lastRowSource and lastRowTarget).<br />
Set sourceWs = ThisWorkbook.Sheets("SourceSheet") specifies the source worksheet ("SourceSheet") where the data is located.<br />
Set targetWs = ThisWorkbook.Sheets("TargetSheet") specifies the target worksheet ("TargetSheet") where the data will be copied.<br />
The lastRowSource variable is determined using sourceWs.Cells(sourceWs.Rows.Count, "A").End(xlUp).Row, which finds the last row with data in column A of the source worksheet.<br />
The lastRowTarget variable is determined using targetWs.Cells(targetWs.Rows.Count, "A").End(xlUp).Row, which finds the last row with data in column A of the target worksheet.<br />
The data from column A of the source worksheet (from A1 to the last row with data) is copied to the target worksheet starting from the next empty row in column A.]]></description>
			<content:encoded><![CDATA[Example:<br />
<br />
Sub CopyDataToAnotherSheet()<br />
    Dim sourceWs As Worksheet<br />
    Dim targetWs As Worksheet<br />
    Dim lastRowSource As Long<br />
    Dim lastRowTarget As Long<br />
<br />
    'Set the source worksheet where the data is located<br />
    Set sourceWs = ThisWorkbook.Sheets("SourceSheet")<br />
<br />
    'Set the target worksheet where the data will be copied<br />
    Set targetWs = ThisWorkbook.Sheets("TargetSheet")<br />
<br />
    'Find the last row with data in the source worksheet<br />
    lastRowSource = sourceWs.Cells(sourceWs.Rows.Count, "A").End(xlUp).Row<br />
<br />
    'Find the last row with data in the target worksheet<br />
    lastRowTarget = targetWs.Cells(targetWs.Rows.Count, "A").End(xlUp).Row<br />
<br />
    'Copy the data from the source worksheet to the target worksheet<br />
    sourceWs.Range("A1:A" &amp; lastRowSource).Copy targetWs.Range("A" &amp; lastRowTarget + 1)<br />
End Sub<br />
<br />
Explanation:<br />
<br />
The code defines a subroutine named CopyDataToAnotherSheet.<br />
It declares variables for the source worksheet (sourceWs), the target worksheet (targetWs), and the last row with data in each worksheet (lastRowSource and lastRowTarget).<br />
Set sourceWs = ThisWorkbook.Sheets("SourceSheet") specifies the source worksheet ("SourceSheet") where the data is located.<br />
Set targetWs = ThisWorkbook.Sheets("TargetSheet") specifies the target worksheet ("TargetSheet") where the data will be copied.<br />
The lastRowSource variable is determined using sourceWs.Cells(sourceWs.Rows.Count, "A").End(xlUp).Row, which finds the last row with data in column A of the source worksheet.<br />
The lastRowTarget variable is determined using targetWs.Cells(targetWs.Rows.Count, "A").End(xlUp).Row, which finds the last row with data in column A of the target worksheet.<br />
The data from column A of the source worksheet (from A1 to the last row with data) is copied to the target worksheet starting from the next empty row in column A.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Autofill a series of numbers in a column]]></title>
			<link>https://qomplainerzschool.lima-city.de/showthread.php?tid=5270</link>
			<pubDate>Thu, 27 Jul 2023 13:23:58 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://qomplainerzschool.lima-city.de/member.php?action=profile&uid=1">Qomplainerz</a>]]></dc:creator>
			<guid isPermaLink="false">https://qomplainerzschool.lima-city.de/showthread.php?tid=5270</guid>
			<description><![CDATA[Example:<br />
<br />
Sub AutofillSeries()<br />
    Dim ws As Worksheet<br />
    Dim startValue As Integer<br />
    Dim endValue As Integer<br />
<br />
    'Set the worksheet where the series will be created<br />
    Set ws = ThisWorkbook.Sheets("Sheet1")<br />
<br />
    'Specify the start and end values for the series<br />
    startValue = 1<br />
    endValue = 10<br />
<br />
    'Enter the start value in the first cell of the series (A1)<br />
    ws.Range("A1").Value = startValue<br />
<br />
    'Autofill the series from the second cell (A2) to the end value (A10)<br />
    ws.Range("A1").AutoFill Destination:=ws.Range("A1:A10"), Type:=xlFillSeries<br />
End Sub<br />
<br />
Explanation:<br />
<br />
The code defines a subroutine named AutofillSeries.<br />
It declares variables for the worksheet (ws), the start value of the series (startValue), and the end value of the series (endValue).<br />
Set ws = ThisWorkbook.Sheets("Sheet1") specifies the worksheet ("Sheet1") where the series will be created.<br />
startValue = 1 and endValue = 10 set the start and end values for the series.<br />
The start value (1 in this example) is entered in cell A1 using ws.Range("A1").Value = startValue.<br />
The ws.Range("A1").AutoFill method is used to autofill the series from cell A2 to cell A10. <br />
Destination:=ws.Range("A1:A10") specifies the destination range for autofilling, and Type:=xlFillSeries indicates that it should be filled as a series.]]></description>
			<content:encoded><![CDATA[Example:<br />
<br />
Sub AutofillSeries()<br />
    Dim ws As Worksheet<br />
    Dim startValue As Integer<br />
    Dim endValue As Integer<br />
<br />
    'Set the worksheet where the series will be created<br />
    Set ws = ThisWorkbook.Sheets("Sheet1")<br />
<br />
    'Specify the start and end values for the series<br />
    startValue = 1<br />
    endValue = 10<br />
<br />
    'Enter the start value in the first cell of the series (A1)<br />
    ws.Range("A1").Value = startValue<br />
<br />
    'Autofill the series from the second cell (A2) to the end value (A10)<br />
    ws.Range("A1").AutoFill Destination:=ws.Range("A1:A10"), Type:=xlFillSeries<br />
End Sub<br />
<br />
Explanation:<br />
<br />
The code defines a subroutine named AutofillSeries.<br />
It declares variables for the worksheet (ws), the start value of the series (startValue), and the end value of the series (endValue).<br />
Set ws = ThisWorkbook.Sheets("Sheet1") specifies the worksheet ("Sheet1") where the series will be created.<br />
startValue = 1 and endValue = 10 set the start and end values for the series.<br />
The start value (1 in this example) is entered in cell A1 using ws.Range("A1").Value = startValue.<br />
The ws.Range("A1").AutoFill method is used to autofill the series from cell A2 to cell A10. <br />
Destination:=ws.Range("A1:A10") specifies the destination range for autofilling, and Type:=xlFillSeries indicates that it should be filled as a series.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Loop through columns and clear contents]]></title>
			<link>https://qomplainerzschool.lima-city.de/showthread.php?tid=5269</link>
			<pubDate>Thu, 27 Jul 2023 13:21:28 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://qomplainerzschool.lima-city.de/member.php?action=profile&uid=1">Qomplainerz</a>]]></dc:creator>
			<guid isPermaLink="false">https://qomplainerzschool.lima-city.de/showthread.php?tid=5269</guid>
			<description><![CDATA[Example:<br />
<br />
Sub ClearContentsInColumns()<br />
    Dim ws As Worksheet<br />
    Dim lastColumn As Long<br />
    Dim col As Long<br />
<br />
    'Set the worksheet where the data is located<br />
    Set ws = ThisWorkbook.Sheets("Sheet1")<br />
<br />
    'Find the last column with data in the worksheet<br />
    lastColumn = ws.Cells(1, ws.Columns.Count).End(xlToLeft).Column<br />
<br />
    'Loop through each column and clear the contents<br />
    For col = 1 To lastColumn<br />
        ws.Columns(col).ClearContents<br />
    Next col<br />
End Sub<br />
<br />
Explanation:<br />
<br />
The code defines a subroutine named ClearContentsInColumns.<br />
It declares variables for the worksheet (ws), the last column with data (lastColumn), and a loop counter (col).<br />
Set ws = ThisWorkbook.Sheets("Sheet1") specifies the worksheet ("Sheet1") where the data is located.<br />
The lastColumn variable is determined using ws.Cells(1, ws.Columns.Count).End(xlToLeft).Column, which finds the last column with data in the worksheet.<br />
The For loop iterates through each column from 1 to lastColumn.<br />
ws.Columns(col).ClearContents clears the contents of each cell in the current column (col) of the worksheet.]]></description>
			<content:encoded><![CDATA[Example:<br />
<br />
Sub ClearContentsInColumns()<br />
    Dim ws As Worksheet<br />
    Dim lastColumn As Long<br />
    Dim col As Long<br />
<br />
    'Set the worksheet where the data is located<br />
    Set ws = ThisWorkbook.Sheets("Sheet1")<br />
<br />
    'Find the last column with data in the worksheet<br />
    lastColumn = ws.Cells(1, ws.Columns.Count).End(xlToLeft).Column<br />
<br />
    'Loop through each column and clear the contents<br />
    For col = 1 To lastColumn<br />
        ws.Columns(col).ClearContents<br />
    Next col<br />
End Sub<br />
<br />
Explanation:<br />
<br />
The code defines a subroutine named ClearContentsInColumns.<br />
It declares variables for the worksheet (ws), the last column with data (lastColumn), and a loop counter (col).<br />
Set ws = ThisWorkbook.Sheets("Sheet1") specifies the worksheet ("Sheet1") where the data is located.<br />
The lastColumn variable is determined using ws.Cells(1, ws.Columns.Count).End(xlToLeft).Column, which finds the last column with data in the worksheet.<br />
The For loop iterates through each column from 1 to lastColumn.<br />
ws.Columns(col).ClearContents clears the contents of each cell in the current column (col) of the worksheet.]]></content:encoded>
		</item>
	</channel>
</rss>