Search This Blog

Sunday, December 9, 2012

DIFFERENT WAYS TO OPEN REGISTRY EDITOR


To add, delete. change any registry in windows,we need to invoke registry editor

The utility for registry editor is  regedit
 
 
One can locate the regedit in C:\Windows 

To invoke this utility :


  1. Go to the specified folder and double click on the application to run it.
  2. Open Run window (by using window key + R), type regedit and press Enter.
  3. Open Command prompt and type regedit and press Enter.
  4. Open Task Manager and in Application tab, click on New Task button to create a new task. In the newly opened window type regedit  and press Enter.
  5.   But if all above methods are not working because of different reasons like as in the case of accidentally changed default program to open .exe files,then try:
  •  Open Task Manager and in application tab, click on File menu and select New task while holding ctrl key, it will invoke a command prompt.

  •  Now type regedit here and press Enter to get your registry editor run.

Friday, November 23, 2012

NUMBERS ARE DISPLAYED WHILE TYPING ALPHABETS ON LAPTOP KEYBOARD


This is a very common problem having a very easy solution.
The problem arises because of NUMLOCK feature.
TO solve it.

  • Try Function key + NumLock


  • Or Try Function + Shift + NumLock

NOTE:: In some keyboards,one may find NumLock at different position.


Tuesday, April 17, 2012

Install aglet on Windows 7

AGLET INSTALLATION ON WINDOWS 7

Aglet is an IBM technology on mobile Agents.
To install the aglet 2.0.1  on ur pc running windows 7,the steps are as follows: 
Step-1: Download aglets-2.0.1 from the website www.sourceforge.org

STEP-2: Unzip it in C drive as C:\aglets.

 STEP-3: Now set the environment variables of your computer.

  1. Go to properties of My Computer
  2. Now click to System Properties
  3. Double click on Environment Variables
  4.  Click Advanced Tab.
  5.  Click on New to enter new values of variables.
Assuming the intalled version of jdk is 1.7.0
The entries must be as follows :
Variable name: JAVA_HOME
For 32 bit OS, variable value: C:\Progra~1\Java\jdk1.7.0
For 64 bit OS, variable value: C:\Progra~2\Java\jdk1.7.0

Press Ok to save

Now set another new variable as

Variable name:  AGLET_HOME
Variable value:  C:\aglets

STEP-4: Now start Command prompt and change working directory to aglet's bin directory.
Run Command:  ant install-home


STEP-5: Now Run Command: ant
 This command will give message as BUILD SUCCESSFUL



  To run the Talhiti server Command is :
                         agletsd -f ..\cnf\aglets.props 

 
NOTE:
To run server at specific port use command: using port 9000

                                                  agletsd -f ..\cnf\aglets.props -port 9000

Monday, January 9, 2012

Macros Programming in Excel Sheet 2010


Macros Programming in Excel Sheet 2010
1)    Start Excel Sheet 2010
2)    Click on View tab




3)    Now click on dropdown Macros and select Record Macros in dropdown menu



4)    Press ok in the new window opened



5)    Now again pull down dropdown menu of Macros and click on Stop Recording
 
6)    Now select View Macros in dropdown menu of Macros.

7)    You will get a window showing all the macros like this

8)    Select your Macro as in our case its Macro1 and now click on edit.
9)    You will get a new window as shown in figure below
This window is the visual basic programming interface
This Interface show different components as project explorer, property window, code window.
Out of all this most important for our sake is code window highlighted in red color.


10)                      It shows a macro “Macro1” underlined in red color. It’s the macro that we have recorded in step 4.
11)                      Now delete everything except
Sub Macro1
End Sub

12)                      Now put your code in between these two lines

13)                      Press Alt+F11 to go back to the excel sheet
(You can always switch between programming interface and excel sheet with Alt+F11)
14)                      Now again Select View Macros from the Macros drop down menu and just click on run after selecting your Macro from the View Macro window to see the effect of your work.