Optimize your PC/Notebook speed (Part-1)

January 12, 2010

Optimize  your PC speed (Part-1)

(These steps can be easily used in –Windows- 98 /2000/2003/Windows NT/ XP -All/Vista!)

 

- You are using your windows based PC/Notebook at home or office.
- Day by day your pc is going slow
- If you have a programming work /Web Designing work or Data Entry work then sure that – your PC is going down day by day.
Here I am giving you some very easy steps to Speed-up your PC using very simple steps.
Steps (Most of Windows Vista and XP users) – Disk Cleanup
1. Go to My Computer >  Right Click on One Drive [C Drive:]
2. Right Click on it > Click on Properties >Click on Disk Cleanup
3. Check the necessary options like –
- Downloaded Program files
- Temporary internet files
- Hibernation file cleaner
- Office setup files
- Recycle bin
- Temporary files
- Thumbnails
- Per user archived windows error report
- Per user queued windows error report

You will see all options there. You can choose –what you want for your computer.

Most of used options you can check these

 

- Temporary Internet files
- Recycle bin
- Temporary files
- Thumbnails
- Per user archived windows error report
- Per user queued  windows error report
Or

You can also go directly by:
Start> All programs>Accessories>System tools> Disk cleanup.
Its will cleanup all Unnecessary files of your PC.
Optimize  your PC speed (Part-2)

(Do all steps carefully)

 

Simple –Just go to
Step -1) Start> RUN>write down  MSCONFIG
Step-2) Click on Startup
Step-3) you will find the list of running programs at windows Startup.
Step-4) Uncheck the unnecessary program which you do not need to startup at the time of windows startup.
Important programs used to startup window
- Antivirus services using in computer.
- Windows Sound  Service  detected by Sound software driver
- Any other program which you like to use at startup of windows
These steps will optimize your pc speed from 30%-60% (Depends upon your PC software and operating system).
Enjoy Internet Technology!!!

 

Gtalk with Invisible Mode !

January 9, 2010

Are u able to be  invisible in Gtalk …..- NO !!!
You can not be, because there is no option.
But you can, Use  Gtalk LabEdition - YES !!!!

YOU CAN BE GO TO INVISIBLE MODE .
Download              - Gtalk labsedition

Download – Install  & Enjoy-

Google Chrome in New Face !

January 8, 2010

Google Chrome – Launched -Chrome extensions.
Chrome extensions- use extra tools in chrome like IE ,Mozilla and other browsers.
Google Chrome New Face

Best & Unique features in Chrome -

1) Page Rank -with ALEXA Status -Backlinks,whois info etc
2) Bookmark – Google ,PC and other with restore option
3) Dictionary – Click on word with CTRL key & find meaning
4) Translate Any Language
5) Online htmltopdf convertor
6) Open & Save document in Google Docs in All formats

Chrome have unique features.
Check this ,Use this .You will find the fast browsing easily.

Its have everything …..

ALL in One Social Networking ….!!

September 1, 2009

Amazing from Power.com, An Independent web company provides value added web services for social networking sites.

Features-
- Multi Social networking
- New Social networking through Power.com
- Multi Status Updates for all social networking website.
- Messenger services
- Power applications like orkut application.
….Many other new features
Check it.

Using ASP.NET To Send Email at your Gmail account

June 12, 2009

ASP.NET makes it amazingly simple for you to send e-mails from a Web application or even a Web form.
First of all Create the following things -
1) A .aspx page using 2 Labels and 2 textbox and one Button.
We can use the following code :

——————————————–
using System;
using System.Data;
using System.Data.SqlClient;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Security.Cryptography;
using System.Xml;
using System.Text;
using System.Net.Mail;

public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{

}

protected void btnSend_Click1(object sender, EventArgs e)
{

bool returnedValue = SendingMail(txtfrom.Text, txttext.Text);

if (returnedValue == true)
{
StringBuilder sb = new StringBuilder();
sb.Append(“”);
sb.Append(“alert(‘your mail has been send, we will contact you soon. Thank you.’);”);
sb.Append(“”);

Response.Write(sb.ToString());
}
else
{
txtfrom.Text = “”;
txtfrom.Focus();
}
}

private bool SendingMail(string from, string message)
{
try
{
MailMessage msg = new MailMessage(from, “checkmymail123@gmail.com”);
msg.Subject = “Contact Us”;
msg.Body = “Recieved From: ” + from + ” Message: ” + message;
msg.IsBodyHtml = true;
msg.BodyEncoding = Encoding.UTF32;
msg.Priority = MailPriority.Normal;
SmtpClient client;
client = new SmtpClient();
client.Host = “smtp.gmail.com”;
client.Port = 587;
client.EnableSsl = true;
client.Credentials = new System.Net.NetworkCredential(“checkmymail@gmail.com”, “password”);
client.Send(msg);

return true;
}
catch
{
return false;
}
}
}
————————————————–

This code is very helpful to use the gmail at ur Contact Us page.  Means you can create the Contact US page easily.

with Regards

Dinesh Verma

+919718461838

+919896328595

Vermadenish@gmail.com

My New Blog on WordPress

May 9, 2009

Welcome to all of you in my wordpress blog

With Regards
Dinesh Verma

Hello Everyone !

May 8, 2009

Welcome to WordPress.com. This is your first post. Edit or delete it and start blogging!