Search This Blog

Tuesday, August 31, 2010

internet explorer has stopped working

internet explorer has stopped working
I have personally face above error on windows vista service pack 2 system IE8 . When I got this pop-up window error "internet explorer has stopped working vista" then finally I got the solution. Please do step by step when you face this problem.

go to Tool----> Internet Option then

First Solution :

go to Advance Tab

click on reset.

Explorer_error_1

close browser . Then re-open it.

Second Solution:

Repeat first option then go to  "Programs" Tab

Explorer_error_2Click on Manage Add-ons

click ok

close Internet explore and reopen it.

Monday, August 30, 2010

Learn Web Page Start with HTML -1st

HTML - HyperText Markup Language

HTML is not a programming language , it is a Hyper Text Markup language. It is normal text file but file extension must be htm or html only.HTML wirtten with pre-define "tags" surrounding by angle brackets.

For simple test , copy below text and save with a .html or .htm and open it.

<html>
<body>

<h1>My First Heading</h1>

<p>My first paragraph.</p>

</body>
</html>
on above example first tag stand for start of html documents and stand for end of html documents.

Saturday, August 28, 2010

How to Change IP address in windows XP

How to Change IP address in windows XP

To change your system IP (Internet Protocol address ) in windows xp system

1. See left side of task bar (where you see time) .

2. There is a icon of local area connection (two nos of small monitor).

3. Right click on that icon and click on open network connection.

Change_IP1

4.  One folder will be open.

5. right Click on Local Area Connection and click on Properties.

Change_IP2

6. In a list item select TCP/IP and click on properties.

Change_IP3

7. Fill your IP address and clioc on OK , OK and close .

Change_IP4

Your IP has been now changed.

How to Enable Hibernate in windows XP

How Enable Hibernate in windows XP

Hibernate is a useful to fast shutdown your computer.

In normal shutdown process windows close all open program and temporary file . In Hibernate windows save all running process and temporary file on to the unused hard-disk space. When you next time on your pc or laptop windows  is read all saved information from disk . Now System is ready to use like before shutdown / hibernating.

To anabel Hibernate -

Go To

control Panel > Power Options > Click on Hibernate Tab

Check mark on Enable Hibernation.

Note : To do any hardware or software change do only normal shutdown process.

Make a effective project in windows vista

Make a effective project in windows vista.

windows vista and windows 7 come with a snipping tool it is very useful tool to capture your desktop screen with selection . This tool instantly capture the selected area and now you can save as picture file like jpg, bmp etc.

There is a tip to do in windows xp to capture a screen / capture desktop and make a picture file.

1.First you press "Print Screen" key on keyboard.                                                          2. Open paint brush

Where find Paint Brus in windows XP

3. Right Click on white page then click on paste

4. Now you can edit your image as per your requirement and save it.

I Welcome your all comments.

Friday, August 27, 2010

Windows Media Player 11 Installation without genuine validation check

Windows Media Player 11 Installation without genuine validation check.

This is a very nice trick to install WMP11 on windows xp system.

do below instruction step 1 by 1 to install wmp11 without genuine validation check or crack of windows .

1. Install winrar on any unzip utility on your system.

2. Download WMP11 from Microsoft.com

3. Extract dowloaded file in a folder.

4. double click on  wmp11.exe  to run & restart windows.

5. run umdf.exe and wmfdist11.exe one by one then again restart windows.

6.  extract wmp11.exe in a other folder.

7 . in this folder you gate a update folder.

8. go to update folder.

9. run update.exe

now your windows xp computer is ready with wmp11.

Thanks.

Thursday, August 26, 2010

how to remove folder.exe, autorun.inf virus

how to remove folder.exe , autorun.if virus

on my best knowledge with experience you can install a small software called "Autorun Eater" and it is freeware from
http://oldmcdonald.wordpress.com/

for folder.exe you go to
http://www.symantec.com/index.jsp

click on download
click on freeware

download removal tool which is you required by you.

Next line update on 14/10/2010

Download a small removal utility below link

http://www.ziddu.com/download/1084021/NewFolder_RegSvrRemovalTool.zip.html

Wednesday, August 25, 2010

Ask to solve your problem free

Ask to solve your problem  free

When you ask :

1. Any PC problem .

2. Any Laptop problem.

3. OS  i.s any Windows problem

4. Hardware issue or suggestion

5. free anti-virus  .

I assure that , I am give you a mail to you on  best of my knowledge and this is free to all. But on any implementation on my suggestion on your own risk. I  am not responsible and liable for  loss of data or Monterrey loss to you.

leave comment or send mail to

tech@qoney.com

Monday, August 16, 2010

Visual Basic Text Box tips

Some tips you like use in vb text box

(a) In text box all in Capital letter use below

Private Sub Text1_KeyPress(KeyAscii As Integer)
KeyAscii = Asc(UCase(Chr(KeyAscii)))
End Sub

Details Description:
First keyascii code convert into character , it is converted into capital letter agin then it is converted into keyascii code.

(b) allow only number in text box

Private Sub Text1_KeyPress(KeyAscii As Integer)
If IsNumeric(Chr(KeyAscii))=False then keyascii=0
End Sub

(c) Not allow number in text box like name field
Private Sub Text1_KeyPress(KeyAscii As Integer)
If IsNumeric(Chr(KeyAscii))=True then keyascii=0
End Sub

(d) Make a currency text box you can use like this

Private Sub Text1_KeyPress(KeyAscii As Integer)
If Len(Text1.Text) = 0 Then Exit Sub
If InStr(1, Text1.Text, ".") Then KeyAscii = 0
End Sub