How to Increase the Display Results Count in Google Search Per Page

By default Google search would display 10 search results and we can navigate to the next set of search results through the page navigation in bottom of the screen.googlesreachnav

But suppose if we are tried to go for the next set of results by the page navigator at the bottom,there is a option to change the number of search results to be displayed per page in Google search.Here are the simple steps to change the no of results to be displayed :-

  • Go to Google.com
  • Select search settings at the top right corner of the screen.It will go to the preference page.
SearchSetting

Search Setting If Not Logged In Gmail

Search Setting if logged in

Search Setting If Logged In Gmail

  • Locate the Number of Results block by scrolling down
  • Select the display no of results to be displayed from the drop down which has five set of numbers 10,20,30,50 and 100

Search Results

  • Click Save Preferences button at the bottom of the screen.

After saving it will automatically returns to Google search with last searched value.Now the search results would display with the number of display results we have set.

Popularity: 2% [?]

How to Hide Birthday Information in Facebook Account

If your concern about your privacy and want to hide your birthday in Facebook,here are the steps to do:-

Step 1 : Login to your Facebook account

Step 2 : Go to Edit My Profile page

Step 3 : In the Basic Information Page ,near the Birthday option there would  be a drop down with three options.

facebook-birthday

Step 4 : From these options select “Don’t show my birthday in my profile” (If you don’t want anyone to know your age alone,you can select “Show only month and day in my profile”.This will hide your birth year.)

Step 5 : Click the Save Changes button at the bottom of the page.

That’s it,now your birthday will not be visible to anyone.

Popularity: 1% [?]

Accessing Multiple Gmail accounts from the same browser window

I was wondering, it would be great if I am able to login into two of my gmail accounts at the same time from the same browser window. Historically, Google doesn’t allow you to login to multiple google accounts; if you try to login to another user account then Google will prompt you to log off the currently logged in account.

Now its made possible in gmail by the new feature called ‘Multiple Sign-in‘. To enable this feature you need to login into Google account.

Multiple Sign-in Feature

Multiple Sign-in Feature

Click the ‘Edit‘ link in the Muliple Sign-in, you will be forwarded to the page where you should click on ‘On‘ radio button and couple of ‘checkboxes’ and click ‘Save‘. Now, your account is enabled with multiple Sign-on feature.

Sign in to another account

To add another account, click on the Accounts menu at top right side of the Browser menu and select ‘Sign in to another account‘.After you login into another gmail account the Accounts menu will show you both the accounts.

To switch between accounts click the accounts menu and click the appropriate Google account.

Swith accounts

Switch between accounts

Note:

  • As of now this feature is available only for Desktop browsers and not for Mobile browsers.
  • You can use this for the following Google products only :Code, Calendar, Gmail, Reader, Sites, Voice.

Popularity: 2% [?]

In Task Manager Title Bar,Menu Bar and Tabs are Missing,Is it a virus attack? – Windows XP

In Windows XP,if you find the task manager with out title bar,program tabs or menu bar,don’t be panic,the Task Manager is running in Tiny Footprint mode. Its not the virus which made your task manager like this.You may have double-clicked the empty space in the border around the tabs thus Task Manager switches to this mode.
Task Manager Without Tabs

This problem can be handled easily.Simply just double-click on the border of the window showing to bring back the task manager to normal mode.

Task Manager With Tabs

Ref Source :Microsoft Support

Popularity: 2% [?]

How to deploy WAR/JAR File in JBOSS

Step to deploy WAR/JAR File in JBOSS

  • Paste your WAR/JAR File into jboss\server\default\deploy Folder
  • Go to jboss\bin and run the file run.bat.
  • After successful run.go to jboss\server\default folder and see three new folder log,tmp,work.
  • log – Log File is created here
  • tmp – All the Deployed WAR and JAR File extacted here.
  • work – all the code in a servlet form maintain here.

Popularity: 3% [?]

Difference between String and String Buffer

String
=====
String are immutable object.Its value cannot be changed(constant).String object are readonly.If you create one instance of string and change the value of string then it create new instance.

String Buffer
=========
String Buffer is mutable.Its Value can be Changed.If you create one instance and append the text without creating a new instance

Example:
======
String
=====
String str=”welcome”;
str + = “to fordevs”;

String Buffer
=========
StringBuffer strbuff=new StringBuffer(“welcome”);
strbuff.append(“to fordevs”);

Both code give same output but Second approach much faster than first one.

Popularity: 3% [?]

How to save photos from friends album in Orkut – Firefox,Chorme,IE?

In Orkut we could not save the photos by just right clicking them.But there are easy ways to save the photos.One of the easiest hack trick is to drag and drop the image to a new tab or a new window of the browser and then save them to the system.

That’s it…

Popularity: 2% [?]

How to restart print spooler if stopped in XP?

When i tried to install a PDF printer in my xp machine,i was not able to complete the installation.FewPDF printer installation got aborted and some throw a error message “print spooler stopped restart it”.Then i checked and found the print spooler service was in disabled state.I enabled and started the service now every thing worked fine.

Here are the steps to turn on the Print Spooler in Windows XP:

Step 1.Click Start Menu -> Run
Step 2.Type services.msc and click OK
Step 3.Locate Print Spooler in the list of services
Step 4.Right Click -> Properties change the Startup Type to Automatic.

print spooler disabled
If it is running and still you get the error stop the service and restart it.

Popularity: 3% [?]

Animation in Photoshop

Here we can see how to create an animated GIF file, using Photoshop CS4.

1. Create a new Photoshop document.

2. Create a new Layers using the shortcut key Shift+Ctrl+N Or using the menu as shown below.

3. Use the text tool write “ForDevs” text on stage. Just like below or draw a symbol as per custom requirement.

4. Similarly write some other text. Now the Layer Panel contains two text layer and one background layer.

5. Change the Photoshop Workspace Mode From “ESSENTIALS” to “VIDEO”.

6. Animation Panel has been shown at the bottom.
Time Line Animation

Frame Animation

7. Based on Time Line Animation, by changing the Green Bar size we set the visible state of the layers at specific time line.

8. Based on Frame Animation, Set the Frame Seconds use the popup menu on each frame. For example set the Time as 0.17 sec.

9. Create a two new duplicate frame for each layer and set the time as 0.1 sec. In Animation Panel use the Top Right corner icon, select the “Tween…”

10. For second and fourth frame we set the Tween with “Next Frame” and “First Frame” respectively. Set the “Frame to Add” as 5. Now Click Ok button. Now the Tween Frames are created.

11. Now Change the “Once” option to “Forever” option for continues playing.

12. From File Menu, select the “Save for Web & Device…”

13. Change the GIF format and Save it.

14. The Final Output has shown like below.

Popularity: 4% [?]

How to bring the cursor to the end of text in the textbox control – WPF C#

Normally if we focus a textbox control the cursor would be in the start of the textbox.But when there is text already in the textbox it would be annoying if the cursor is in start.It would be better if the cursor is at the end of content in texbox.

Thus to position the cursor at the end of the text content of a textBox control,we have to call the select method and specify the selection start position to the length of the text and a selection length to 0.

txtExample.focus();
txtExample.Select(txtExample.Text.Length, 0);

Ref : msdn

Popularity: 8% [?]

Designed by: Business Web Hosting | Thanks to Buy Icons, travel tips and Used Cars