Monday, May 23, 2011

My Alarm with Auto Shutdown

My Alarm Application is an useful application that will alert you for important events . This application will alert you by playing a sound and it will continue play that sound until you want .
another great feature of this application is it contain Auto shutdown application .it allow you to shut down your pc by given time .

Developer :           Adam Rifau
License / Price:    Free
 Size / OS:            3.51 MB/Windows XP/Vista/Windows 7









Requirements:

· 90 MHz Pentium or equivalent
· 16 MB application RAM
· 4 MB free hard disk space



features :-
  • Display Your Text on Windows Notify Icon
  • Auto Shutdown your PC
  • You Can Stop the Process  if it's not Necessary
  • Simple and Easy to use
  • Compatible with Windows 7 


* Download Link  Click to Download   .
*How To Download : wait for 25 second (if your Free User) When time's up Click to Regular Download ..
* Your download will Begain less then a 3 Second .
* If Server is busy or temporarily unavailable. Please try again later.

Monday, April 18, 2011

Internet speed really slow!!!

What should i do if my windows 7 internet speed is way too Slow ?
ANSWERS :
if your using wireless connection
1. Go to Control Panel > Power Options .
2. Click Change plan settings next to your current power plan.
3. Click Change advanced power settings .
4. Double-click Wireless Adapter Settings .
5. Double-click Power Saving Mode .
6. Change the setting to Maximum Performance .

for others :-

1. Click Start > All Programs > Accessories .
2. Click Command Prompt with the right mouse button.
3. Click Run as Administrator .
4. If there's a User Account Control prompt, click Yes .
5. Type netsh interface tcp set global autotuning=disabled in the Administrator Command Prompt window, then press Enter .
6. Go to control Penal > Network Sharing Center> Change Adapter Setting Disable all wireless Connection. 
7. while your there .. Right Click on Local area connection > Properties >uncheck IP v 6 .>
Restart your PC


even you can try this :-

  1. Click Start > All Programs > Accessories .> open run
  2. Type  Prefetch > Enter > Delete All .
  3.  Delete all cookies from your web browser .Tools > Clear Recent History > check Cookies > Delete Everything .
  4. Restart your Browser .



Saturday, April 16, 2011

My Notepad

Are you bored using old Notepad .? introducing new Generation Notepad easy to use with new features .

  •  Make your PC  to Speak  .
  •  Automatic word Counter.
  • Letter Counter.
  • Change the fonts.
  • Change the Background color.
  • Change upper case to lower case 
  • Let your "MyNotepad" speak with you 
  •  and many more...
Download now for Free:
 Download from Megaupload :Click here to download 
Download from File Sonic Click here to download
To Download from Mega upload choose Regular Download ,download will Begin after 45 seconds  .
To Download from File sonic choose Slow Download (as free user) download will begin after 30 seconds.




Wednesday, March 30, 2011

Best Softwares and Websites to make Free phone calls

1 - Free call
website is the one of the best website to make free calls you can make free trial calls ..you can get Max 300 minutes per week. click here to go to this website freecall.

2- evaphone
is another best website to make free calls  all you have to type and call..if you register on this website you can get 50 free credits Daily this is the one of the best option if you don't want to install any application on your PC .click here to this website evaphone click here 
3- icall 
iCall is another tool you can use to make free internet phone calls. With iCall, you can make free calls from PC to phone using their free software.click here to get i call 
4- Tuitalk
Tuitalk lets allows you to make free phone calls to around 40 countries. Each country in which you make your free phone call is limited to a certain number of minutes per call and per day. For most countries, your free Internet phone call can be six minutes in length.get this App
 5- Jajah
Jajah is a free trial Phone to Phone callback service, allowing you to make calls to anywhere within the continental United States. There is no download required. In order to place a call, you just enter the phone number you would like to place the call from and your destination phone number. Jajah then places a call directly to you automatically, when you pick up the phone, the other leg of the call is initiated. We have found that you need to register with the free service before you can place free calls. You are able to make up to $3 worth of phone calls before Jajah requires you to set up a prepaid account to make further calls. Go to Jajah

Thursday, December 30, 2010

Error using fonts in the VisualStudio.NET - "Only TrueType fonts are supported and this is not a TrueType font"

Solution 1:
After selecting the font in the properties window of the VS.NET IDE, the error message "Only True-type fonts are supported and this is not a True Type font" will be reported. Click OK, and then close VS.NET. Re-open VS.NET, followed by the project; select the font in the properties window, the error will no longer be generated.
Solution 2:
In the Visual Studio.NET application, reference and apply the fonts through the code window of the application. The following example assigns the evaluation version of IDAutomation's Code 39 Font with the human readable text displayed on a label in a form during the Form_Load event.

C#:
private void Form1_Load(object sender, System.EventArgs e)
{
     label1.Font = new Font("IDAutomationSHC39S", 12, FontStyle.Regular);
}