Monday, February 18, 2013

Changing the Outlook Notes into Text Files


Many ways to keep little notes (small does not mean not important, instead it can be very important), such as by using his Notes MS (Microsoft) Outlook.

Which will be discussed in this post is how to convert or modify the Notes or records into txt file.

Immediately, :)

Create a new folder to save the text file for example on drive C: \ with the name of the folder notes
Run Ms Outlook.


After the outlook window appears, press the Alt + F11, it will display the Microsoft Visual Basic Project


Click on the Insert menu, and then click Module



Module window will appear, copy and paste the code below:
Sub NotesToText()     Set myNote = Application.GetNamespace("MAPI").PickFolder     For cnt = 1 To myNote.Items.Count         noteName = Replace(Replace(myNote.Items(cnt).Subject,
        myNote.Items(cnt).SaveAs "c:\notes\" & noteName & ".txt", OlSaveAsType.olTXT     Next End Sub
Adjust the red folder names according to the location and name of the folder you created in the first step

click on image to enlarge.


Select the Run menu, then click on the Run Sub / Useform

Select the Notes folder, click OK

Close / exit of Microsoft Visual Basic, and Microsoft Outlook.
There will be a notification whether to save a Visual Basic project, gyre NO (not saved).

Now please check the folder that you created earlier, already contains text files.


Hopefully useful.





Monday, December 17, 2012

Display Resolution Troubleshooting Windows 8 on Netbook

A very interesting and different from previous versions of Windows in Windows 8 is the Start Screen, the box shape and length of the colorful terms.


But the Start Screen is not working to run existing applications on Windows 8 when his computer screen resolution below 1024 x 768 pixels.
Netbooks generally have a resolution of 1024 x 600 (below the minimum requirements of Windows 8), and when we try to raise already can not because it is the maximum.


In order for Windows 8 netbook display resolution can be increased, there is a trick, follow the steps below.

Go to the Registry Editor (windows logo + R, then type Regedit)
Search dword: Display1_DownScalingSupported (please copy and paste), use Ctrl + F to search, if you have found it, double click and change the value from 0 to 1, click OK, continue the search by pressing F3, if discovered again, change its value from 0 to 1.


Then Restart Netbook
After the flame again, right click on the screen, and select Screen Resolution, then (if there are no other problems) could have increased the resolution of 1024 x 600 to 1024 x 768. and now all apps are able to run Windows 8.


Tuesday, September 18, 2012

How to Reset Password Administrator Macbook


Good passwords for all things should be made ​​as complicated as possible, the combination of letters, small letters, numbers and special characters.
But the impact of the complexity of the password above is that we are hard to remember and easy to forget, so in order not to forget, write it down and keep it in a safe.

If you are the owner of the computer, of course, obliged to know the password for the Administrator account (or have a member account administrator), because all affairs changes to software (install and uninstall), change the configuration, manage users, of course, have to use the administrator or a user / account have administrator privileges.

That will be discussed this time is how to reset the administrator password for the Apple Macbook.

Follow these steps to reset the administrator password Apple Macbook
• Shutdown / power off Macbook

• Restart the Macbook and immediately press the Command + S on the keyboard, hold and wait until the display appears root #


• Then type:

sbin / mount-uw / hit enter
rm-rf / var / db / .AppleSetupDone press Enter
reboot press Enter

• Macbook will restart and then you will start the initialization wizard for like an Operating System when it first starts up, one of which should be to fill in your username (administrator) new and new password.




Tuesday, August 30, 2011

Making Diary or Notes Using Notepad

With Notepad we can make a simple Diary, because Notepad can display the date and time automatically when the file (notepad) is opened. So we can use it as a log, notes, or whatever his name is for sure when we open the file will be listed date and time.

How to make it easier, just plain Notepad file, the difference in the first row we write. LOG (LOG wear points followed by writing uppercase). Then the saved file with a name in accordance with our wishes.
Close / close the file, then open it again. When it opened here will appear in accordance with the clock and date when the file was opened.
Then at other times when we re-open this file it will show the current time anyway.

Hopefully useful.