DirectoryComputersBlog Details for "Unique Technology Blog"

Unique Technology Blog

Unique Technology Blog
Blog About Amazing Computer Technology like home automation, Windows, Linux, Tips and tricks, photoshop etc
Articles: 1, 2, 3, 4, 5

Articles

Pyramid of Stars (Upside down) (Centered Aligned) C++ Program
2008-05-24 12:10:00
#include<iostream.h>#include<conio. h>main(){clrscr();int j=1;for (int i=5;i>=1;i--){for (int k=1;k<=j;k++){cout << " ";}for (int x=1;x<=i;x++){cout << " *";}cout <<endl;j=j+1;}getch();}
More About: Stars , Program , Pyramid , Upside
Pyramid Of Stars (Centered Aligned) C++ Program
2008-05-24 12:08:00
#include<iostream.h>#include<conio. h>main(){clrscr();int j=5;for (int i=1;i<=5;i++){for (int k=1;k<=j;k++){cout << " ";}for (int x=1;x<=i;x++){cout << " *";}cout <<endl;j=j-1;}getch();}
More About: Stars , Program , Pyramid
JAVA Applet Program for doing simple calculation Addition, Substraction, Mu
2008-04-30 08:52:00
/*It is a JAVA Applet program for doing simple calculation using GUI. It performs Addition, Substraction, Multiplication Here in this program Buttons, TextField, Labels, CheckboxGroup and Checkbox are used. User has to input values into and A and B textboxes and then choose the appropriate operation such as Add, Sub or mul then press calculate button to perform the choosen operation.*/import java.awt.*;import java.applet.*;import java.awt.event.*;public class lademo extends Applet implements ActionListener{Button b1;TextField t1,t2,t3;Label l1,l2,l3;String a;CheckboxGroup cbg;Checkbox c1,c2,c3;public void init(){setLayout(null);cbg=new CheckboxGroup();t1 = new TextField(10);b1 = new Button("Calculate");t2 = new TextField(10);t3 = new TextField(10);l1 = new Label("A");l2 = new Label("B");l3 = new Label("C");c1 = new Checkbox("Add",cbg,true);c2 = new Checkbox("Sub",cbg,false);c3 = new Checkbox("Mul",cbg,false);add(b1);add(t1) ;add(t2);add(t3);add(l1);add(l2);add(l3); add(c1);add(c2);ad...
More About: Java , Simple , Program
Keyboard shortcuts for Mozilla Firefox and Explorer
2008-03-31 13:16:00
Keyboard Shortcuts :Alt + Left Arrow key : To go to back pageAlt + Right Arrow key : To go to next pageAlt + Home key : To go to Home page.Ctrl + + : To increase font size.Ctrl + - : To decrease font sizeCtrl + 0 : To Default font sizeCtrl + F : To search any textCtrl + G or F3 : To search again last searchedCtrl + T : To create new tabCtrl + N : To create new windowCtrl + Tab key : To select next tabCtrl + W : To close tab.Ctrl + Shit + T : To restore recently closed tab.Ctrl + Shift + W : To close window.Ctrl + F4 : To close tab.Alt + F4 : To close windowCtrl + Shift T : Open recently closed tab.Ctrl + R : ReloadCtrl + U : To view page source fileCtrl + Tab key : To select next tabCtrl + Shift + Tab key : To select previous tabCtrl + 9 : To select last tabAlt + Enter key : When you typed URL in address bar and you want to open it in a new window then type URL and Press Alt + Enter key.F11 : To full screen.F5 : ReloadIf you want to Add and Remove buttons in Firefox ...
More About: Mozilla Firefox , Mozilla , Explorer
Protected member of the class in C++
2008-02-27 08:00:00
Protected member of the class can be accessed in class itself and its derived classbut cannot be accessed outside of the class. This example shows the same.This program will raise an error#include<iostream.h>#include&l t;conio.h>class demo1{protected :int a,b,c;public:void add(){a=10; // protected members a,b and c are accessed within the classb=20;c=a+b;cout << c <<endl;}};class demo2: public demo1{public:void sub(){a=30; // protected members of the class can be accessed in its derived class.b=20;c=a-b;cout << c <<endl;}};main(){clrscr();demo2 d;d.add();d.sub();d.a=50; // protected members can not be accessed outside of the class.d.b=60;d.c=d.a+d.b;cout << d.c <<endl;getch();}
More About: Class
Public Data members of the class in C++
2008-02-27 07:56:00
public member of the class can be accessed in class itself, its derived classand outside of the class. This example shows the same.#include<iostream.h>#include<c onio.h>class demo1{public:int a,b,c;void add(){a=10; // public members a,b and c are accessed within the classb=20;c=a+b;cout << c <<endl;}};class demo2: public demo1{public:void sub(){a=30; // public members of the class are accessed in its derived class.b=20;c=a-b;cout << c <<endl;}};main(){clrscr();demo2 d;d.add();d.sub();d.a=50; // public members of the class are accessed outside of the class.d.b=60;d.c=d.a+d.b;cout << d.c <<endl;getch();}
More About: Public , Data , Class , Members
Private data members of the class in C++
2008-02-27 06:29:00
private member of the class can be accessed in class itself but can not be accessed in its derived class and outside of the class. This example shows the same.This program will raise an error#include<iostream.h>#include<c onio.h>class demo1{private :int a,b,c;public:void add(){a=10; // private members a,b and c are accessed within the classb=20;c=a+b;cout << c <<endl;}};class demo2: public demo1{public:void sub(){a=30; // private members of the class can not be accessed in its derived class.b=20;c=a-b;cout << c <<endl;}};main(){clrscr();demo2 d;d.add();d.sub();d.a=50; // private members can not be accessed outside of the class.d.b=60;d.c=d.a+d.b;cout << d.c <<endl;getch();}
More About: Data , Private , Class , Members
Method Overriding in JAVA :
2008-02-23 14:12:00
There are methods with same name and definition in subclass and its super class. In this example there is a function called add() in both of the classes super and sub. When this function is called by object of the subclass. add() function of the subclass overrides, the function in super class. add() function of the subclass will be called and add() function of the super class will be hidden.In this example there is a class called demo1, it has a function called add(). subclass of demo1 is demo2, it also has a function called add() with same definition. When add() function is called by the object of the subclass demo2. add() function of the subclass overrides add() function of demo1 class. This is known as method overriding.// method overriding demo class demo1 // super class{void add(){int a,b,c;a=10;b=20;c=a+b;System.out.println( "output from demo1");System.out.println(c);}}class demo2 extends demo1 // sub class{void add(){int a,b,c;a=10;b=20;c=a*b;System.out.prin...
More About: Java , Method
How to Protect a document in Microsoft Word:
2008-02-19 10:22:00
If you have an important document in Microsoft word and want to protect it from others, Microsoft Word provides with you a special facility called protect a document. By using this facility you can make a document password protected. Follow the given steps and protect your important document with others. After protecting a document Microsoft Word keep track of changes in a document and then you can track the changes and then accept or reject the changes is your desire. Step 1: Click Tools menu and then select Protect Document , Protect Document window will be appeared on the screen.There are three options for which do you want to protect the document, Here I am describing first two Tracked changes and Comments.1. Tracked Changes: If you protect the document with this option anybody will change or modify this document without unprotect it, all these changes will be recorded by Microsoft Word. If somebody tries to delete the text from such a document, it wouldn’t delete and show the ...
Recording and Playing back a Macro
2008-02-08 13:07:00
When Macro recording will be started, Stop Recording toolbar will be displayed. On this toolbar there are two buttons one is for Stop Recording and Second one is for Pause recording. Now you may start recording macro. For this you do the work which do you want to record. For doing formatting you may click Bold, Italic, Center, Underline or whatever you want to record. If you want to finish recording click Stop Recording button and you are done. You have successfully created a macro.Note : If you don't get Stop Recording Toolbar then you may access it by clicking View - Toolbar - Stop Recording.Photo Stop recording buttonPlaying back a Macro : Now it is time to playback the macro which we have recorded. To do so select the matter on which do you want to apply formatting then Click Tools Menu - Macro - Macros.Macros dialogue box will be appeared on the screen. You may also access this dialogue box by press ALT + F8 key.Photo macros dialogue box.Now choose your macro from macro name l...
More About: Back
Recording and Playing back a Macro
2008-02-08 13:07:00
When Macro recording will be started, Stop Recording toolbar will be displayed. On this toolbar there are two buttons one is for Stop Recording and Second one is for Pause recording. Now you may start recording macro. For this you do the work which do you want to record. For doing formatting you may click Bold, Italic, Center, Underline or whatever you want to record. If you want to finish recording click Stop Recording button and you are done. You have successfully created a macro.Note : If you don't get Stop Recording Toolbar then you may access it by clicking View - Toolbar - Stop Recording.Playing back a Macro : Now it is time to playback the macro which we have recorded. To do so select the matter on which do you want to apply formatting then Click Tools Menu - Macro - Macros.Macros dialogue box will be appeared on the screen. You may also access this dialogue box by press ALT + F8 key.Now choose your macro from macro name list box which do you want to run and then press Run c...
More About: Back
Spice S585 Model Mobile Downloading MP3:
2008-02-08 06:51:00
Today I purchased Spice S585 model with 1 GB memory card. I made a folder called "my music" in it and download some mp3 songs in it. When I put this memory card in mobile phone and started mp3 player, it shows there is no mp3 file. Then I tried a lot with different folder such as MP3, SONGS, AUDIO but failed. At last I tried with "My music" folder and download some mp3 file in it. This time I created same name as previous "My music" but I put capital M of my word. It works nicely. So whenever you face such problem you may try this trick.
More About: Mobile , Model , Loading
How to Record and Playback Macros in MSWord (Tutorial) :
2008-02-07 13:39:00
What is Macro :Macro makes our day-to-day life eaiser and faster. Macro is a set of commands or instructions that is saved with a name and can be played back when needed by a single command.Why Macro is needed :I will show you in detail. Just suppose you have a task and it requires many mouse clicks to accomplish, By Macro recording you can save all those clicks or commands and play back by using single command. It can also be used again and again when required it saves your lots of mouse clicks and your precious time too.Let's take another example, Just suppose you have written ten paragraphs with heading in MSWord and want to make formatting for that. Now what will you do. You will do formatting for all paragraphs and headings. This is the repititve task and for this you should create a macro, once recorded can be palyed back any numbers of time and your formatting of paragraphs will be done automatically by playing back the macro for each paragraph and headings.In other case, s...
More About: Tutorial , Record , Macros
Photoshop Tutorial
2008-01-28 12:25:00
Picture package in Photoshop How to resize a photo in PhotoshopHow to adjust brightness and contrast in PhotoshopChanging canvas size in PhotoshopSharpen Filter in PhotoshopCreating Background Using Fill in PhotoshopHow to rotate canvas in PhotoshopHow to create picture package in PhotoshopActions in Photoshop
More About: Tutorial
Photoshop Tutorial
2008-01-28 12:25:00
Picture package in Photoshop How to resize a photo in Photoshop How to adjust brightness and contrast in Photoshop Changing canvas size in Photoshop Sharpen Filter in Photoshop Creating Background Using Fill in Photoshop How to rotate canvas in Photoshop How to create picture package in Photoshop Actions in Photoshop
More About: Tutorial
PC Repairing Tips
2008-01-28 11:43:00
Emergency eject of CD/DVD ROM drive
More About: Tips
PC Repairing Tips
2008-01-28 11:43:00
Emergency eject of CD/DVD ROM drive
More About: Tips
Mobile Repairing Tips and Tricks
2008-01-28 11:41:00
How to format Nokia 6600Mobile repairing through codes
More About: Tips , Tricks , Tips and Tricks
Mobile Repairing Tips and Tricks
2008-01-28 11:41:00
How to format Nokia 6600 Mobile repairing through codes
More About: Tips , Tricks , Tips and Tricks
Microsoft Word Tips and Tricks
2008-01-28 11:40:00
Type anywhere in MSWord How to create bookmarks in MSWord
More About: Microsoft , Tips , Tricks , Tips and Tricks
Microsoft Word Tips and Tricks
2008-01-28 11:40:00
Type anywhere in MSWord How to create bookmarks in MSWord
More About: Microsoft , Tips , Tricks , Tips and Tricks
Linux
2008-01-28 11:38:00
Linux shell commands tutorial Linux shell commands tutorial Linux shell commands tutorial
More About: Linux
Linux
2008-01-28 11:38:00
Linux shell commands tutorialLinux shell commands tutorialLinux shell commands tutorial
More About: Linux
Windows Vista Tips and Tricks
2008-01-28 11:34:00
Working with Zipped Folder in Windows Vista Performance Tips in Windows Vista Information about Windows Vista Windows Vista Shortcuts How to set Classic Start Menu in Windows Vista Configuring Windows Vista to take Unicode Hindi How to improve performance of Windows Vista
More About: Tricks
Windows Vista Tips and Tricks
2008-01-28 11:34:00
Working with Zipped Folder in Windows Vista Performance Tips in Windows Vista Information about Windows VistaWindows Vista ShortcutsHow to set Classic Start Menu in Windows VistaConfiguring Windows Vista to take Unicode HindiHow to improve performance of Windows Vista
More About: Tricks
Windows XP Tips and Tricks
2008-01-28 11:29:00
Take backup of your Windows DriversHow to rename multiple files in Windows XPHow to create screen saver of photographs in Windows XPClearing document list in Windows XP
More About: Tips , Tricks , Tips and Tricks , Windows Xp
Windows XP Tips and Tricks
2008-01-28 11:29:00
Take backup of your Windows Drivers How to rename multiple files in Windows XP How to create screen saver of photographs in Windows XP Clearing document list in Windows XP
More About: Tips , Tricks , Tips and Tricks , Windows Xp
C ++ Programs
2008-01-28 11:18:00
If Condition in C++Constructor in C++Destructor in C++Default argument function in C++Using exit() function in C++File Handling in C++C++ function overloadingInheritance in C++C++ program to input and check given passwordC++ program to create concentric circlesC++ program to demonstrate StructureC++ program to display season according to inputC++ program to draw and move circle on the screenC++ program to generate series 1 11 111.....C++ series 1 11 111 1111......C++ generating series 1 10 100 1000C++ Program to control an object through keyboardUsing Arrow Keys in C++ Programs C++ Header FilesC++ Program to Demonstrate argc and argv
C ++ Programs
2008-01-28 11:18:00
If Condition in C++ Constructor in C++ Destructor in C++ Default argument function in C++ Using exit() function in C++ File Handling in C++ C++ function overloading Inheritance in C++ C++ program to input and check given password C++ program to create concentric circles C++ program to demonstrate Structure C++ program to display season according to input C++ program to draw and move
More About: Programs
C Programs
2008-01-28 11:14:00
C program to generate numbersC program to generate even numbersC program to generate odd numbersC program to generate table of any given numberC program to generate pyramid of starsC program to generate upside down pyramid of starsC program to add two numbers
More About: Programs
More articles from this author:
1, 2, 3, 4, 5
40883 blogs in the directory.
Statistics resets every week.


Contact | About
© Blog Toplist 2008 - SEO by FeWorks
eXTReMe Tracker