<?xml version='1.0' encoding='UTF-8'?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/" xmlns:blogger="http://schemas.google.com/blogger/2008" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" version="2.0"><channel><atom:id>tag:blogger.com,1999:blog-2093490388124244383</atom:id><lastBuildDate>Mon, 02 Sep 2024 02:34:59 +0000</lastBuildDate><title>Sistematika Penulisan Makalah</title><description></description><link>http://belajarbahasainggris-learnenglish.blogspot.com/</link><managingEditor>noreply@blogger.com (Anonymous)</managingEditor><generator>Blogger</generator><openSearch:totalResults>2</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2093490388124244383.post-7024258672559972668</guid><pubDate>Thu, 08 Aug 2013 14:12:00 +0000</pubDate><atom:updated>2013-08-08T07:12:57.340-07:00</atom:updated><title>Using .vbs and .bat File Will Let Us Login Into Any Websites Without Typing on the Keyboard</title><description>&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
&lt;b&gt;Auto Login to Any Websites and Browsers&lt;/b&gt;&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
This auto login is to make us easier to login to any websites without typing the username and the password. This tip will work if the browser is already running on the desktop and the desired website is already opened, for example Facebook, Gmail, Yahoo, etc. How to do that? We are going to use the Notepad and save it into .vbs and .bat file format.&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
&lt;b&gt;The First Step (Creating .vbs file format using Notepad)&lt;/b&gt;&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
Copy the following codes into the Notepad then save it into .vbs file format (Yahoo.vbs):&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
set WshShell = WScript.CreateObject(&quot;WScript.Shell&quot;)&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
WScript.Sleep 4000&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
WshShell.SendKeys &quot;username&quot;&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
WScript.Sleep 2000&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
WshShell.SendKeys &quot;{TAB}&quot;&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
WScript.Sleep 2000&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
WshShell.SendKeys &quot;password&quot;&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
WshShell.SendKeys &quot;{TAB}&quot;&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
WshShell.SendKeys &quot;{ENTER}&quot;&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
WScript.Quit()&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
Note:&lt;/div&gt;
&lt;ol style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px; padding: 0px 10px 0px 25px;&quot;&gt;
&lt;li&gt;Change the username inside the quotes with your email address.&lt;/li&gt;
&lt;li&gt;Change the password inside the quotes with your password.&lt;/li&gt;
&lt;/ol&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
For example:&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
set WshShell = WScript.CreateObject(&quot;WScript.Shell&quot;)&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
WScript.Sleep 4000&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
WshShell.SendKeys &quot;bahadoel.ketawangakak@yahoo.co.uk&quot;&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
WScript.Sleep 2000&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
WshShell.SendKeys &quot;{TAB}&quot;&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
WScript.Sleep 2000&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
WshShell.SendKeys &quot;prikitiw&quot;&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
WshShell.SendKeys &quot;{TAB}&quot;&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
WshShell.SendKeys &quot;{ENTER}&quot;&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
WScript.Quit()&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
&lt;b&gt;The Second Step (Creating .bat file format using Notepad)&lt;/b&gt;&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
Copy the following codes into the Notepad then save it into .bat file format (Yahoo.bat):&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
@Echo Off&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
start The name of your .vbs file&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
goto End&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
:End&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
&amp;gt;&amp;gt; Change The name of your .vbs file with your .vbs file name.&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
For example:&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
@Echo Off&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
start Yahoo.vbs&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
goto End&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
:End&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
&lt;b&gt;The Third Step (Saving Those File Into One Folder)&lt;/b&gt;&lt;/div&gt;
&lt;ol style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px; padding: 0px 10px 0px 25px;&quot;&gt;
&lt;li&gt;Create New Folder then name it as you want.&lt;/li&gt;
&lt;li&gt;Move those two files (.vbs and .bat files) into the folder you have created.&lt;/li&gt;
&lt;/ol&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
&lt;b&gt;The Fourth Step (Hiding the .vbs File So That No One Could See and Access the File)&lt;/b&gt;&lt;/div&gt;
&lt;ol style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px; padding: 0px 10px 0px 25px;&quot;&gt;
&lt;li&gt;Press Home + R on the keyboard.&lt;/li&gt;
&lt;li&gt;Type in &quot;cmd&quot; (without quotes) then press Enter&lt;/li&gt;
&lt;li&gt;(the .vbs file is saved into the following path &quot;E:\Accounts\Yahoo.vbs&quot;) On the Command Prompt type in the following code: attrib +h +r +s &quot;The .vbs file path&quot; (attrib +h +r +s &quot;E:\Accounts\Yahoo.vbs&quot;) then press Enter (the .vbs file now should be hidden and no one know the username and the password inside the .vbs file)&lt;/li&gt;
&lt;/ol&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
&lt;b&gt;The Last Steps Is to Use the File&lt;/b&gt;&lt;/div&gt;
&lt;ol style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px; padding: 0px 10px 0px 25px;&quot;&gt;
&lt;li&gt;Open the browser then go to the desired website (the website should be associated with the account inside the .vbs file).&lt;/li&gt;
&lt;li&gt;Double click on the .bat file you have created.&lt;/li&gt;
&lt;li&gt;Then go to your browser.&lt;/li&gt;
&lt;/ol&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
&lt;b&gt;NB:&lt;/b&gt;&lt;/div&gt;
&lt;ol style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px; padding: 0px 10px 0px 25px;&quot;&gt;
&lt;li&gt;The .vbs file will not accept some symbols for username or password, such as ^, (, ), etc (one of my accounts using these symbols for the password).&lt;/li&gt;
&lt;li&gt;There is another way without opening the browser first but you will need to set the appropriate time for the file. Sometimes it will input only your password into the username field, and sometimes it will leave blank the username and input the password into the right field.&lt;/li&gt;
&lt;/ol&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
If you still want to try it, here is the code:&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
set WshShell = WScript.CreateObject(&quot;WScript.Shell&quot;)&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
call WshShell.Run(&quot;chrome.exe&amp;nbsp;&lt;a href=&quot;https://www.facebook.com/&quot; style=&quot;color: #3b5998; cursor: pointer; text-decoration: none;&quot;&gt;https://www.facebook.com/&lt;/a&gt;&quot;, 1, false)&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
WScript.Sleep 4000&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
WshShell.SendKeys &quot;username&quot;&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
WScript.Sleep 2000&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
WshShell.SendKeys &quot;{TAB}&quot;&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
WScript.Sleep 2000&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
WshShell.SendKeys &quot;password&quot;&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
WshShell.SendKeys &quot;{TAB}&quot;&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
WshShell.SendKeys &quot;{ENTER}&quot;&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
WScript.Quit()&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
Note: You may change the chrome.exe into the firefox.exe but it will not work on maxthon.exe. And you may change the&amp;nbsp;&lt;a href=&quot;https://www.facebook.com/&quot; style=&quot;color: #3b5998; cursor: pointer; text-decoration: none;&quot;&gt;https://www.facebook.com/&lt;/a&gt;&amp;nbsp;with the desired website.&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
&lt;b&gt;Update:&lt;/b&gt;&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
For some symbols that won&#39;t accepted (gone an error) while sending the keys in vbscript, just put it in braces. For example, when we put these symbols %^() the vbscript is gone an error, then we need to put them in braces so that these symbols will be accepted in vbscript (it will be this way: {%}{^}{(}{)}. Follow this link for more details:&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
&lt;a href=&quot;https://www.facebook.com/notes/syamsoel-bai/auto-login-through-vbs-and-bat-file-format/362784083824020#&quot; role=&quot;button&quot; style=&quot;color: #3b5998; cursor: pointer; text-decoration: none;&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://www.facebook.com/l.php?u=http%3A%2F%2Fstackoverflow.com%2Fquestions%2F10090602%2Ferror-while-sending-character-with-sendkeys-in-vbscript&amp;amp;h=dAQHPq7oo&amp;amp;s=1&quot; rel=&quot;nofollow&quot; style=&quot;color: #3b5998; cursor: pointer; text-decoration: none;&quot; target=&quot;_blank&quot;&gt;http://stackoverflow.com/questions/10090602/error-while-sending-character-with-sendkeys-in-vbscript&lt;/a&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
&lt;b&gt;References&lt;/b&gt;&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
&lt;a href=&quot;https://www.facebook.com/notes/syamsoel-bai/auto-login-through-vbs-and-bat-file-format/362784083824020#&quot; role=&quot;button&quot; style=&quot;color: #3b5998; cursor: pointer; text-decoration: none;&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://www.facebook.com/l.php?u=http%3A%2F%2Fstackoverflow.com%2Fquestions%2F14204623%2Fautomatic-login-to-a-website-on-windows-7-chrome-via-batch-file&amp;amp;h=hAQFx5TVF&amp;amp;s=1&quot; rel=&quot;nofollow&quot; style=&quot;color: #3b5998; cursor: pointer; text-decoration: none;&quot; target=&quot;_blank&quot;&gt;http://stackoverflow.com/questions/14204623/automatic-login-to-a-website-on-windows-7-chrome-via-batch-file&lt;/a&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
&lt;a href=&quot;https://www.facebook.com/notes/syamsoel-bai/auto-login-through-vbs-and-bat-file-format/362784083824020#&quot; role=&quot;button&quot; style=&quot;color: #3b5998; cursor: pointer; text-decoration: none;&quot;&gt;&lt;/a&gt;&lt;a href=&quot;https://www.facebook.com/notes/syamsoel-bai/auto-login-through-vbs-and-bat-file-format/362784083824020#&quot; role=&quot;button&quot; style=&quot;color: #3b5998; cursor: pointer; text-decoration: none;&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://www.facebook.com/l.php?u=http%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3Dz00waREp3S0&amp;amp;h=2AQFwkFJt&amp;amp;s=1&quot; rel=&quot;nofollow&quot; style=&quot;color: #3b5998; cursor: pointer; text-decoration: none;&quot; target=&quot;_blank&quot;&gt;http://www.youtube.com/watch?v=z00waREp3S0&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
&lt;a href=&quot;https://www.facebook.com/notes/syamsoel-bai/auto-login-through-vbs-and-bat-file-format/362784083824020#&quot; role=&quot;button&quot; style=&quot;color: #3b5998; cursor: pointer; text-decoration: none;&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://www.facebook.com/l.php?u=http%3A%2F%2Fstackoverflow.com%2Fquestions%2F10090602%2Ferror-while-sending-character-with-sendkeys-in-vbscript&amp;amp;h=zAQEYwLBY&amp;amp;s=1&quot; rel=&quot;nofollow&quot; style=&quot;color: #3b5998; cursor: pointer; text-decoration: none;&quot; target=&quot;_blank&quot;&gt;http://stackoverflow.com/questions/10090602/error-while-sending-character-with-sendkeys-in-vbscript&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
&lt;a href=&quot;https://www.facebook.com/notes/syamsoel-bai/auto-login-through-vbs-and-bat-file-format/362784083824020#&quot; role=&quot;button&quot; style=&quot;color: #3b5998; cursor: pointer; text-decoration: none;&quot;&gt;&lt;br /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;
And my previous search for hiding the file and creating .vbs and .bat file on google&lt;/div&gt;
</description><link>http://belajarbahasainggris-learnenglish.blogspot.com/2013/08/using-vbs-and-bat-file-will-let-us.html</link><author>noreply@blogger.com (Anonymous)</author><thr:total>4</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2093490388124244383.post-7973196807524478176</guid><pubDate>Mon, 25 Mar 2013 04:18:00 +0000</pubDate><atom:updated>2013-03-24T21:43:16.475-07:00</atom:updated><title>Sistematika Penulisan Makalah</title><description>&lt;br /&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; text-align: justify; text-justify: inter-ideograph;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; text-align: justify; text-justify: inter-ideograph;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-size: 15.0pt; line-height: 150%;&quot;&gt;Sistematika
Penulisan Makalah&lt;/span&gt;&lt;/b&gt;&lt;span style=&quot;font-size: 15.0pt; line-height: 150%;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;
&lt;b&gt;HALAMAN SAMPUL&lt;/b&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; text-indent: 36pt;&quot;&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Makalah diberi sampul dengan menggunakan
kertas tebal (kertas kambing). Sampul depan minimal berisi judul makalah, logo,
nama penulis, nama sekolah dan tahun ajaran.&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; text-indent: 36pt;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;
&lt;b&gt;DAFTAR ISI&lt;/b&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;
&lt;b&gt;BAB I PENDAHULUAN&lt;/b&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; margin-left: 18pt; text-indent: -18pt;&quot;&gt;
&lt;!--[if !supportLists]--&gt;&lt;b&gt;A.&lt;span style=&quot;font-size: 7pt; font-weight: normal; line-height: normal;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&lt;/b&gt;&lt;!--[endif]--&gt;&lt;span dir=&quot;LTR&quot;&gt;&lt;b&gt;Latar Belakang&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; margin-left: 18pt; text-indent: 18pt;&quot;&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Pada bagian ini memaparkan
gejala-gejala kesenjangan antara teori dengan praktik, atau harapan dengan
kenyataan, atau tujuan dengan hasil yang dicapai, atau kebijakan dengan
kenyataan yang ada di lapangan. &lt;st1:city&gt;Ada&lt;/st1:city&gt;
kesenjangan tersebut bila tidak dibahas maka akan menimbulkan kerugian bagi
pendidikan. Selain hal tersebut perlu juga dikemukakan argumentasi pentingnya
pembahasan. Penulis perlu mengungkapkan teori-teori, temuan hasil penelitian,
dan studi pendahuluan yang dilakukan guna memperkuat identifikasi masalah.&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; margin-left: 18pt; text-indent: 18pt;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; margin-left: 18pt; text-indent: -18pt;&quot;&gt;
&lt;!--[if !supportLists]--&gt;&lt;b&gt;B.&lt;span style=&quot;font-size: 7pt; font-weight: normal; line-height: normal;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&lt;/b&gt;&lt;!--[endif]--&gt;&lt;span dir=&quot;LTR&quot;&gt;&lt;b&gt;Rumusan Masalah&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; margin-left: 18pt; text-indent: 18pt;&quot;&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Rumusan masalah merupakan
pernyataan lengkap mengenai ruang lingkup pembahasan yang dinyatakan dalam
bentuk pertanyaan yang ingin dicari jawabannya. Rumusan masalah ditulis
berdasarkan identifikasi dan pembatasan masalah yang dilahirkan dari latar
belakang masalah. Agar mudah diukur, perumusan sebaiknya dibuat rumusan masalah
umum dan masalah khusus.&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; margin-left: 18pt; text-indent: 18pt;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; margin-left: 18pt; text-indent: -18pt;&quot;&gt;
&lt;!--[if !supportLists]--&gt;&lt;b&gt;C.&lt;span style=&quot;font-size: 7pt; font-weight: normal; line-height: normal;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&lt;/b&gt;&lt;!--[endif]--&gt;&lt;span dir=&quot;LTR&quot;&gt;&lt;b&gt;Tujuan dan Manfaat&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; margin-left: 18pt; text-indent: 18pt;&quot;&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Tujuan pembahasan
merupakan sasaran yang akan dicapai untuk menjawab rumusan masalah. Tujuan pembahasan
biasanya untuk mendeskripsikan (menggambarkan), menguraikan, menjelaskan, atau
memperoleh solusi pemecahan. Adapun manfaat merupakan kegunaan setelah masalah
dapat dibahas atau dijawab.&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; margin-left: 18pt; text-indent: 18pt;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; margin-left: 18pt; text-indent: -18pt;&quot;&gt;
&lt;!--[if !supportLists]--&gt;&lt;b&gt;D.&lt;span style=&quot;font-size: 7pt; font-weight: normal; line-height: normal;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&lt;/b&gt;&lt;!--[endif]--&gt;&lt;span dir=&quot;LTR&quot;&gt;&lt;b&gt;Prosedur Pemecahan Masalah&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; margin-left: 18pt; text-indent: 18pt;&quot;&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Prosedur pemecahan masalah
merupakan langkah yang ditempuh dalam rangka menjawab masalah. Biasanya penulis
mengemukakan metode yang digunakan seperti studi literatur atau studi pustaka.&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; margin-left: 18pt; text-indent: 18pt;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;
&lt;b&gt;BAB II PEMBAHASAN&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;
&lt;b&gt;Jawaban terhadap Rumusan Masalah&lt;/b&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; text-indent: 36pt;&quot;&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Pembahas menyajikan alternatif dan pilihan
jawaban beserta alasan mengapa memilih alternatif tersebut. Dalam hal ini
penulis perlu mendemonstarsikan berbagai konsep, teori, atau strategi dalam
rangka menjawab rumusan masalah. Jika penulis menyajikan berbagai teori,
pandangan para pakar, atau hasil penelitian terdahulu, maka harus dijelaskan
posisi materi yang dibahas, sehingga sintesis dan evaluasinya tepat. Selanjutnya
jika penulis menyajikan inovasi atau terobosan yang kreatif, maka perlu
membandingkan dengan temuan terdahulu, sehingga jelas letak inovasinya.&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; text-indent: 36pt;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;
&lt;b&gt;BAB III SIMPULAN DAN SARAN&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; margin-left: 18pt; text-indent: -18pt;&quot;&gt;
&lt;!--[if !supportLists]--&gt;&lt;b&gt;A.&lt;span style=&quot;font-size: 7pt; font-weight: normal; line-height: normal;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&lt;/b&gt;&lt;!--[endif]--&gt;&lt;span dir=&quot;LTR&quot;&gt;&lt;b&gt;Simpulan&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; margin-left: 18pt; text-indent: 18pt;&quot;&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Simpulan merupakan
abstraksi/kristalisasi bagi pembahasan yang berguna untuk menjawab permasalahan
yang telah dirumuskan. Simpulan hendaknya didasarkan kepada rumusan masalah
sehingga bermakna. Simpulan sebaiknya ditulis dalam bentuk essai.&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; margin-left: 18pt; text-indent: 18pt;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; margin-left: 18pt; text-indent: -18pt;&quot;&gt;
&lt;!--[if !supportLists]--&gt;&lt;b&gt;B.&lt;span style=&quot;font-size: 7pt; font-weight: normal; line-height: normal;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&lt;/b&gt;&lt;!--[endif]--&gt;&lt;span dir=&quot;LTR&quot;&gt;&lt;b&gt;Saran&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; margin-left: 18pt; text-indent: 18pt;&quot;&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Saran merupakan masukan konstruktif
untuk perbaikan dan atau peningkatan kinerja kepada pihak-pihak terkait
berdasarkan simpulan. Saran sebaiknya operasional, jelas, dan konkrit
langkah-langkahnya.&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; margin-left: 18pt; text-indent: 18pt;&quot;&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;
&lt;b&gt;DAFTAR PUSTAKA&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;
&lt;b&gt;LAMPIRAN&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;</description><link>http://belajarbahasainggris-learnenglish.blogspot.com/2013/03/sistematika-penulisan-makalah.html</link><author>noreply@blogger.com (Anonymous)</author><thr:total>0</thr:total></item></channel></rss>