
<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Raza Bayani, Author at TECHNIG</title>
	<atom:link href="https://www.technig.com/author/ghulam-raza/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.technig.com/author/ghulam-raza/</link>
	<description>Gateway for IT Experts and Tech Geeks</description>
	<lastBuildDate>Wed, 13 Apr 2022 09:48:08 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.6.2</generator>

<image>
	<url>https://www.technig.com/wp-content/uploads/2020/04/32x32.png</url>
	<title>Raza Bayani, Author at TECHNIG</title>
	<link>https://www.technig.com/author/ghulam-raza/</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">162720667</site>	<item>
		<title>Repetition (Looping) Control Structures in C++</title>
		<link>https://www.technig.com/repetition-looping-control-structures/</link>
					<comments>https://www.technig.com/repetition-looping-control-structures/#respond</comments>
		
		<dc:creator><![CDATA[Raza Bayani]]></dc:creator>
		<pubDate>Fri, 09 Sep 2016 05:15:32 +0000</pubDate>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[Control Structure]]></category>
		<category><![CDATA[for loop]]></category>
		<category><![CDATA[while loop]]></category>
		<guid isPermaLink="false">https://www.technig.com/?p=8213</guid>

					<description><![CDATA[<div style="margin-bottom:20px;"></div>
<p>In programming languages &#8211; while coding a program, sometimes it is necessary to repeat a set of statements several times (Looping Control Structures ). A way to repeat statements is to type the same statements in the program over and over. For example, if you want to repeat some statements 100 times, you type the same statements [&#8230;]</p>
<p>The post <a href="https://www.technig.com/repetition-looping-control-structures/">Repetition (Looping) Control Structures in C++</a> appeared first on <a href="https://www.technig.com">TECHNIG</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div style="margin-bottom:20px;"></div><p>In programming languages &#8211; while coding a program, sometimes it is necessary to repeat a set of statements several times (Looping Control Structures ). A way to repeat statements is to type the same statements in the program over and over. For example, if you want to repeat some statements 100 times, you type the same statements 100 times in the program. However, this solution of repeating statements is impractical, if not impossible. Fortunately, there is a better way to repeat a set of statements.</p>
<p>As noted earlier, C++ has three repetition, or looping control structures that allow you to repeat a set of statements until certain conditions are met.</p>
<p><strong>Note</strong>: The variable that controls the loop is called <strong>loop control variable (LCV)</strong></p>
<h1><span style="color: #3366ff;"><b><i>While </i></b></span><b>Looping Control Structures</b></h1>
<p>The first loop that we’re going to discuss about is <strong>while</strong> loop. The general form of <strong>while</strong> loop is:</p>
<pre class="lang:default decode:true ">while (expression)
      statement
</pre>
<p>&nbsp;</p>
<p>In C++, <em><span style="color: #3366ff;">while</span> </em>is a reserved word. Of course, the statement can be either a simple or compound statement. The expression acts as a decision maker and is usually a logical expression. The statement is called the body of the loop. Note that the parentheses around the expression are part of the syntax.</p>
<figure id="attachment_8214" aria-describedby="caption-attachment-8214" style="width: 800px" class="wp-caption aligncenter"><img fetchpriority="high" decoding="async" class="wp-image-8214" src="https://www.technig.com/wp-content/uploads/2016/09/while-1024x563.jpg" alt="While Loop" width="800" height="440" /><figcaption id="caption-attachment-8214" class="wp-caption-text">while loop &#8211; Looping Control Structures</figcaption></figure>
<pre class="lang:default decode:true ">#include &lt;iostream&gt;
using namespace std;
int main()
{
   int X = 0; 			        //Line 1
  while (x &lt;= 20) 		        //Line 2
       {
       cout &lt;&lt; x &lt;&lt; " "; 		//Line 3
        x = x + 5;			 //Line 4
       }

return 0;
</pre>
<p>In <span style="color: #339966;">Line 1</span>, the variable <strong>x</strong> is set to <strong>0</strong>. The <strong>expression</strong> in the <span style="color: #3366ff;">while</span> statement (in <span style="color: #339966;">Line 2</span>), <strong>x &lt;</strong>= 20, is evaluated. Because the expression <strong>x &lt;</strong>= 20 evaluates to<span style="color: #3366ff;"> true</span>, the body of the <span style="color: #3366ff;">while</span> loop executes next. The body of the <span style="color: #3366ff;">while </span>loop consists of the statements in <span style="color: #339966;">Lines 3 and 4</span>. The statement in Line 3 outputs the value of <strong>x</strong>, which is <strong>0</strong>. The statement in<span style="color: #339966;"> Line 4</span> changes the value of <strong>x</strong> to <strong>5</strong>. After executing the statements in<span style="color: #339966;"> Lines 3 and 4</span>, the <strong>expression</strong> in the <span style="color: #3366ff;">while</span> loop (<span style="color: #339966;">Line 2</span>) is evaluated again. Because <strong>x</strong> is <strong>5</strong>, the expression <strong>x &lt;</strong>= 20 evaluates to<span style="color: #3366ff;"> true</span> and the body of the <span style="color: #3366ff;">while</span> loop executes again. This process of evaluating the <strong>expression</strong> and executing the body of the <span style="color: #3366ff;">while</span> loop continues until the <strong>expression</strong>, <strong>x &lt;</strong>= 20 (in <span style="color: #339966;">Line 2</span>), no longer evaluates to <span style="color: #3366ff;">true</span>.</p>
<p><a href="https://www.technig.com/wp-content/uploads/2016/09/whileex.jpg"><img decoding="async" class="size-full wp-image-8215" src="https://www.technig.com/wp-content/uploads/2016/09/whileex.jpg" alt="&quot;&lt;yoastmark" /></a></p>
<p>Kinds of <strong><em>while</em></strong> loops are: counter-controlled, flag-controlled, sentinel-controlled, EOF-controlled <strong><em>while</em> </strong>loops and etc.</p>
<p>&nbsp;</p>
<h1><span style="color: #3366ff;"><b><i>for</i> </b></span><b><span style="color: windowtext;">Repetition (Looping) Structure</span></b></h1>
<p>The general form of <strong><em>for </em></strong>loop is:</p>
<pre class="lang:default decode:true">for (initial statement; loop condition; update statement)
      statement
</pre>
<p>The <strong>initial statement</strong>, <strong>loop condition</strong>, and <strong>update statement</strong> (called<span style="color: #3366ff;"> <em>for</em></span> loop control statements) enclosed within the parentheses control the body (<strong>statement</strong>) of the <span style="color: #3366ff;"><em>for</em></span> statement.</p>
<figure id="attachment_8216" aria-describedby="caption-attachment-8216" style="width: 1265px" class="wp-caption aligncenter"><a href="https://www.technig.com/wp-content/uploads/2016/09/For.jpg"><img decoding="async" class="size-full wp-image-8216" src="https://www.technig.com/wp-content/uploads/2016/09/For.jpg" alt="For Loop" width="1265" height="716" /></a><figcaption id="caption-attachment-8216" class="wp-caption-text">For Loop</figcaption></figure>
<p>The <span style="color: #3366ff;">for</span> loop executes as follows:</p>
<ol>
<li>The <strong>initial statement</strong> executes.</li>
<li>The <strong>loop condition</strong> is evaluated. If the <strong>loop condition</strong> evaluates to <span style="color: #3366ff;">true</span>:
<ol>
<li>Execute the <span style="color: #3366ff;">for</span> loop <strong>statement</strong>.</li>
<li>Execute the <strong>update statement</strong> (the third expression in the parentheses).</li>
</ol>
</li>
<li>Repeat Step 2 until the loop condition evaluates to <span style="color: #3366ff;">false</span>.</li>
</ol>
<p>The <strong>initial statement</strong> usually initializes a variable (called the <span style="color: #3366ff;">for </span><strong>loop control</strong>, or <span style="color: #3366ff;">for</span> <strong>indexed</strong>, variable).</p>
<p>In C++, <span style="color: #3366ff;"><strong><em>for</em></strong> </span>is a reserved word.</p>
<p>Concentrate on the example bellow:</p>
<pre class="lang:default decode:true">#include &lt;iostream&gt;
using namespace std;
int main()
{
  int x;
  for (x = 0; x &lt; 10 ; x++)
    {  
     cout &lt;&lt; x &lt;&lt; " ";
     }
cout &lt;&lt; endl;

return 0;
}
</pre>
<p>The <strong>initial statement</strong>, <strong>x = 0;</strong>, initializes the <span style="color: #3366ff;">int</span> variable <strong>x</strong> to <strong>0</strong>. Next, the loop condition, <strong>x&lt;10</strong>, is evaluated. Because <strong>0&lt;</strong>10 is <span style="color: #3366ff;">true</span>, the print statement executes and outputs 0. The <strong>update statement</strong>, <strong>x++</strong>, then executes, which sets the value of <strong>x</strong> to <strong>1</strong>. Once again, the <strong>loop condition</strong> is evaluated, which is still <span style="color: #3366ff;">true</span>, and so on. When <strong>x</strong> becomes <strong>10</strong>, the <strong>loop condition</strong> evaluates to <span style="color: #3366ff;">false</span>, the <span style="color: #3366ff;">for</span> loop terminates, and the statement following the <span style="color: #3366ff;">for</span> loop executes.</p>
<figure id="attachment_8217" aria-describedby="caption-attachment-8217" style="width: 373px" class="wp-caption aligncenter"><a href="https://www.technig.com/wp-content/uploads/2016/09/forex.jpg"><img decoding="async" class="size-full wp-image-8217" src="https://www.technig.com/wp-content/uploads/2016/09/forex.jpg" alt="For Control Structure" width="373" height="241" /></a><figcaption id="caption-attachment-8217" class="wp-caption-text">For Loop Example</figcaption></figure>
<h1><span style="color: #3366ff;"><b><i>do…while</i> </b></span><b><span style="color: windowtext;">Repetition (Looping) Structure</span></b></h1>
<p>This section describes the third type of looping or repetition structure, called a <span style="color: #3366ff;">do&#8230;while</span> loop. The general form of a<span style="color: #3366ff;"> do&#8230;while</span> statement is as follows:</p>
<pre class="lang:default decode:true ">do
       statement
while (expression);
</pre>
<figure id="attachment_8218" aria-describedby="caption-attachment-8218" style="width: 700px" class="wp-caption aligncenter"><img loading="lazy" decoding="async" class="wp-image-8218" src="https://www.technig.com/wp-content/uploads/2016/09/Do-while.jpg" alt="Repetition" width="700" height="525" /><figcaption id="caption-attachment-8218" class="wp-caption-text">do-while Loop</figcaption></figure>
<p>The <strong>statement</strong> executes first, and then the <strong>expression</strong> is evaluated. If the <strong>expression</strong> evaluates to <span style="color: #3366ff;">true</span>, the <strong>statement</strong> executes again. As long as the <strong>expression</strong> in a <span style="color: #3366ff;">do&#8230;while</span> statement is <span style="color: #3366ff;">true</span>, the <strong>statement</strong> executes. To avoid an infinite loop, you must, once again, make sure that the loop body contains a statement that ultimately makes the <strong>expression</strong> <span style="color: #3366ff;">false</span> and assures that it exits properly.</p>
<pre class="lang:default decode:true">#include &lt;iostream&gt;
using namespace std;
int main()
{
  x = 0;
  do {
      cout &lt;&lt; x &lt;&lt; " ";
      x = x + 5;
     }while (x &lt;= 20);
return 0;
}
</pre>
<p>The output of the <strong><em>code</em></strong> is:</p>
<p><span style="background-color: #333333; color: #ffffff;"><strong>0  5  10  15  20</strong></span></p>
<p>After 20 output, the statement:</p>
<p>x = x +5;</p>
<p>changes the value of <strong>x</strong> to <strong>25</strong> and so <strong>x &lt;</strong>=20 becomes <span style="color: #3366ff;">false</span>, which halts the loop.</p>
<ul style="list-style-type: disc;">
<li>In a <span style="color: #3366ff;">while</span> and <span style="color: #3366ff;">for</span> loop, the loop condition is evaluated before executing the body of the loop. Therefore, <span style="color: #3366ff;">while </span>and <span style="color: #3366ff;">for</span> loops are called <strong>pretest</strong> loops. On the other hand, the loop condition in a <span style="color: #3366ff;">do&#8230;while</span> loop is evaluated after executing the body of the loop. Therefore, <span style="color: #3366ff;">do&#8230;while</span> loops are called <b>post-test</b> loops. Because the <span style="color: #3366ff;">while</span> and <span style="color: #3366ff;">for</span> loops both have entry conditions, these loops may never activate. The <span style="color: #3366ff;">do&#8230;while</span> loop, on the other hand, has an exit condition and therefore always executes the statement at least once. Looping Control Structures</li>
</ul>
<p>&#8220;The end of Looping Control Structures in C++.</p>
<p>The post <a href="https://www.technig.com/repetition-looping-control-structures/">Repetition (Looping) Control Structures in C++</a> appeared first on <a href="https://www.technig.com">TECHNIG</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.technig.com/repetition-looping-control-structures/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">8213</post-id>	</item>
		<item>
		<title>How to Manage HDD Storage for Different Users</title>
		<link>https://www.technig.com/manage-hdd-storage-different-users/</link>
					<comments>https://www.technig.com/manage-hdd-storage-different-users/#respond</comments>
		
		<dc:creator><![CDATA[Raza Bayani]]></dc:creator>
		<pubDate>Fri, 01 Jul 2016 15:30:46 +0000</pubDate>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[HDD Storage]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Manage Storage]]></category>
		<category><![CDATA[Qouta]]></category>
		<category><![CDATA[Windows 10]]></category>
		<guid isPermaLink="false">https://www.technig.com/?p=7965</guid>

					<description><![CDATA[<div style="margin-bottom:20px;"></div>
<p>If you’re using a PC with more than a user, so “quota” can help you to Manage HDD Storage Capacity between users. This question rays here – why should we manage the storage capacity? The answer is here: if multiple users with huge data are using a PC, so there must be a rule for [&#8230;]</p>
<p>The post <a href="https://www.technig.com/manage-hdd-storage-different-users/">How to Manage HDD Storage for Different Users</a> appeared first on <a href="https://www.technig.com">TECHNIG</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div style="margin-bottom:20px;"></div><p>If you’re using a PC with more than a user, so “quota” can help you to Manage HDD Storage Capacity between users. This question rays here – why should we manage the storage capacity?</p>
<p>The answer is here: if multiple users with huge data are using a PC, so there must be a rule for using the HDD storage capacity. A single user should not fill all the disks and must give chance to others in order to put their files on HDD.</p>
<p>This series of Tutorials are with <strong><a href="https://www.technig.com/category/windows/">Windows 10</a>! </strong>Though this tutorial works on windows 7/8 or 8.1 as well.</p>
<h2>Manage HDD Storage, Using Disk Quota</h2>
<p><strong>Step one:</strong> Right-click on the drive – you want to manage and choose “properties” from the pop-up list or simply select the drive and press “Alt + Enter” from the keyboard.</p>
<p><strong>Step Two: </strong>When the properties window opens, go to the “quota” tab and click “Show Quota Settings”.</p>
<figure id="attachment_7971" aria-describedby="caption-attachment-7971" style="width: 363px" class="wp-caption aligncenter"><a href="https://www.technig.com/wp-content/uploads/2016/06/Second-Step.png"><img loading="lazy" decoding="async" class="wp-image-7971 size-full" src="https://www.technig.com/wp-content/uploads/2016/06/Second-Step.png" alt="Qouta" width="363" height="499" /></a><figcaption id="caption-attachment-7971" class="wp-caption-text">Qouta setting</figcaption></figure>
<p><strong>Step Three:</strong> Check the “Enable quota management” and click “Quota Entries”.</p>
<figure id="attachment_7973" aria-describedby="caption-attachment-7973" style="width: 363px" class="wp-caption aligncenter"><a href="https://www.technig.com/wp-content/uploads/2016/06/Third-Step.png"><img loading="lazy" decoding="async" class="wp-image-7973 size-full" src="https://www.technig.com/wp-content/uploads/2016/06/Third-Step.png" alt="Qouta" width="363" height="450" /></a><figcaption id="caption-attachment-7973" class="wp-caption-text">Enable Quota Management and Entries</figcaption></figure>
<p><strong>Step Four: </strong>Here you add a quota entry for the desired user. Click “Quota” and Choose “New Quota Entry”.</p>
<figure id="attachment_7968" aria-describedby="caption-attachment-7968" style="width: 587px" class="wp-caption aligncenter"><a href="https://www.technig.com/wp-content/uploads/2016/06/Fourth-Step-new-quota.png"><img loading="lazy" decoding="async" class="wp-image-7968 size-full" src="https://www.technig.com/wp-content/uploads/2016/06/Fourth-Step-new-quota.png" alt="New Qouta- User selection" width="587" height="295" /></a><figcaption id="caption-attachment-7968" class="wp-caption-text">New Quota- User selection</figcaption></figure>
<p><strong>Step Five: </strong>Click “Advanced” to go for user selection.</p>
<figure id="attachment_7969" aria-describedby="caption-attachment-7969" style="width: 457px" class="wp-caption aligncenter"><a href="https://www.technig.com/wp-content/uploads/2016/06/Fourth-Step.png"><img loading="lazy" decoding="async" class="wp-image-7969 size-full" src="https://www.technig.com/wp-content/uploads/2016/06/Fourth-Step.png" alt="User Selection" width="457" height="251" /></a><figcaption id="caption-attachment-7969" class="wp-caption-text">User Selection</figcaption></figure>
<p><strong>Step Six: </strong>Click “Find Now” (1), Choose a user (2) and click “Ok” (3).</p>
<figure id="attachment_7967" aria-describedby="caption-attachment-7967" style="width: 515px" class="wp-caption aligncenter"><a href="https://www.technig.com/wp-content/uploads/2016/06/Fifth-step.png"><img loading="lazy" decoding="async" class="wp-image-7967 size-full" src="https://www.technig.com/wp-content/uploads/2016/06/Fifth-step.png" alt="Select User" width="515" height="579" /></a><figcaption id="caption-attachment-7967" class="wp-caption-text">Select User</figcaption></figure>
<p><strong>Step Seven: </strong>Click “OK”</p>
<figure id="attachment_7972" aria-describedby="caption-attachment-7972" style="width: 457px" class="wp-caption aligncenter"><a href="https://www.technig.com/wp-content/uploads/2016/06/Sixth-Step.png"><img loading="lazy" decoding="async" class="wp-image-7972 size-full" src="https://www.technig.com/wp-content/uploads/2016/06/Sixth-Step.png" alt="User selected" width="457" height="251" /></a><figcaption id="caption-attachment-7972" class="wp-caption-text">User-selected</figcaption></figure>
<p><strong>Step Eight:</strong></p>
<p>For (1): Enter the value/amount for limitation and change the KB to MB/GB/TB</p>
<p>For (2): Enter the value/amount for giving a warning to the user.</p>
<figure id="attachment_7966" aria-describedby="caption-attachment-7966" style="width: 320px" class="wp-caption aligncenter"><a href="https://www.technig.com/wp-content/uploads/2016/06/Eighth-step.png"><img loading="lazy" decoding="async" class="wp-image-7966 size-full" src="https://www.technig.com/wp-content/uploads/2016/06/Eighth-step.png" alt="HDD Storage" width="320" height="240" /></a><figcaption id="caption-attachment-7966" class="wp-caption-text">Limiting HDD Storage</figcaption></figure>
<p><strong>Step Nine: Done!! </strong>You can see the list, you’ve managed disk space and limited the user’s storage capacity.</p>
<figure id="attachment_7970" aria-describedby="caption-attachment-7970" style="width: 765px" class="wp-caption alignnone"><a href="https://www.technig.com/wp-content/uploads/2016/06/Ninth-Step.png"><img loading="lazy" decoding="async" class="wp-image-7970 size-full" src="https://www.technig.com/wp-content/uploads/2016/06/Ninth-Step.png" alt="Manage HDD Storage and using Quota " width="765" height="277" /></a><figcaption id="caption-attachment-7970" class="wp-caption-text">Manage HDD Storage and use Quota</figcaption></figure>
<p>Now you&#8217;re done. You&#8217;ve successfully managed and limited your drive&#8217;s storage capacity for desired users.</p>
<p>If any question raises for you, fill free to ask in the comments or if you have any other suggestions.</p>
<p>The post <a href="https://www.technig.com/manage-hdd-storage-different-users/">How to Manage HDD Storage for Different Users</a> appeared first on <a href="https://www.technig.com">TECHNIG</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.technig.com/manage-hdd-storage-different-users/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">7965</post-id>	</item>
		<item>
		<title>How to Set and Manage File Permission in Windows?</title>
		<link>https://www.technig.com/set-manage-file-permission-windows-os/</link>
					<comments>https://www.technig.com/set-manage-file-permission-windows-os/#respond</comments>
		
		<dc:creator><![CDATA[Raza Bayani]]></dc:creator>
		<pubDate>Thu, 23 Jun 2016 14:00:41 +0000</pubDate>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[File Permission]]></category>
		<category><![CDATA[NTFS Permission]]></category>
		<category><![CDATA[Share Permission]]></category>
		<category><![CDATA[Windows 10]]></category>
		<guid isPermaLink="false">https://www.technig.com/?p=7885</guid>

					<description><![CDATA[<div style="margin-bottom:20px;"></div>
<p>The file permissions in Windows are privileges granted to specific system entities, such as users, groups, or computers, enabling them to perform a task or access a resource. This is about to set and manage file permission in Windows 10 and other Windows operating systems. Manage File Permission in Windows • As an administrator, you should [&#8230;]</p>
<p>The post <a href="https://www.technig.com/set-manage-file-permission-windows-os/">How to Set and Manage File Permission in Windows?</a> appeared first on <a href="https://www.technig.com">TECHNIG</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div style="margin-bottom:20px;"></div><p>The file permissions in Windows are privileges granted to specific system entities, such as users, groups, or computers, enabling them to perform a task or access a resource. This is about to set and manage file permission in Windows 10 and other Windows operating systems.</p>
<h1>Manage File Permission in Windows</h1>
<p><strong>•</strong> As an administrator, you should be familiar with the operation of the following four permission<br />
Systems:</p>
<ul>
<li> NTFS permissions</li>
<li>Share permissions</li>
<li> Registry permissions</li>
<li>Active Directory permissions</li>
</ul>
<h4><strong>Q:</strong> how to set permissions on our files in order to allow or disallow others to access our files?</h4>
<p><strong>Step One:</strong> right click on the<em> file</em> you want to set <strong>P<span style="text-decoration: underline;">ermission</span> </strong>on, and click <strong>P<span style="text-decoration: underline;">roperties</span></strong> or simply select the file and press <strong>ALT + ENTER</strong> to open the<em> properties window.</em></p>
<p><strong>Step Two:</strong> Move to <strong>Security </strong>Tab and Click <strong>Edit </strong>to go for user selection.</p>
<figure id="attachment_7891" aria-describedby="caption-attachment-7891" style="width: 377px" class="wp-caption aligncenter"><a href="https://www.technig.com/wp-content/uploads/2016/06/Two-Step.png"><img loading="lazy" decoding="async" class="size-full wp-image-7891" src="https://www.technig.com/wp-content/uploads/2016/06/Two-Step.png" alt="File Properties" width="377" height="488" /></a><figcaption id="caption-attachment-7891" class="wp-caption-text">File Properties</figcaption></figure>
<p><strong>Step Three:</strong> in this window click <strong>add</strong>, in order to add a user for setting or managing permissions.</p>
<figure id="attachment_7890" aria-describedby="caption-attachment-7890" style="width: 377px" class="wp-caption aligncenter"><a href="https://www.technig.com/wp-content/uploads/2016/06/Three-Step.png"><img loading="lazy" decoding="async" class="size-full wp-image-7890" src="https://www.technig.com/wp-content/uploads/2016/06/Three-Step.png" alt="File Properties" width="377" height="457" /></a><figcaption id="caption-attachment-7890" class="wp-caption-text">File Property</figcaption></figure>
<p><strong>Step Four:</strong> Click <strong>Advance </strong>to find the desired user.</p>
<figure id="attachment_7887" aria-describedby="caption-attachment-7887" style="width: 471px" class="wp-caption aligncenter"><a href="https://www.technig.com/wp-content/uploads/2016/06/Four-Step.png"><img loading="lazy" decoding="async" class="size-full wp-image-7887" src="https://www.technig.com/wp-content/uploads/2016/06/Four-Step.png" alt="User selection" width="471" height="258" /></a><figcaption id="caption-attachment-7887" class="wp-caption-text">User Selection</figcaption></figure>
<p><strong>Step Five:</strong> Click <strong>Find Now</strong> to view all users and user group the n select the user from the list at the bottom of the window then click <strong>OK</strong>.</p>
<figure id="attachment_7886" aria-describedby="caption-attachment-7886" style="width: 529px" class="wp-caption aligncenter"><a href="https://www.technig.com/wp-content/uploads/2016/06/Five-Step.png"><img loading="lazy" decoding="async" class="size-full wp-image-7886" src="https://www.technig.com/wp-content/uploads/2016/06/Five-Step.png" alt="User Selection" width="529" height="586" /></a><figcaption id="caption-attachment-7886" class="wp-caption-text">User Selection</figcaption></figure>
<p><strong>Step Six:</strong> Again click <strong>OK </strong>in the <em>“select user and groups”</em> window.</p>
<figure id="attachment_7889" aria-describedby="caption-attachment-7889" style="width: 471px" class="wp-caption aligncenter"><a href="https://www.technig.com/wp-content/uploads/2016/06/Six-Step.png"><img loading="lazy" decoding="async" class="size-full wp-image-7889" src="https://www.technig.com/wp-content/uploads/2016/06/Six-Step.png" alt="User Selection" width="471" height="258" /></a><figcaption id="caption-attachment-7889" class="wp-caption-text">User Selection</figcaption></figure>
<p><strong>Step Seven: </strong>Now it is time to<strong> set permissions;</strong></p>
<p>Select options or Tick the squares as u wish to set permissions and then press “ <strong>apply</strong>” and <strong>OK</strong>.</p>
<figure id="attachment_7888" aria-describedby="caption-attachment-7888" style="width: 377px" class="wp-caption aligncenter"><a href="https://www.technig.com/wp-content/uploads/2016/06/Seven-Step.png"><img loading="lazy" decoding="async" class="wp-image-7888 size-full" src="https://www.technig.com/wp-content/uploads/2016/06/Seven-Step.png" alt="Manage File Permission in Windows OS " width="377" height="457" /></a><figcaption id="caption-attachment-7888" class="wp-caption-text">Manage File Permission in Windows OS</figcaption></figure>
<p>Hurrah, finally it’s done! You’ve set permissions for the user you wanted. Now you can switch to other user and check if the permissions work correctly!</p>
<p>Hope you learn something new from this basic article manage file permission in Windows 10 Operating System. If you have any question, feel free to ask us through comment section or ask it on our forums.</p>
<p>The post <a href="https://www.technig.com/set-manage-file-permission-windows-os/">How to Set and Manage File Permission in Windows?</a> appeared first on <a href="https://www.technig.com">TECHNIG</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.technig.com/set-manage-file-permission-windows-os/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">7885</post-id>	</item>
		<item>
		<title>How to Create Table of Contents (TOC) in Word?</title>
		<link>https://www.technig.com/how-to-create-table-of-contents/</link>
					<comments>https://www.technig.com/how-to-create-table-of-contents/#respond</comments>
		
		<dc:creator><![CDATA[Raza Bayani]]></dc:creator>
		<pubDate>Sun, 15 Mar 2015 19:19:40 +0000</pubDate>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Office]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[MS Office 2013]]></category>
		<category><![CDATA[Table of Content]]></category>
		<category><![CDATA[TOC]]></category>
		<category><![CDATA[Word 2013]]></category>
		<guid isPermaLink="false">https://www.technig.com/?p=1811</guid>

					<description><![CDATA[<div style="margin-bottom:20px;"><img width="531" height="470" src="https://www.technig.com/wp-content/uploads/2015/03/Levels.png" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Add more levels" decoding="async" loading="lazy" srcset="https://www.technig.com/wp-content/uploads/2015/03/Levels.png 531w, https://www.technig.com/wp-content/uploads/2015/03/Levels-300x266.png 300w" sizes="(max-width: 531px) 100vw, 531px" /></div>
<p>Though you all may know about the Table of Contents, let me talk clearly about this. Table of Contents or TOC is a table in which we manage and sort Titles of the Topics in a document, magazine, book or article by the page number on Microsoft word. The most necessary thing about the Table [&#8230;]</p>
<p>The post <a href="https://www.technig.com/how-to-create-table-of-contents/">How to Create Table of Contents (TOC) in Word?</a> appeared first on <a href="https://www.technig.com">TECHNIG</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div style="margin-bottom:20px;"><img width="531" height="470" src="https://www.technig.com/wp-content/uploads/2015/03/Levels.png" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Add more levels" decoding="async" loading="lazy" srcset="https://www.technig.com/wp-content/uploads/2015/03/Levels.png 531w, https://www.technig.com/wp-content/uploads/2015/03/Levels-300x266.png 300w" sizes="(max-width: 531px) 100vw, 531px" /></div><p style="text-align: justify;">Though you all may know about the Table of Contents, let me talk clearly about this. Table of Contents or TOC is a table in which we manage and sort Titles of the Topics in a document, magazine, book or article by the page number on Microsoft <a href="https://www.technig.com/expand-and-collapse-in-word-2013/" target="_blank" rel="noopener noreferrer">word</a>.</p>
<p style="text-align: justify;">The most necessary thing about the Table of Contents that all must know is that TOC can’t be created without any heading or level applied to the titles of the topics. MS word has 1-9 headings and 1-9 levels. Almost levels and heading are equal by formation.</p>
<p style="text-align: justify;">Let’s start creating a TOC with heading and levels.</p>
<h3 style="text-align: justify;">Step One:</h3>
<ul style="text-align: justify;">
<li>Type some texts having titles.</li>
<li>Select their titles and apply heading from 1 to 9 or apply levels.</li>
<li>Concentrate on the picture below:</li>
</ul>
<figure id="attachment_1807" aria-describedby="caption-attachment-1807" style="width: 1306px" class="wp-caption aligncenter"><a href="https://www.technig.com/wp-content/uploads/2015/03/Applying-Headings.png"><img loading="lazy" decoding="async" class="wp-image-1807 size-full" src="https://www.technig.com/wp-content/uploads/2015/03/Applying-Headings.png" alt="Applying Headings to titles" width="1306" height="630" srcset="https://www.technig.com/wp-content/uploads/2015/03/Applying-Headings.png 1306w, https://www.technig.com/wp-content/uploads/2015/03/Applying-Headings-300x145.png 300w, https://www.technig.com/wp-content/uploads/2015/03/Applying-Headings-768x370.png 768w, https://www.technig.com/wp-content/uploads/2015/03/Applying-Headings-1024x494.png 1024w" sizes="(max-width: 1306px) 100vw, 1306px" /></a><figcaption id="caption-attachment-1807" class="wp-caption-text">Applying Headings to titles</figcaption></figure>
<h3 style="text-align: justify;">Step Two:</h3>
<ul style="text-align: justify;">
<li>After Applying levels and headings to the titles of the topics and Chapters, Click a place where you want to add a Table of Contents.</li>
<li>For Creating TOC go to the REFERENCES Tab and Table of Contents Group.</li>
<li>Click on the First Option to view a pre-designed list of TOC.</li>
<li>Select a type from the list, it will automatically create a table of contents.</li>
<li>See the picture below:</li>
</ul>
<figure id="attachment_1810" aria-describedby="caption-attachment-1810" style="width: 503px" class="wp-caption aligncenter"><a href="https://www.technig.com/wp-content/uploads/2015/03/TOC.png"><img loading="lazy" decoding="async" class="wp-image-1810 size-full" src="https://www.technig.com/wp-content/uploads/2015/03/TOC.png" alt="table of contents" width="503" height="711" srcset="https://www.technig.com/wp-content/uploads/2015/03/TOC.png 503w, https://www.technig.com/wp-content/uploads/2015/03/TOC-212x300.png 212w" sizes="(max-width: 503px) 100vw, 503px" /></a><figcaption id="caption-attachment-1810" class="wp-caption-text">Creating TOC</figcaption></figure>
<p style="text-align: justify;">You can see our Table of Contents as an example below:</p>
<figure id="attachment_1809" aria-describedby="caption-attachment-1809" style="width: 983px" class="wp-caption aligncenter"><a href="https://www.technig.com/wp-content/uploads/2015/03/TOC-created.png"><img loading="lazy" decoding="async" class="wp-image-1809 size-full" src="https://www.technig.com/wp-content/uploads/2015/03/TOC-created.png" alt="TOC Created" width="983" height="322" srcset="https://www.technig.com/wp-content/uploads/2015/03/TOC-created.png 983w, https://www.technig.com/wp-content/uploads/2015/03/TOC-created-300x98.png 300w, https://www.technig.com/wp-content/uploads/2015/03/TOC-created-768x252.png 768w" sizes="(max-width: 983px) 100vw, 983px" /></a><figcaption id="caption-attachment-1809" class="wp-caption-text">TOC Created</figcaption></figure>
<h3 style="text-align: justify;">Add more Levels and Headings</h3>
<blockquote><p><em>If your list of contents is incomplete and you cannot see titles with heading or level more then heading / level three then do the following:</em></p></blockquote>
<ol style="text-align: justify;">
<li>Go to REFERENCES Tab, Table of Contents Group.</li>
<li>Click on the drop-down button and Choose Custom Table of Contents From the end of the list.</li>
<li>Go to <strong>Show Levels: </strong>and turn that from 3 to 9.</li>
<li>As picture below;</li>
</ol>
<figure id="attachment_1808" aria-describedby="caption-attachment-1808" style="width: 531px" class="wp-caption aligncenter"><a href="https://www.technig.com/wp-content/uploads/2015/03/Levels.png"><img loading="lazy" decoding="async" class="wp-image-1808 size-full" src="https://www.technig.com/wp-content/uploads/2015/03/Levels.png" alt="Add more levels" width="531" height="470" srcset="https://www.technig.com/wp-content/uploads/2015/03/Levels.png 531w, https://www.technig.com/wp-content/uploads/2015/03/Levels-300x266.png 300w" sizes="(max-width: 531px) 100vw, 531px" /></a><figcaption id="caption-attachment-1808" class="wp-caption-text">Add more levels</figcaption></figure>
<p style="text-align: justify;">Please ask your questions and share your View with us through comments.</p>
<p>The post <a href="https://www.technig.com/how-to-create-table-of-contents/">How to Create Table of Contents (TOC) in Word?</a> appeared first on <a href="https://www.technig.com">TECHNIG</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.technig.com/how-to-create-table-of-contents/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1811</post-id>	</item>
		<item>
		<title>How to use CONCATENATE Function in Excel?</title>
		<link>https://www.technig.com/how-to-use-concatenate-function-in-excel/</link>
					<comments>https://www.technig.com/how-to-use-concatenate-function-in-excel/#comments</comments>
		
		<dc:creator><![CDATA[Raza Bayani]]></dc:creator>
		<pubDate>Thu, 05 Mar 2015 11:22:55 +0000</pubDate>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Office]]></category>
		<category><![CDATA[Concatenate Function]]></category>
		<category><![CDATA[Excel 2013]]></category>
		<category><![CDATA[Excel Functions]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Office 2013]]></category>
		<guid isPermaLink="false">https://www.technig.com/?p=1583</guid>

					<description><![CDATA[<div style="margin-bottom:20px;"><img width="851" height="329" src="https://www.technig.com/wp-content/uploads/2015/03/Featured.png" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" decoding="async" loading="lazy" srcset="https://www.technig.com/wp-content/uploads/2015/03/Featured.png 851w, https://www.technig.com/wp-content/uploads/2015/03/Featured-300x116.png 300w, https://www.technig.com/wp-content/uploads/2015/03/Featured-768x297.png 768w" sizes="(max-width: 851px) 100vw, 851px" /></div>
<p>Excel is present with hundreds of Functions but Today we&#8217;ll learn about one of the great Excel Functions &#8220;CONCATENATE&#8221;. It is used for joining values of two or more then two cells. It can be used with the most common Excel Function &#8220;IF&#8221; and other String &#38; Math and Trig Functions such as: LEFT, RIGHT, MID, REPT,CODE, [&#8230;]</p>
<p>The post <a href="https://www.technig.com/how-to-use-concatenate-function-in-excel/">How to use CONCATENATE Function in Excel?</a> appeared first on <a href="https://www.technig.com">TECHNIG</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div style="margin-bottom:20px;"><img width="851" height="329" src="https://www.technig.com/wp-content/uploads/2015/03/Featured.png" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" decoding="async" loading="lazy" srcset="https://www.technig.com/wp-content/uploads/2015/03/Featured.png 851w, https://www.technig.com/wp-content/uploads/2015/03/Featured-300x116.png 300w, https://www.technig.com/wp-content/uploads/2015/03/Featured-768x297.png 768w" sizes="(max-width: 851px) 100vw, 851px" /></div><p>Excel is present with hundreds of Functions but Today we&#8217;ll learn about one of the great Excel Functions &#8220;CONCATENATE&#8221;. It is used for joining values of two or more then two cells. It can be used with the most common Excel Function &#8220;IF&#8221; and other String &amp; Math and Trig Functions such as: LEFT, RIGHT, MID, REPT,CODE, TRIM, LEN, EXACT, UPPER, LOWER, PROPER, SUM, AVERAGE, COUNT, PMT, IMPT, PV and etc..</p>
<p>We will start with a very simple example.</p>
<ul>
<li>Insert your data table</li>
<li>Choose a cell where you want to join the values of different cells.</li>
<li>Start with (=) sign then type &#8220;CONCATENATE&#8221; without qoutes.</li>
<li>Open brackets after typing the function Concatenate.</li>
<li>Select the values and place &#8220;comma&#8221; after each word.</li>
<li>
<pre>=CONCATENATE(text1, [text2],[text3],...)</pre>
</li>
<li>Look at the example below:</li>
</ul>
<figure id="attachment_1590" aria-describedby="caption-attachment-1590" style="width: 633px" class="wp-caption aligncenter"><a href="http://3.90.216.52/wp-content/uploads/2015/03/Concatenate-One.png"><img loading="lazy" decoding="async" class="size-full wp-image-1590" src="http://3.90.216.52/wp-content/uploads/2015/03/Concatenate-One.png" alt="Concatenate Function" width="633" height="285" srcset="https://www.technig.com/wp-content/uploads/2015/03/Concatenate-One.png 633w, https://www.technig.com/wp-content/uploads/2015/03/Concatenate-One-300x135.png 300w" sizes="(max-width: 633px) 100vw, 633px" /></a><figcaption id="caption-attachment-1590" class="wp-caption-text">Concatenate Function</figcaption></figure>
<p>In the above Example we have three words in different cells (N4, O4 and P4) and we have joined them through the CONCATENATE Function in Cell (Q4).</p>
<p>If you concentrate in the example above we don&#8217;t need any space between words in Cell (Q4), but in other cells below that we can see that there is a SPACE between each name or word. So while working with CONCATENATE Function we have to be careful about the SPACES.</p>
<blockquote><p>If you want to insert a space between two words, You&#8217;ve to use (,&#8221; &#8220;,) after selecting a cell in CONCATENATE Function.</p></blockquote>
<p>OR</p>
<blockquote><p>You can add spaces after those cell values which you&#8217;re going to join them, in there cells.</p></blockquote>
<p>Look at the Example Below:</p>
<figure id="attachment_1591" aria-describedby="caption-attachment-1591" style="width: 638px" class="wp-caption aligncenter"><a href="http://3.90.216.52/wp-content/uploads/2015/03/Concatenate-Two.png"><img loading="lazy" decoding="async" class="size-full wp-image-1591" src="http://3.90.216.52/wp-content/uploads/2015/03/Concatenate-Two.png" alt="Concatenate Function" width="638" height="289" srcset="https://www.technig.com/wp-content/uploads/2015/03/Concatenate-Two.png 638w, https://www.technig.com/wp-content/uploads/2015/03/Concatenate-Two-300x136.png 300w" sizes="(max-width: 638px) 100vw, 638px" /></a><figcaption id="caption-attachment-1591" class="wp-caption-text">Concatenate Function</figcaption></figure>
<ul>
<li>In example below, I&#8217;ve mixed and joined &#8220;Thank You&#8221;, &#8220;Please Pay&#8221; and Customer Name &#8220;Ali&#8221; and have used CONCATENATE with IF function.</li>
<li>In case if the <b>PAID AMOUNT </b>is less then <strong>TOTAL PRICE, </strong> &#8220;Please Pay + Customer Name&#8221; will be visible.</li>
<li>and if the <strong>PAID AMOUNT </strong>is equal to 0, then &#8220;Thank You + Customer Name&#8221; will be visible.</li>
</ul>
<figure id="attachment_1592" aria-describedby="caption-attachment-1592" style="width: 851px" class="wp-caption aligncenter"><a href="http://3.90.216.52/wp-content/uploads/2015/03/Featured.png"><img loading="lazy" decoding="async" class="size-full wp-image-1592" src="http://3.90.216.52/wp-content/uploads/2015/03/Featured.png" alt="Concatenate Function" width="851" height="329" srcset="https://www.technig.com/wp-content/uploads/2015/03/Featured.png 851w, https://www.technig.com/wp-content/uploads/2015/03/Featured-300x116.png 300w, https://www.technig.com/wp-content/uploads/2015/03/Featured-768x297.png 768w" sizes="(max-width: 851px) 100vw, 851px" /></a><figcaption id="caption-attachment-1592" class="wp-caption-text">Concatenate Function</figcaption></figure>
<p>WANT MORE EXCEL FUNCTIONS?</p>
<p>VIEW : <a title="Microsoft" href="https://support.office.com/en-nz/article/Excel-functions-by-category-9d1bdb2c-9fbd-4b9f-9a62-7b1c61c771da" target="_blank" rel="noopener noreferrer">MICROSOFT EXCEL FUNCTIONS BY CATEGORY</a></p>
<p>Best of Luck!</p>
<p>The post <a href="https://www.technig.com/how-to-use-concatenate-function-in-excel/">How to use CONCATENATE Function in Excel?</a> appeared first on <a href="https://www.technig.com">TECHNIG</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.technig.com/how-to-use-concatenate-function-in-excel/feed/</wfw:commentRss>
			<slash:comments>7</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1583</post-id>	</item>
		<item>
		<title>How to Use Expand and Collapse In Word 2013</title>
		<link>https://www.technig.com/expand-and-collapse-in-word-2013/</link>
					<comments>https://www.technig.com/expand-and-collapse-in-word-2013/#respond</comments>
		
		<dc:creator><![CDATA[Raza Bayani]]></dc:creator>
		<pubDate>Sat, 21 Feb 2015 12:45:53 +0000</pubDate>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Office]]></category>
		<category><![CDATA[Collapse]]></category>
		<category><![CDATA[Expand]]></category>
		<category><![CDATA[Headings]]></category>
		<category><![CDATA[Microsoft Office]]></category>
		<category><![CDATA[Word 2013]]></category>
		<guid isPermaLink="false">https://www.technig.com/?p=1467</guid>

					<description><![CDATA[<div style="margin-bottom:20px;"><img width="695" height="206" src="https://www.technig.com/wp-content/uploads/2015/02/Featured.png" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Expand and Collapse" decoding="async" loading="lazy" srcset="https://www.technig.com/wp-content/uploads/2015/02/Featured.png 695w, https://www.technig.com/wp-content/uploads/2015/02/Featured-300x89.png 300w" sizes="(max-width: 695px) 100vw, 695px" /></div>
<p>Word 2013 introduces a new feature that allows you to expand and collapse certain parts of your document. It reminds me very much of the kind of web page interactivity that lets you click on a brief summary of something to display a more detailed description. And that’s precisely what this is. If you can’t [&#8230;]</p>
<p>The post <a href="https://www.technig.com/expand-and-collapse-in-word-2013/">How to Use Expand and Collapse In Word 2013</a> appeared first on <a href="https://www.technig.com">TECHNIG</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div style="margin-bottom:20px;"><img width="695" height="206" src="https://www.technig.com/wp-content/uploads/2015/02/Featured.png" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Expand and Collapse" decoding="async" loading="lazy" srcset="https://www.technig.com/wp-content/uploads/2015/02/Featured.png 695w, https://www.technig.com/wp-content/uploads/2015/02/Featured-300x89.png 300w" sizes="(max-width: 695px) 100vw, 695px" /></div><p style="text-align: justify;"><a title="Word Online" href="https://www.google.com.pk/url?sa=t&amp;rct=j&amp;q=&amp;esrc=s&amp;source=web&amp;cd=1&amp;cad=rja&amp;uact=8&amp;sqi=2&amp;ved=0CCQQFjAA&amp;url=https%3A%2F%2Foffice.live.com%2Fstart%2FWord.aspx&amp;ei=PH7oVITAG5GLaNqEgYgP&amp;usg=AFQjCNGRzdkCVM9HyHBux06JtPFtY_Jb5w&amp;bvm=bv.86475890,d.d2s" target="_blank" rel="noopener noreferrer">Word 2013</a> introduces a new feature that allows you to expand and collapse certain parts of your document. It reminds me very much of the kind of web page interactivity that lets you click on a brief summary of something to display a more detailed description. And that’s precisely what this is.</p>
<p style="text-align: justify;">If you can’t visualize this concept, let’s illustrate it with a simple example. Create a new blank document in Word 2013 and create a heading 1 followed by some text. To quickly create some random text, you can type in <strong><em>=rand()</em></strong> and press Enter to create five paragraphs each of five lines. Now create a heading 2 followed by more text. When you hover over any heading, you will see an arrow pointing in a particular direction, and the direction tells us whether clicking on it will expand or collapse what is below the heading.</p>
<p style="text-align: justify;">This arrow, when clicked, collapses the content below the heading:</p>
<p style="text-align: justify;"><a href="http://3.90.216.52/wp-content/uploads/2015/02/collapse.jpg"><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-1469" src="http://3.90.216.52/wp-content/uploads/2015/02/collapse.jpg" alt="Collapse" width="619" height="130" srcset="https://www.technig.com/wp-content/uploads/2015/02/collapse.jpg 619w, https://www.technig.com/wp-content/uploads/2015/02/collapse-300x63.jpg 300w" sizes="(max-width: 619px) 100vw, 619px" /></a></p>
<p style="text-align: justify;">This is what the heading looks like after the collapse arrow has been clicked:</p>
<p style="text-align: justify;"><a href="http://3.90.216.52/wp-content/uploads/2015/02/expand.jpg"><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-1471" src="http://3.90.216.52/wp-content/uploads/2015/02/expand.jpg" alt="Collapsed and ready to Expand" width="345" height="63" srcset="https://www.technig.com/wp-content/uploads/2015/02/expand.jpg 345w, https://www.technig.com/wp-content/uploads/2015/02/expand-300x55.jpg 300w" sizes="(max-width: 345px) 100vw, 345px" /></a></p>
<p style="text-align: justify;">You can see that everything below the heading has been collapsed and only the heading is now displayed. This is a convenient way of hiding content you don’t want to see so you only see the outline of the document. If you want to read the content, just click on the arrow again.</p>
<p style="text-align: justify;">The expand/collapse arrows don’t necessarily affect <em>everything</em> below their header. They only affect the content below the header and up to the next header of equal or greater value. For example, this &#8220;Technig.com&#8221; consists of “Technig.com” which is a heading 1, and two heading 2s for “Office” and “Programming”.</p>
<p style="text-align: justify;"><a href="http://3.90.216.52/wp-content/uploads/2015/02/2015-02-21_17-20-50.png"><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-1468" src="http://3.90.216.52/wp-content/uploads/2015/02/2015-02-21_17-20-50.png" alt="Collapse and Expand" width="237" height="237" srcset="https://www.technig.com/wp-content/uploads/2015/02/2015-02-21_17-20-50.png 237w, https://www.technig.com/wp-content/uploads/2015/02/2015-02-21_17-20-50-150x150.png 150w" sizes="(max-width: 237px) 100vw, 237px" /></a></p>
<p style="text-align: justify;">Collapsing “Technig.com” will hide everything but the heading “Technig.com”. Collapsing “Office” will collapse only the list of Office Programs but will leave the “Programming” section on display. Similarly, collapsing “Programming” will leave “Office” on display. This is the way you would expect, and indeed want, it to work.</p>
<p style="text-align: justify;">There is a quick way to expand or collapse <em>all</em> headings in your document; right click on a heading &gt; Expand/Collapse, and select Expand all Headings or Collapse all Headings.</p>
<p style="text-align: justify;"><a href="http://3.90.216.52/wp-content/uploads/2015/02/expand-all.jpg"><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-1472" src="http://3.90.216.52/wp-content/uploads/2015/02/expand-all.jpg" alt="Expand All" width="317" height="329" srcset="https://www.technig.com/wp-content/uploads/2015/02/expand-all.jpg 317w, https://www.technig.com/wp-content/uploads/2015/02/expand-all-289x300.jpg 289w" sizes="(max-width: 317px) 100vw, 317px" /></a></p>
<p style="text-align: justify;">When you open a document, all headings are expanded by default. You can change this though, so that they are all collapsed: go to the Home tab, and click the dialogue box launcher in the paragraph group:</p>
<p style="text-align: justify;"><a href="http://3.90.216.52/wp-content/uploads/2015/02/paragraph-dialogie-box-launcher.jpg"><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-1474" src="http://3.90.216.52/wp-content/uploads/2015/02/paragraph-dialogie-box-launcher.jpg" alt="Dialog box" width="256" height="136" /></a></p>
<p style="text-align: justify;">In the Paragraph window that opens, ensure that Collapsed by default is checked.</p>
<p style="text-align: justify;"><a href="http://3.90.216.52/wp-content/uploads/2015/02/collapsed-by-default.jpg"><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-1470" src="http://3.90.216.52/wp-content/uploads/2015/02/collapsed-by-default.jpg" alt="Collapsed By Default" width="429" height="550" srcset="https://www.technig.com/wp-content/uploads/2015/02/collapsed-by-default.jpg 429w, https://www.technig.com/wp-content/uploads/2015/02/collapsed-by-default-234x300.jpg 234w" sizes="(max-width: 429px) 100vw, 429px" /></a></p>
<blockquote>
<p style="text-align: justify;">Note that this feature is only usable when you’re reading a document on your computer; it doesn&#8217;t work on a printout!</p>
</blockquote>
<p>The post <a href="https://www.technig.com/expand-and-collapse-in-word-2013/">How to Use Expand and Collapse In Word 2013</a> appeared first on <a href="https://www.technig.com">TECHNIG</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.technig.com/expand-and-collapse-in-word-2013/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1467</post-id>	</item>
		<item>
		<title>How to create a Button from Recorded Macro</title>
		<link>https://www.technig.com/create-button-recorded-macro/</link>
					<comments>https://www.technig.com/create-button-recorded-macro/#respond</comments>
		
		<dc:creator><![CDATA[Raza Bayani]]></dc:creator>
		<pubDate>Mon, 09 Feb 2015 13:09:12 +0000</pubDate>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Office]]></category>
		<category><![CDATA[Command Button]]></category>
		<category><![CDATA[Macro]]></category>
		<category><![CDATA[MS Office]]></category>
		<category><![CDATA[Word 2013]]></category>
		<guid isPermaLink="false">https://www.technig.com/?p=1259</guid>

					<description><![CDATA[<div style="margin-bottom:20px;"><img width="452" height="156" src="https://www.technig.com/wp-content/uploads/2015/02/Example.png" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Command Button" decoding="async" loading="lazy" srcset="https://www.technig.com/wp-content/uploads/2015/02/Example.png 452w, https://www.technig.com/wp-content/uploads/2015/02/Example-300x104.png 300w, https://www.technig.com/wp-content/uploads/2015/02/Example-450x156.png 450w" sizes="(max-width: 452px) 100vw, 452px" /></div>
<p>Macros in fact are actions which we record. We can assign shortcuts to them for easy use. Check here for &#8220;How to create a macro&#8221;. If you have a Macro and often use it while working with the documents, Workbooks, Presentations or Database, you might use shortcut keys to run the Macro or the VIEW &#124; DEVELOPER [&#8230;]</p>
<p>The post <a href="https://www.technig.com/create-button-recorded-macro/">How to create a Button from Recorded Macro</a> appeared first on <a href="https://www.technig.com">TECHNIG</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div style="margin-bottom:20px;"><img width="452" height="156" src="https://www.technig.com/wp-content/uploads/2015/02/Example.png" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Command Button" decoding="async" loading="lazy" srcset="https://www.technig.com/wp-content/uploads/2015/02/Example.png 452w, https://www.technig.com/wp-content/uploads/2015/02/Example-300x104.png 300w, https://www.technig.com/wp-content/uploads/2015/02/Example-450x156.png 450w" sizes="(max-width: 452px) 100vw, 452px" /></div><p style="text-align: justify;">Macros in fact are actions which we record. We can assign shortcuts to them for easy use. Check here for<a href="https://www.technig.com/how-to-create-and-use-a-macro-in-ms-word-2013/" target="_blank" rel="noopener noreferrer"> &#8220;How to create a macro&#8221;</a>. If you have a Macro and often use it while working with the documents, Workbooks, Presentations or Database, you might use shortcut keys to run the Macro or the VIEW | DEVELOPER tab.</p>
<p style="text-align: justify;">There is another way to easily use a Macro and that is creating a Command Button for the Macro. After creating a button, just a click is required to run the Macro.</p>
<p style="text-align: justify;">Below are the Steps:</p>
<blockquote><p>You must have a <a title="How to create and use a Macro in MS Word 2013" href="https://www.technig.com/how-to-create-and-use-a-macro-in-ms-word-2013/" target="_blank" rel="noopener noreferrer">recorded macro</a> to proceed.</p>
<p>I&#8217;ve tried this for <a href="https://office.live.com/start/Word.aspx" target="_blank" rel="noopener noreferrer">MS word 2013</a>.</p></blockquote>
<h3 style="text-align: justify;"> Select the Quick Access Toolbar&#8217;s drop-down button and choose More Commands.</h3>
<figure id="attachment_1264" aria-describedby="caption-attachment-1264" style="width: 353px" class="wp-caption aligncenter"><a href="http://3.90.216.52/wp-content/uploads/2015/02/More-Commands1.png"><img loading="lazy" decoding="async" class="size-full wp-image-1264" src="http://3.90.216.52/wp-content/uploads/2015/02/More-Commands1.png" alt="Commands" width="353" height="383" srcset="https://www.technig.com/wp-content/uploads/2015/02/More-Commands1.png 353w, https://www.technig.com/wp-content/uploads/2015/02/More-Commands1-277x300.png 277w" sizes="(max-width: 353px) 100vw, 353px" /></a><figcaption id="caption-attachment-1264" class="wp-caption-text">More Commands</figcaption></figure>
<h3 style="text-align: justify;"> Complete the Process:</h3>
<p style="text-align: justify;"><strong>No. 1:</strong> Choose Macros from the list.</p>
<p style="text-align: justify;"><strong>No. 2:</strong> Select the Macro that you want.</p>
<p style="text-align: justify;"><strong>No. 3:</strong> Click &#8220;Add&#8221;.</p>
<p style="text-align: justify;"><strong>No. 4:</strong> Check whether your macro is added to the list or not.</p>
<p style="text-align: justify;"><strong>No. 5:</strong> Click Modify.</p>
<figure id="attachment_1265" aria-describedby="caption-attachment-1265" style="width: 838px" class="wp-caption aligncenter"><a href="http://3.90.216.52/wp-content/uploads/2015/02/macro-button.png"><img loading="lazy" decoding="async" class="size-full wp-image-1265" src="http://3.90.216.52/wp-content/uploads/2015/02/macro-button.png" alt="Macro Button" width="838" height="579" srcset="https://www.technig.com/wp-content/uploads/2015/02/macro-button.png 838w, https://www.technig.com/wp-content/uploads/2015/02/macro-button-300x207.png 300w, https://www.technig.com/wp-content/uploads/2015/02/macro-button-768x531.png 768w" sizes="(max-width: 838px) 100vw, 838px" /></a><figcaption id="caption-attachment-1265" class="wp-caption-text">Macro Button</figcaption></figure>
<h3 style="text-align: justify;">Assign Icon to Macro:</h3>
<p style="text-align: justify;"><strong>No.1:</strong> Select an Icon for your Macro.</p>
<p style="text-align: justify;"><strong>No. 2:</strong> Give a name to your Command Button.</p>
<p style="text-align: justify;"><strong>No. 3:</strong> Click &#8220;OK&#8221;.</p>
<figure id="attachment_1260" aria-describedby="caption-attachment-1260" style="width: 296px" class="wp-caption aligncenter"><a href="http://3.90.216.52/wp-content/uploads/2015/02/Assign-Icon.png"><img loading="lazy" decoding="async" class="size-full wp-image-1260" src="http://3.90.216.52/wp-content/uploads/2015/02/Assign-Icon.png" alt="Assign Icon to Macro" width="296" height="322" srcset="https://www.technig.com/wp-content/uploads/2015/02/Assign-Icon.png 296w, https://www.technig.com/wp-content/uploads/2015/02/Assign-Icon-276x300.png 276w" sizes="(max-width: 296px) 100vw, 296px" /></a><figcaption id="caption-attachment-1260" class="wp-caption-text">Assign Icon to Macro</figcaption></figure>
<p>&nbsp;</p>
<p style="text-align: justify;">All Done!</p>
<p style="text-align: justify;">This is the example below;</p>
<figure id="attachment_1261" aria-describedby="caption-attachment-1261" style="width: 452px" class="wp-caption aligncenter"><a href="http://3.90.216.52/wp-content/uploads/2015/02/Example.png"><img loading="lazy" decoding="async" class="size-full wp-image-1261" src="http://3.90.216.52/wp-content/uploads/2015/02/Example.png" alt="Command Button" width="452" height="156" srcset="https://www.technig.com/wp-content/uploads/2015/02/Example.png 452w, https://www.technig.com/wp-content/uploads/2015/02/Example-300x104.png 300w, https://www.technig.com/wp-content/uploads/2015/02/Example-450x156.png 450w" sizes="(max-width: 452px) 100vw, 452px" /></a><figcaption id="caption-attachment-1261" class="wp-caption-text">Command Button</figcaption></figure>
<p>The post <a href="https://www.technig.com/create-button-recorded-macro/">How to create a Button from Recorded Macro</a> appeared first on <a href="https://www.technig.com">TECHNIG</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.technig.com/create-button-recorded-macro/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1259</post-id>	</item>
		<item>
		<title>How to create and use a Macro in MS Word 2013</title>
		<link>https://www.technig.com/how-to-create-and-use-a-macro-in-ms-word-2013/</link>
					<comments>https://www.technig.com/how-to-create-and-use-a-macro-in-ms-word-2013/#comments</comments>
		
		<dc:creator><![CDATA[Raza Bayani]]></dc:creator>
		<pubDate>Sat, 07 Feb 2015 14:41:43 +0000</pubDate>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Office]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Macro]]></category>
		<category><![CDATA[Office 2013]]></category>
		<category><![CDATA[Word 2013]]></category>
		<guid isPermaLink="false">https://www.technig.com/?p=1230</guid>

					<description><![CDATA[<div style="margin-bottom:20px;"><img width="840" height="420" src="https://www.technig.com/wp-content/uploads/2015/02/How-to-create-and-use-a-Macro-in-MS-Word-2013-Technig.png" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="How to create and use a Macro in MS Word 2013 - Technig" decoding="async" loading="lazy" srcset="https://www.technig.com/wp-content/uploads/2015/02/How-to-create-and-use-a-Macro-in-MS-Word-2013-Technig.png 840w, https://www.technig.com/wp-content/uploads/2015/02/How-to-create-and-use-a-Macro-in-MS-Word-2013-Technig-300x150.png 300w, https://www.technig.com/wp-content/uploads/2015/02/How-to-create-and-use-a-Macro-in-MS-Word-2013-Technig-768x384.png 768w" sizes="(max-width: 840px) 100vw, 840px" /></div>
<p>Microsoft Word gives us many great options such as macro for easy and better use. Simply macros are the commands for different actions, or we can say that macros are the recorded actions. In this post we are going to learn how to record a macro and use it with an easy way like a SHORTCUT! [&#8230;]</p>
<p>The post <a href="https://www.technig.com/how-to-create-and-use-a-macro-in-ms-word-2013/">How to create and use a Macro in MS Word 2013</a> appeared first on <a href="https://www.technig.com">TECHNIG</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div style="margin-bottom:20px;"><img width="840" height="420" src="https://www.technig.com/wp-content/uploads/2015/02/How-to-create-and-use-a-Macro-in-MS-Word-2013-Technig.png" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="How to create and use a Macro in MS Word 2013 - Technig" decoding="async" loading="lazy" srcset="https://www.technig.com/wp-content/uploads/2015/02/How-to-create-and-use-a-Macro-in-MS-Word-2013-Technig.png 840w, https://www.technig.com/wp-content/uploads/2015/02/How-to-create-and-use-a-Macro-in-MS-Word-2013-Technig-300x150.png 300w, https://www.technig.com/wp-content/uploads/2015/02/How-to-create-and-use-a-Macro-in-MS-Word-2013-Technig-768x384.png 768w" sizes="(max-width: 840px) 100vw, 840px" /></div><p style="text-align: justify;"><a href="https://office.live.com/start/Word.aspx?omkt=en-US">Microsoft </a>Word gives us many great options such as macro for easy and better use.</p>
<p style="text-align: justify;">Simply macros are the commands for different actions, or we can say that macros are the recorded actions.</p>
<p style="text-align: justify;">In this post we are going to learn how to record a macro and use it with an easy way like a SHORTCUT!</p>
<p style="text-align: justify;">Our example will be:</p>
<blockquote><p>A macro that moves a word left to right.</p></blockquote>
<h2>Type some words like below:</h2>
<ul>
<li>Place your mouse courser at the right side of a word.</li>
</ul>
<h2><a href="http://3.90.216.52/wp-content/uploads/2015/02/1.png"><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-1231" src="http://3.90.216.52/wp-content/uploads/2015/02/1.png" alt="Macro" width="393" height="99" srcset="https://www.technig.com/wp-content/uploads/2015/02/1.png 393w, https://www.technig.com/wp-content/uploads/2015/02/1-300x76.png 300w" sizes="(max-width: 393px) 100vw, 393px" /></a></h2>
<h2></h2>
<h2>Start Recording a Macro:</h2>
<ul>
<li>Go to VIEW Tab &amp; Macros group.</li>
<li>Select Macros drop-down button and Record Macro.</li>
</ul>
<p><a href="http://3.90.216.52/wp-content/uploads/2015/02/Record-Macro.png"><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-1234" src="http://3.90.216.52/wp-content/uploads/2015/02/Record-Macro.png" alt="Record Macro" width="472" height="163" srcset="https://www.technig.com/wp-content/uploads/2015/02/Record-Macro.png 472w, https://www.technig.com/wp-content/uploads/2015/02/Record-Macro-300x104.png 300w" sizes="(max-width: 472px) 100vw, 472px" /></a></p>
<p>&nbsp;</p>
<h2>Name and Assign Shortcut for your Macro:</h2>
<ol>
<li>Type a name for your macro. (No space is allowed)</li>
<li>Click to assign a keyboard shortcut. (complete No. 3 then No. 2)</li>
<li>If you want, add some Descriptions.</li>
<li>Click &#8220;OK&#8221; (Complete the process of assigning a shortcut key then Press it)</li>
</ol>
<p><a href="http://3.90.216.52/wp-content/uploads/2015/02/Assign-Shortcut.png"><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-1233" src="http://3.90.216.52/wp-content/uploads/2015/02/Assign-Shortcut.png" alt="Name your macro" width="400" height="298" srcset="https://www.technig.com/wp-content/uploads/2015/02/Assign-Shortcut.png 400w, https://www.technig.com/wp-content/uploads/2015/02/Assign-Shortcut-300x224.png 300w, https://www.technig.com/wp-content/uploads/2015/02/Assign-Shortcut-86x64.png 86w" sizes="(max-width: 400px) 100vw, 400px" /></a></p>
<p>&nbsp;</p>
<h2>Assign Keyboard Shortcut:</h2>
<ol>
<li>Type a Shortcut key.</li>
<li>Click Assign to specify that shortcut for your macro.</li>
<li>See your Keyboard Shortcut here.</li>
<li>Press Close.</li>
</ol>
<p><a href="http://3.90.216.52/wp-content/uploads/2015/02/Assign-Shortcut-2.png"><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-1232" src="http://3.90.216.52/wp-content/uploads/2015/02/Assign-Shortcut-2.png" alt="Assign Shortcut" width="497" height="455" srcset="https://www.technig.com/wp-content/uploads/2015/02/Assign-Shortcut-2.png 497w, https://www.technig.com/wp-content/uploads/2015/02/Assign-Shortcut-2-300x275.png 300w" sizes="(max-width: 497px) 100vw, 497px" /></a></p>
<p>&nbsp;</p>
<p style="text-align: justify;">Now your macro is being recorded.</p>
<ul>
<li style="text-align: justify;">You must have place your courser to the any word in the middle of the sentence.</li>
<li style="text-align: justify;">Press F8 two times to select that word then press Esc.</li>
<li style="text-align: justify;">Hold and Press SHIFT + Delete buttons on your keyboard to send the word to Clipboard.</li>
<li style="text-align: justify;">Hold and Press Ctrl + Right Arrow Key, to Move your mouse courser to the right of the other word.</li>
<li style="text-align: justify;">Hold and Press SHIFT + Insert buttons on keyboard to paste the word from Clipboard.</li>
<li style="text-align: justify;">Hold and Press Ctrl + Left Arrow Key, to bring the mouse courser to it&#8217;s first place.</li>
<li style="text-align: justify;">Now you can stop Macro from Status Bar.</li>
</ul>
<blockquote><p>Your Text should look like this!</p></blockquote>
<p style="text-align: justify;"><a href="http://3.90.216.52/wp-content/uploads/2015/02/Stop-Macro.png"><img loading="lazy" decoding="async" class="aligncenter wp-image-1235 size-full" src="http://3.90.216.52/wp-content/uploads/2015/02/Stop-Macro.png" alt="Stop Macro" width="765" height="192" srcset="https://www.technig.com/wp-content/uploads/2015/02/Stop-Macro.png 765w, https://www.technig.com/wp-content/uploads/2015/02/Stop-Macro-300x75.png 300w" sizes="(max-width: 765px) 100vw, 765px" /></a> <strong><em>Congrats!</em></strong> Now it is completed and you can move a word from left to right by the<strong> Keyboard Shortcut</strong> or the <strong>Macro</strong> recorded.</p>
<p>&nbsp;</p>
<p>The post <a href="https://www.technig.com/how-to-create-and-use-a-macro-in-ms-word-2013/">How to create and use a Macro in MS Word 2013</a> appeared first on <a href="https://www.technig.com">TECHNIG</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.technig.com/how-to-create-and-use-a-macro-in-ms-word-2013/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1230</post-id>	</item>
		<item>
		<title>Inspect Documents to protect your Personal Data!</title>
		<link>https://www.technig.com/inspect-documents-protect-personal-data/</link>
					<comments>https://www.technig.com/inspect-documents-protect-personal-data/#respond</comments>
		
		<dc:creator><![CDATA[Raza Bayani]]></dc:creator>
		<pubDate>Sat, 31 Jan 2015 06:21:53 +0000</pubDate>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Office]]></category>
		<category><![CDATA[Inspect Document]]></category>
		<category><![CDATA[MS Excel]]></category>
		<category><![CDATA[MS Office]]></category>
		<category><![CDATA[MS Word]]></category>
		<guid isPermaLink="false">https://www.technig.com/?p=1160</guid>

					<description><![CDATA[<div style="margin-bottom:20px;"><img width="794" height="316" src="https://www.technig.com/wp-content/uploads/2015/01/Featured.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Inspect Document" decoding="async" loading="lazy" srcset="https://www.technig.com/wp-content/uploads/2015/01/Featured.jpg 794w, https://www.technig.com/wp-content/uploads/2015/01/Featured-300x119.jpg 300w, https://www.technig.com/wp-content/uploads/2015/01/Featured-768x306.jpg 768w" sizes="(max-width: 794px) 100vw, 794px" /></div>
<p>Inspect Document is a great and necessary tool for Microsoft Office users. While working with MS Word, it automatically saves and keeps some hidden data. These data could be any personal information, hidden comments, hidden texts, XML data and etc. In order to avoid MS Word from keeping hidden information and personal data with itself, [&#8230;]</p>
<p>The post <a href="https://www.technig.com/inspect-documents-protect-personal-data/">Inspect Documents to protect your Personal Data!</a> appeared first on <a href="https://www.technig.com">TECHNIG</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div style="margin-bottom:20px;"><img width="794" height="316" src="https://www.technig.com/wp-content/uploads/2015/01/Featured.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Inspect Document" decoding="async" loading="lazy" srcset="https://www.technig.com/wp-content/uploads/2015/01/Featured.jpg 794w, https://www.technig.com/wp-content/uploads/2015/01/Featured-300x119.jpg 300w, https://www.technig.com/wp-content/uploads/2015/01/Featured-768x306.jpg 768w" sizes="(max-width: 794px) 100vw, 794px" /></div><p>Inspect Document is a great and necessary tool for <a href="https://www.office.com/start/default.aspx" target="_blank" rel="noopener noreferrer">Microsoft Office</a> users. While working with MS Word, it automatically saves and keeps some hidden data. These data could be any personal information, hidden comments, hidden texts, XML data and etc.</p>
<p>In order to avoid MS Word from keeping hidden information and personal data with itself, “Inspect Document” must be applied on it.<span id="more-1160"></span></p>
<p>After the completion of your document apply “Inspect Document”, if you never want your information go out of your PC or out to place where you don’t want.</p>
<blockquote><p>&#8220;Inspect Document&#8221; is mentioned as &#8220;Inspect Workbook&#8221; in excel and &#8220;Inspect Presentation&#8221; in PowerPoint.</p></blockquote>
<p>Here are some steps for inspection of any word document:</p>
<p><strong>No 1:</strong> Save your document and move to Backstage view by clicking on FILE Tab.</p>
<p><strong>No 2:</strong> Select “Info” from left sidebar, if it isn’t selected.</p>
<p><strong>No 3:</strong> Find the option “Inspect Document” and click on the dropdown button left to that, named as “Check for issues”.</p>
<p><strong>No 4:</strong> Click the first command “Inspect Document” from the list.</p>
<p style="text-align: center;"><a href="http://3.90.216.52/wp-content/uploads/2015/01/File-Info.png"><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-1156" src="http://3.90.216.52/wp-content/uploads/2015/01/File-Info.png" alt="File Info" width="732" height="780" srcset="https://www.technig.com/wp-content/uploads/2015/01/File-Info.png 732w, https://www.technig.com/wp-content/uploads/2015/01/File-Info-282x300.png 282w" sizes="(max-width: 732px) 100vw, 732px" /></a></p>
<p><strong>Selection:</strong> A new window appears. Select the contents that you want to inspect for and then Click “Inspect”.</p>
<p><a href="http://3.90.216.52/wp-content/uploads/2015/01/Select-Content.png"><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-1159" src="http://3.90.216.52/wp-content/uploads/2015/01/Select-Content.png" alt="Select Content" width="550" height="500" srcset="https://www.technig.com/wp-content/uploads/2015/01/Select-Content.png 550w, https://www.technig.com/wp-content/uploads/2015/01/Select-Content-300x273.png 300w" sizes="(max-width: 550px) 100vw, 550px" /></a></p>
<p>&nbsp;</p>
<p><strong>A:</strong> Click “Remove all” for each content which you don’t want MS Word to keep with itself.</p>
<p><strong>B:</strong> Re-inspect.</p>
<p><strong>C:</strong> Close.</p>
<p><a href="http://3.90.216.52/wp-content/uploads/2015/01/Remove-All.png"><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-1158" src="http://3.90.216.52/wp-content/uploads/2015/01/Remove-All.png" alt="Remove All" width="550" height="500" srcset="https://www.technig.com/wp-content/uploads/2015/01/Remove-All.png 550w, https://www.technig.com/wp-content/uploads/2015/01/Remove-All-300x273.png 300w" sizes="(max-width: 550px) 100vw, 550px" /></a></p>
<p>&nbsp;</p>
<p><strong>Finally Your Inspection is completed and you can send your document anywhere. </strong></p>
<p>Best of Luck!</p>
<p>The post <a href="https://www.technig.com/inspect-documents-protect-personal-data/">Inspect Documents to protect your Personal Data!</a> appeared first on <a href="https://www.technig.com">TECHNIG</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.technig.com/inspect-documents-protect-personal-data/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1160</post-id>	</item>
		<item>
		<title>Create a custom tab in Microsoft Office 2019</title>
		<link>https://www.technig.com/create-custom-tab-microsoft-office-2013/</link>
					<comments>https://www.technig.com/create-custom-tab-microsoft-office-2013/#respond</comments>
		
		<dc:creator><![CDATA[Raza Bayani]]></dc:creator>
		<pubDate>Fri, 30 Jan 2015 06:36:01 +0000</pubDate>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Office]]></category>
		<category><![CDATA[Custom Tabs]]></category>
		<category><![CDATA[Office 2013]]></category>
		<category><![CDATA[Office Customization]]></category>
		<category><![CDATA[Tabs]]></category>
		<guid isPermaLink="false">https://www.technig.com/?p=1131</guid>

					<description><![CDATA[<div style="margin-bottom:20px;"><img width="884" height="497" src="https://www.technig.com/wp-content/uploads/2015/01/Featured-Image.png" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" decoding="async" loading="lazy" srcset="https://www.technig.com/wp-content/uploads/2015/01/Featured-Image.png 884w, https://www.technig.com/wp-content/uploads/2015/01/Featured-Image-300x169.png 300w, https://www.technig.com/wp-content/uploads/2015/01/Featured-Image-768x432.png 768w" sizes="(max-width: 884px) 100vw, 884px" /></div>
<p>Many Options are placed in Microsoft Office 2013 Ribbon. While working with Office Applications, most of the time we feel crowded. So on sometimes it is difficult to find an option or command that we feel to work with. For easy and better use also to stop the wastage of time, Microsoft Office gives us [&#8230;]</p>
<p>The post <a href="https://www.technig.com/create-custom-tab-microsoft-office-2013/">Create a custom tab in Microsoft Office 2019</a> appeared first on <a href="https://www.technig.com">TECHNIG</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div style="margin-bottom:20px;"><img width="884" height="497" src="https://www.technig.com/wp-content/uploads/2015/01/Featured-Image.png" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" decoding="async" loading="lazy" srcset="https://www.technig.com/wp-content/uploads/2015/01/Featured-Image.png 884w, https://www.technig.com/wp-content/uploads/2015/01/Featured-Image-300x169.png 300w, https://www.technig.com/wp-content/uploads/2015/01/Featured-Image-768x432.png 768w" sizes="(max-width: 884px) 100vw, 884px" /></div><p style="text-align: justify;">Many Options are placed in Microsoft Office 2013 Ribbon. While working with Office Applications, most of the time we feel crowded. So on sometimes it is difficult to find an option or command that we feel to work with.</p>
<p style="text-align: justify;">For easy and better use also to stop the wastage of time, Microsoft Office gives us the opportunity to manage and group the tools which we want.<span id="more-1131"></span></p>
<p style="text-align: justify;">Here are some steps to create a Tab, Groups and manage tools inside groups in Microsoft Office 2013 Applications.</p>
<h4 style="text-align: justify;"><strong>First Step:</strong> <strong>Open an Office Application.</strong></h4>
<p style="text-align: justify;"><strong>No 1.</strong> Move to Backstage View through FILE Tab.</p>
<p style="text-align: justify;"><strong>No 2.</strong> Select Options from the Left Sidebar.</p>
<p><a href="https://www.technig.com/manage-hard-disk-using-diskpart-utility//wp-content/uploads/2015/01/File-Options.png"><img loading="lazy" decoding="async" class="aligncenter wp-image-1135 size-full" src="https://www.technig.com/wp-content/uploads/2015/01/File-Options.png" alt="File Options" width="734" height="712" srcset="https://www.technig.com/wp-content/uploads/2015/01/File-Options.png 734w, https://www.technig.com/wp-content/uploads/2015/01/File-Options-300x291.png 300w" sizes="(max-width: 734px) 100vw, 734px" /></a></p>
<h4 style="text-align: justify;"><strong>Second Step: </strong><strong>All the Information you need about the “Customize Ribbon” Option.</strong></h4>
<p style="text-align: justify;"><strong>No 1.</strong> Go to “Customize Ribbon”.</p>
<p style="text-align: justify;"><strong>No 2.</strong> Choose All Commands from the drop-down button.</p>
<p style="text-align: justify;"><strong>No 3.</strong> Navigate to Main Tabs by drop-down button.</p>
<p style="text-align: justify;"><strong>No 4.</strong> Shows Modification Buttons</p>
<p><a href="https://www.technig.com/manage-hard-disk-using-diskpart-utility//wp-content/uploads/2015/01/Excel-Options.png"><img loading="lazy" decoding="async" class="aligncenter wp-image-1133 size-full" src="https://www.technig.com/wp-content/uploads/2015/01/Excel-Options.png" alt="Excel Options" width="865" height="713" srcset="https://www.technig.com/wp-content/uploads/2015/01/Excel-Options.png 865w, https://www.technig.com/wp-content/uploads/2015/01/Excel-Options-300x247.png 300w, https://www.technig.com/wp-content/uploads/2015/01/Excel-Options-768x633.png 768w" sizes="(max-width: 865px) 100vw, 865px" /></a></p>
<h4><strong>Third Step:</strong> <strong>Customizing the Ribbon in Office 2013</strong></h4>
<p><strong>No 1.</strong> Press to Create a New Tab.</p>
<p>(A new group will automatically created after pressing New Tab.)</p>
<p><strong>No 2.</strong> Click to Create a New Group.</p>
<p><strong>No 3.</strong> After Creating Tabs and Groups you can rename them by clicking on this button.</p>
<p><strong>No 4.</strong> If you don’t want the changes applied on your ribbon area, you can reset them.</p>
<p><strong>No 5.</strong> Through this button you can Export your “Main Tabs” setting as a file, so earlier you can import them after re-installation of Office.</p>
<p><a href="https://www.technig.com/manage-hard-disk-using-diskpart-utility//wp-content/uploads/2015/01/Tab-Options.png"><img loading="lazy" decoding="async" class="aligncenter wp-image-1136 size-full" src="https://www.technig.com/wp-content/uploads/2015/01/Tab-Options.png" alt="Tab Options" width="495" height="263" srcset="https://www.technig.com/wp-content/uploads/2015/01/Tab-Options.png 495w, https://www.technig.com/wp-content/uploads/2015/01/Tab-Options-300x159.png 300w" sizes="(max-width: 495px) 100vw, 495px" /></a></p>
<h4><strong>Fourth Step:</strong> <strong>After creating Tabs and Groups, in order to add options inside a group select it.</strong></h4>
<p><strong>For A:</strong> Select a command.</p>
<p><strong>For B:</strong> Press “Add” Button.</p>
<p><strong>For C:</strong> See the commands you&#8217;ve added to different groups.</p>
<p><strong>For E:</strong> After you find satisfied yourself with the changes applied, click OK to continue.</p>
<p><a href="https://www.technig.com/manage-hard-disk-using-diskpart-utility//wp-content/uploads/2015/01/Creating-New-Tab.png"><img loading="lazy" decoding="async" class="aligncenter wp-image-1132 size-full" src="https://www.technig.com/wp-content/uploads/2015/01/Creating-New-Tab.png" alt="Creating New Tab" width="869" height="717" srcset="https://www.technig.com/wp-content/uploads/2015/01/Creating-New-Tab.png 869w, https://www.technig.com/wp-content/uploads/2015/01/Creating-New-Tab-300x248.png 300w, https://www.technig.com/wp-content/uploads/2015/01/Creating-New-Tab-768x634.png 768w" sizes="(max-width: 869px) 100vw, 869px" /></a></p>
<h4><strong>Fifth Step:</strong> <strong>Find your Tab along other Office Tabs.</strong></h4>
<p><strong>Here is our New Tab:</strong></p>
<p><a href="https://www.technig.com/manage-hard-disk-using-diskpart-utility//wp-content/uploads/2015/01/Technig.png"><img loading="lazy" decoding="async" class="aligncenter wp-image-1137 size-full" src="https://www.technig.com/wp-content/uploads/2015/01/Technig.png" alt="Office 2013" width="885" height="162" srcset="https://www.technig.com/wp-content/uploads/2015/01/Technig.png 885w, https://www.technig.com/wp-content/uploads/2015/01/Technig-300x55.png 300w, https://www.technig.com/wp-content/uploads/2015/01/Technig-768x141.png 768w" sizes="(max-width: 885px) 100vw, 885px" /></a></p>
<p>The post <a href="https://www.technig.com/create-custom-tab-microsoft-office-2013/">Create a custom tab in Microsoft Office 2019</a> appeared first on <a href="https://www.technig.com">TECHNIG</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.technig.com/create-custom-tab-microsoft-office-2013/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1131</post-id>	</item>
	</channel>
</rss>
