<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<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/"
	>

<channel>
	<title>controlpanel &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/controlpanel/</link>
	<description>Feed of posts on WordPress.com tagged "controlpanel"</description>
	<pubDate>Wed, 10 Feb 2010 07:20:16 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Volume and Sound Properties In WINCE]]></title>
<link>http://prabukumar.wordpress.com/2008/07/24/volume-and-sound-properties-in-wince/</link>
<pubDate>Thu, 24 Jul 2008 09:33:22 +0000</pubDate>
<dc:creator>prabukumar</dc:creator>
<guid>http://prabukumar.wordpress.com/2008/07/24/volume-and-sound-properties-in-wince/</guid>
<description><![CDATA[Normally in windows CE sound properties it doesn&#8217;t show the option for disabling the sounds of]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Normally in windows CE sound properties it doesn&#8217;t show the option for disabling the sounds of &#8220;key click&#8221; and &#8220;screen taps&#8221;.
<p><a href="http://prabukumar.files.wordpress.com/2008/07/clip-image001.png"><img style="border-width:0;" height="244" alt="clip_image001" src="http://prabukumar.files.wordpress.com/2008/07/clip-image001-thumb.png?w=184&#038;h=244" width="184" border="0"></a>
<p>If you want to enable these two options in the Volume control panel applet, you need to add following registry entry either in platform.reg or project.reg.<br />
<blockquote>
<p><font color="#0000ff">[HKEY_LOCAL_MACHINE\ControlPanel]</font>
<p><font color="#0000ff">&#8220;InputConfig&#8221;=dword:3 ;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Bit0=have keybd, Bit1=have touch screen ,Bit2=have HW buttons</font></p>
</blockquote>
<p>After adding the above registry entry you will be able to see &#8220;key click&#8221; and &#8220;screen taps&#8221; option in the Volume and Sound Properties control panel applet.
<p><a href="http://prabukumar.files.wordpress.com/2008/07/with-screen-tap-mark.png"><img style="border-width:0;" height="244" alt="With_Screen_Tap_mark" src="http://prabukumar.files.wordpress.com/2008/07/with-screen-tap-mark-thumb.png?w=184&#038;h=244" width="184" border="0"></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Microsoft Windows Various programs shortcuts to make u r life easier]]></title>
<link>http://kewlrevolution.wordpress.com/2008/06/30/microsoft-windows-various-programs-shortcuts-to-make-u-r-life-easier/</link>
<pubDate>Mon, 30 Jun 2008 01:48:06 +0000</pubDate>
<dc:creator>kishorebharath</dc:creator>
<guid>http://kewlrevolution.wordpress.com/2008/06/30/microsoft-windows-various-programs-shortcuts-to-make-u-r-life-easier/</guid>
<description><![CDATA[Microsoft Windows SHORTCUT KEYSShortcut keys help provide an easier and usually quicker method of na]]></description>
<content:encoded><![CDATA[Microsoft Windows SHORTCUT KEYSShortcut keys help provide an easier and usually quicker method of na]]></content:encoded>
</item>
<item>
<title><![CDATA[Launch control panel apps programmatically.]]></title>
<link>http://weseetips.com/2008/04/02/launch-control-panel-apps-programmatically/</link>
<pubDate>Wed, 02 Apr 2008 17:22:08 +0000</pubDate>
<dc:creator>Jijo.Raj</dc:creator>
<guid>http://weseetips.com/2008/04/02/launch-control-panel-apps-programmatically/</guid>
<description><![CDATA[Normally for launching control panel application you have to go to control panel and double click th]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img src="http://weseetips.wordpress.com/files/2008/03/icon_description.jpg" alt="Icon Description" /><br />
Normally for launching control panel application you have to go to control panel and double click the icons. Its useful if we can launch it programmatically. For instance, if the program wants the user to check the computer name, the system properties can be launched. If the program wants to uninstall some software, for easiness &#8211; the add/remove programs dialog can be launched and so and so…</p>
<p class="MsoNormal"><img src="http://weseetips.wordpress.com/files/2008/03/icon_howcanidoit.jpg" alt="Icon How Can I Do It?" /><br />
There is an undocumented api &#8211; &#8220;<span style="color:#0000ff;">Control_RunDLL</span>&#8221; in the <span style="color:#0000ff;">Shell32.dll</span> which can be used to launch control panel applications. You&#8217;ve to pass the filename of control Panel application and it will be launched. See the following code block.</p>
<pre>// Load the Shell32 dll.
HINSTANCE hShell32 = LoadLibrary(_T("Shell32.dll"));

// Typedef for function pointer for Control_RunDLL.
typedef void( CALLBACK * CONTROL_RUNDLL_FN_PTR)( HWND hwnd,
                                                 HINSTANCE hinst,
                                                 LPSTR lpszCmdLine,
                                                 int nCmdShow );

// Get the function pointer of - Control_RunDLL.
CONTROL_RUNDLL_FN_PTR pControl_RunDLL =
  (CONTROL_RUNDLL_FN_PTR)GetProcAddress( hShell32,
                                         _T("Control_RunDLL"));

// Now call the function and launch the ControlPanel App.
(*pControl_RunDLL)( 0, // hwnd
                    0, // Hinstance
                    _T("sysdm.cpl"), // ControlPanelApp filename.
                    SW_NORMAL );     // Show Normal</pre>
<p><img src="http://weseetips.wordpress.com/files/2008/03/icon_whereisit.jpg" alt="Icon - Where is it?" /><br />
The control panel applications are located inside your windows directory. If you search the windows directory for &#8220;*<span style="color:#0000ff;">.cpl</span>&#8221; you can find a number of files. Each file is a control panel application. Even though the file extension is &#8220;<span style="color:#0000ff;">.cpl</span>&#8220;, its a dll. From the name itself you can interpret which control panel application it refers to. Go on, have a try. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><img src="http://weseetips.wordpress.com/files/2008/03/icon_note.jpg" alt="Icon Note" /><br />
For launching some control panel apps, you&#8217;ve to provide valid <span style="color:#0000ff;">hwnd </span>and <span style="color:#0000ff;">hinstance</span>. Then only it will be shown. For instance &#8211; <span style="color:#0000ff;">timedate.cpl</span>.</p>
<p><img src="http://weseetips.wordpress.com/files/2008/03/intermediateseries.jpg" alt="intermediateseries.jpg" /><br />
Targeted Audience &#8211; Intermediate.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Hacker khiến Viettel hứa chăm sóc khách hàng kỹ hơn]]></title>
<link>http://kienthucmaytinh.wordpress.com/2008/03/01/hacker-khien-vietel-hua-cham-soc/</link>
<pubDate>Sat, 01 Mar 2008 03:00:15 +0000</pubDate>
<dc:creator>kienthucmaytinh</dc:creator>
<guid>http://kienthucmaytinh.wordpress.com/2008/03/01/hacker-khien-vietel-hua-cham-soc/</guid>
<description><![CDATA[Một học sinh lớp 12 tuyên bố trên blog, chỉ cần 5 phút có thể lấy ra &#8220;hàng đống&#8221; tài kho]]></description>
<content:encoded><![CDATA[Một học sinh lớp 12 tuyên bố trên blog, chỉ cần 5 phút có thể lấy ra &#8220;hàng đống&#8221; tài kho]]></content:encoded>
</item>
<item>
<title><![CDATA[Zone Alarm Install Guide - Updated &amp; In-Depth]]></title>
<link>http://cotojo.wordpress.com/2007/06/18/zone-alarm-install-guide-updated-in-depth/</link>
<pubDate>Mon, 18 Jun 2007 11:50:20 +0000</pubDate>
<dc:creator>cotojo</dc:creator>
<guid>http://cotojo.wordpress.com/2007/06/18/zone-alarm-install-guide-updated-in-depth/</guid>
<description><![CDATA[The following instructions only apply if you are installing Zone Alarm for the very first time. Thes]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><strong>The following instructions only apply if you are installing Zone Alarm for the very first time. These instructions are NOT for the people who already have Zone Alarm installed on their computers, and are upgrading to the latest version.</strong></p>
<p><strong>1. Create a New Folder on your desktop and Rename it to Downloads.  By doing this you will have one central location for all programs that you download.  When you download any program DO NOT select &#8216;Run&#8217;, select &#8216;Save&#8217; and when you have saved it scan it with an anti-virus program.<br />
I recommend the use of AVG AntiVirus which I have covered in another post.</strong></p>
<p><strong>2.</strong> <a href="http://www.download.com/ZoneAlarm-Firewall-Windows-2000-XP-/3000-10435_4-10039884.html" target="_blank"><span style="color:#0000ff;">Click Here to download ZoneAlarm</span></a>. <strong>Download it into the folder named Downloads, BUT DO NOT install it until you have followed the instructions below.</strong></p>
<p><strong>3. Once you have downloaded your version of ZoneAlarm to your Desktop Folder, disconnect from the Internet. If you use Cable or DSL Modem, disconnect it and close any other running programs apart from your basic programs to run Windows.  This includes the Windows Firewall. To find out<br />
what Applications are running go to Task Manager (Control+Alt+Delete). Look for Applications, make sure there are NO Applications running. If they are, use the End Task Button. To disable the Windows Firewall go to your Control Panel, switch it to Classic View then double click on Windows Firewall and then click the &#8216;Off&#8217; button.</strong></p>
<p><strong>4. Go into your Control Panel, on top of the screen you will see Tools, click on it, then another tab will show up and click on Folder Options, in the new panel that opens click on View. Scroll down to where it says Hidden Files and Folders, put a dot or check-mark in the box that says, &#8220;Show hidden files and folders&#8221;, then REMOVE the check mark from the next two boxes that say the following,&#8221; Hide Extensions for known file types&#8221; and &#8220;Hide protected operating system files (Recommended)&#8221;. Drop down to bottom<br />
of panel and click Apply. Now go to the top of the panel and click on &#8220;Apply to All Folders&#8221;, click Yes in new window then click OK in Folder Options panel. This way all your folders will show the change. Close the control Panel.</strong></p>
<p><strong>5. Make sure you have completely removed any other vendor&#8217;s firewall product you were currently using ie: Norton, McAfee etc. Now for those of you who are installing the Zone Alarm Security Suite or Zone Alarm Anti-Virus, the very same applies, make sure you have completely removed any other anti-virus product you were currently using. If you are using AVG Anti-Virus and/or Spybot Search &#38; Destroy you can safely ignore them. If the program has an Uninstall feature please use that, if not go to your Control Panel and select Add/Remove Programs and select each item individually and select Remove. Do NOT reboot if prompted to.</strong></p>
<p><strong>You then need to ensure that there are no Registry keys or Files left behind. Click on Start, then Search or Find, and select Files. Make sure that the location box is set to search your local hard drive (usually C or All Local<br />
Drives. XP users: set Advanced search options to search ALL files and folders! Type in Norton or Symantec etc. then wait for search to complete. If any items show up simply right click and Delete. Then double click MY COMPUTER, double click on C (if that is your main drive) and you will<br />
have a window of Folders open.  Locate the Program Files folder and double click to open it and you will then have a list of all of your Program Files. Look for any folder that has your old Firewall or Anti-Virus name on it, right click on the folder and select Delete. Once you have done this, click the Back button at the top locate and and double click on the Windows folder.  This will open a panel of all of you Windows Files, scroll down to find the one named Prefetch. Double click it to open then go to the Edit Tab at the top and click on it, scroll down to Select All, left click on it and all of the files will be highlighted.  Then go to File (beside Edit) click on it scroll down and select Delete.  You will get a pop-up message &#8216;Are you sure you want to send these XXXX items to the Recycle Bin&#8217;. Click Yes, this will remove the items out of the Prefetch Folder. Now close the window to return to your desktop. Go to your Recycle Bin, right click and select Empty Recycle Bin.</strong></p>
<p><strong>Now, I will try to explain to you how to find any stray Registry Keys in your Registry.  First of all backup your Registry.  Go to Start, Run and type in regedit click on OK and the Registry Editor will then open. Go to the top Tabs<br />
and click on File, scroll down until you see Export, left click it and this will open Export Registry File window. Save this file to your desktop and in the File Name box enter Registry Backup File. Click on Save and it should now<br />
be on your desktop. Verify the file is a good copy, in the Registry Editor window click on File, select Import, in new panel where it says &#8216;Look in&#8217; select desktop and then click on your saved file then click &#8216;Open&#8217;. Once it says it has been read in successfully, you have a good backup.</strong></p>
<p><strong>Now to edit the Registry go to the Edit Tab at the top left click it, scroll down until you see Find, left click<br />
it, another panel will pop up, it will ask you Find What, type in Norton, Symantec, Mcafee or whatever Firewall or Anti-Virus vendor you were using before installing ZoneAlarm. After you have typed the name, make sure that there are checkmarks in all of the boxes &#8211; Should be 4 blocks, Keys, Values, Data, and Match Whole String Only &#8211; then go back to where you typed in Norton, Symantec, etc then click on &#8216;Find Next&#8217;. The search will locate Folders in the left panel and strings in the right pane. Ignore the right pane strings and keys values, look for the highlighted Folder in the left pane, right click on it and select &#8216;Delete&#8217;, click &#8216;Yes&#8217; on pop-up window then hit your F3 keyboard button and it will continue to search the Registry, delete any Folders it finds in the left pane and continue until a pop-up says Finished searching through the registry. Exit the Registry Editor.</strong></p>
<p><strong>6. Now go back to your desktop to where you have downloaded and saved your copy of ZoneAlarm and install it.</strong></p>
<p><strong>7. Let ZoneAlarm configure your Program Settings. The reason for this is that there is a very good possibility<br />
that when you manually install the Program Settings, something may not get properly installed, which may cause major problems with your installation of ZoneAlarm. Later if you decide you do not want a specific program in your Programs Control Panel, then remove it. If it is required,  you will get a balloon alert about it allowing or disallowing it. That&#8217;s your decision. I have always done this and have never had a problem by letting Zone Alarm configure my settings.</strong></p>
<p><strong>8. When the installation is complete, reboot your system and connect back on to the Internet, making sure all your other programs are activated this includes ZoneAlarm and the ones that you had disabled, especially your Cable or DSL Modems.  These should all automatically restart after rebooting.</strong></p>
<p><strong>9. Final step..go back to Start &#62; Control Panel and if necessary switch it to Classic View. Locate the folder<br />
named &#8216;Folder Options&#8217; and double click it.  In the &#8216;View&#8217; tab go to Hidden files and folders and click the radio<br />
button &#8216;Do not show hidden files and folders&#8217; and place ticks in the following two boxes, &#8216;Hide extensions for known file types&#8217; and &#8216;Hide protected operating system files(Recommended)&#8217;.</strong></p>
<p><strong>For additional in-depth information </strong><a href="http://download.zonelabs.com/bin/media/pdf/zaclient70_user_manual.pdf" target="_blank"><span style="color:#0000ff;">click here</span></a></p>
<p><strong>You can find an installation</strong> <a href="http://cotojo.wordpress.com/2007/08/24/zone-alarm-setup-video-tutorial/" target="_blank"><span style="color:#0000ff;">tutorial here</span></a> <strong>once you have completed the steps above.</strong></p>
<p><strong>ZoneAlarm will walk you through the setup when you install it.</strong></p>
<p><strong>If you have any questions please leave a comment or use the &#8216;Contact Me here&#8217; at the top of this page and I will get back to you asap.</strong></p>
<p style="clear:both;padding-bottom:0.25em;text-align:center;"><a title="Bookmark using any bookmark manager!" href="http://www.addthis.com/bookmark.php" target="_blank"><img class="aligncenter" src="http://s9.addthis.com/button2-bm.png" border="0" alt="AddThis Social Bookmark Button" width="160" height="24" /></a></p>
<p style="text-align:center;"><a href="http://technorati.com/faves?sub=addfavbtn&#38;add=http://cotojo.wordpress.com"><img class="aligncenter" src="http://static.technorati.com/pix/fave/tech-fav-1.png" alt="Add to Technorati Favorites" /></a></p>
<p style="text-align:center;"><a title="Join My Community at MyBloglog!" href="http://www.mybloglog.com/buzz/community/cotojo1/"><img class="aligncenter" style="border:0 none;" src="http://www.mybloglog.com/buzz/images/buttons/btn_c21_l.png" alt="Join My Community at MyBloglog!" /></a></p>
<p style="text-align:center;"><a href="http://uk.groups.yahoo.com/group/FreePCSecurity/join"><img class="aligncenter" src="http://us.i1.yimg.com/us.yimg.com/i/yg/img/i/uk/ui/join.gif" border="0" alt="Click here to join FreePCSecurity" /><span style="color:#0000ff;">Click to join FreePCSecurity</span></a></p>
<h6>© Free PC Security 2007</h6>
</div>]]></content:encoded>
</item>

</channel>
</rss>
