Showing posts with label tips. Show all posts
Showing posts with label tips. Show all posts

Wednesday, March 19, 2008

Create Table without using mouse and menus in Word

Create Table without using mouse and menus.... sounds intresting na....:)
To day i got one mail on this... so i would like to spread this information....

Do you know its possible create Table without using mouse and menus in MS word and Outlook. Here its that…

Type the content ( +——+——-+——+ ) in Microsoft Word , Outlook and press Enter . One row of a table will be created and for more rows you can press TAB.
Step 1:
+———–+————————+————-+

Step 2: (After pressing Enter having the cursor at the last ‘+’ Result will be like the below one)



Step 3: (press TAB to create more Rows)




In this ' + ' represents the column borders and ' – ' represents the length of the each column. It is one of the Easter Egg in Microsoft Word.

Monday, October 22, 2007

Undocumented GMail Shortcut To Delete Mails

GMail has a very useful undocumented shortcut which allows you to delete mails. Select the required mails in the list and press # key (shift+3) and all the selected message will move to Deleted Items. I tried this shortcut on Microsoft Internet Explorer & Firefox browsers and it worked.

GMail shortcuts work only if Keyboard Shortcuts option is switched on. Follow these steps to enable shortcuts in GMail

  • Click on Settings link
  • Identify Keyboard shortcuts option available in the General Setting tab
  • Choose Keyboard shortcuts on

Sunday, September 30, 2007

Encode/Decode Html Text

While posting u will come across a situation where u want to post a code snippet which includes <,> and some of the html tags. Blogger doesn't treate these symbols as they & it treates them as html tags.

In this kind of situation you can use the below link to encode/decode html text. Just you need to copy the text which you want to post it will encodes the given html and gives u the final text. Just copy that and post it.

http://centricle.com/tools/html-entities/

Setup and configuration for New Blogger Tag Cloud / Label Cloud


Here is the code and setup information to use the Label Cloud in New Blogger.First you obviously have to have a blog on New Blogger, and you MUST be using the layouts templates,(this isn't available for classic templates, or FTP published blogs ) and you must have some posts labeled already. (There needs to be at least ONE label with more than ONE entry or the scripts hit a bug - so have at least one label with more than one entry before starting).

Make sure you backup your template before making any changes!

Log into Blogger and go to your layouts section. On the 'Page Elements' setup page make sure you have a label widget already installed where you want it (it can be moved aroundlater). Then go to the Edit HTML settings and leave the widgets NOT exapanded. It will makethings easier to deal with.

Now the code comes in 3 parts. A section for the stylesheet, a configurations section,and then the actual widget itself.The first part to put in is the stylesheet section. The following code needs to be copiedand inserted into your stylesheet, which in the layouts is marked out by the
tags.Easiest thing to do is find the closing skin tag

]]>


and place the code right BEFORE that.Here it is, copy and paste without modification right now. I'll explain what can be tweaked later.






/* Label Cloud
Styles----------------------------------------------- */
#labelCloud
{text-align:center;font-family:arial,sans-serif;}
#labelCloud .label-cloud
li{display:inline;background-image:none
!important;padding:0
5px;margin:0;vertical-align:baseline
!important;border:0 !important;}
#labelCloud
ul{list-style-type:none;margin:0 auto;padding:0;}
#labelCloud a
img{border:0;display:inline;margin:0 0 0 3px;padding:0}
#labelCloud
a{text-decoration:none}
#labelCloud
a:hover{text-decoration:underline}
#labelCloud li a{}
#labelCloud
.label-cloud {}
#labelCloud
.label-count
{padding-left:0.2em;font-size:9px;color:#000}
#labelCloud
.label-cloud
li:before{content:"" !important}



This next section is the configuration section for the Cloud. It also goes in the head of the template, but outside of the stylesheet part. Easiest thing to do again is to find the closing stylesheet tag.

]]>

But this time place the code right AFTER that line, but BEFORE the tag. Here it is.

<script type='text/javascript'>
// Label Cloud User Variables
var cloudMin = 1;
var maxFontSize = 20;
var maxColor = [0,0,255];
var minFontSize = 10;
var minColor = [0,0,0];
var lcShowCount = false;
</script>

All of these settings can be changed but I'll explain them in a moment.

The defaults will work for now.Now the widget itself. Scroll down and find the label widget in your sidebar. It should looksomething like this

<b:widget id='Label1' locked='false' title='Labels' type='Label'/>
Copy the following code (from beginning widget tag to ending widget tag) and replacethe line above with it.



<b:widget id='Label1' locked='false' title='Label Cloud'
type='Label'><b:includable id='main'> <b:if
cond='data:title'>
<h2><data:title/></h2>
</b:if>
<div class='widget-content'>
<div id='labelCloud'/><script
type='text/javascript'>
// Don't change anything past this point
-----------------// Cloud function s() ripped from del.icio.usfunction
s(a,b,i,x){
if(a&gt;b){ var
m=(a-b)/Math.log(x),v=a-Math.floor(Math.log(i)*m)
}
else{ var
m=(b-a)/Math.log(x),v=Math.floor(Math.log(i)*m+a)
} return v }
var c=[];var
labelCount = new Array(); var ts = new Object;<b:loop
values='data:labels' var='label'>var theName =
&quot;<data:label.name/>&quot;;ts[theName] =
<data:label.count/>;</b:loop>
for (t in
ts){ if
(!labelCount[ts[t]]){
labelCount[ts[t]] = new
Array(ts[t])
} }var ta=cloudMin-1;tz =
labelCount.length - cloudMin;lc2 = document.getElementById('labelCloud');ul =
document.createElement('ul');ul.className = 'label-cloud';for(var t in
ts){ if(ts[t] &lt;
cloudMin){
continue; } for (var i=0;3
&gt; i;i++)
{
c[i]=s(minColor[i],maxColor[i],ts[t]-ta,tz)
}
var fs =
s(minFontSize,maxFontSize,ts[t]-ta,tz);
li =
document.createElement('li');
li.style.fontSize = fs+'px';
li.style.lineHeight = '1'; a =
document.createElement('a');
a.title = ts[t]+' Posts in '+t;
a.style.color =
'rgb('+c[0]+','+c[1]+','+c[2]+')';
a.href =
'/search/label/'+encodeURIComponent(t);
if
(lcShowCount){
span =
document.createElement('span');
span.innerHTML = '('+ts[t]+')
';
span.className =
'label-count';
a.appendChild(document.createTextNode(t));
li.appendChild(a);
li.appendChild(span);
} else
{
a.appendChild(document.createTextNode(t));
li.appendChild(a);
}
ul.appendChild(li); abnk =
document.createTextNode(' ');
ul.appendChild(abnk); }
lc2.appendChild(ul);
</script>
<noscript>
<ul> <b:loop values='data:labels'
var='label'>
<li> <b:if
cond='data:blog.url ==
data:label.url'>
<data:label.name/>
<b:else/>
<a
expr:href='data:label.url'><data:label.name/></a>
</b:if>
(<data:label.count/>)
</li> </b:loop>
</ul></noscript> <b:include
name='quickedit'/>
</div>
</b:includable></b:widget>


Now if all has gone well, and you have posts already labeled, then if you preview theblog you should see some form of the Cloud appearing. If it doesn't appear, then somethingwent wrong. You should probably back out and try it again from the start.

Update : I've found 2 things to check for first if the label cloud isn't showing. First make sure that at least one of your labels has more than one entry. A bug in the script causes it to fail when all the labels have only one entry.(As soon as any label has more than one entry, then it should be ok from then on) Also, make sure that none of your labels contain quote marks " . Apostrophes or single ticks ' are ok. ------

Most likely the cloud with it's default settings won't be what you ultimately want. But all the colors and sizes are configurable to match your tastes. If the cloud is appearing in previewthen you can go about changing some of the variables so they suit.


The settings in the Variables section will be where you make most of your adjustments. Here I'llexplain what each setting does.


var cloudMin= 1;


This setting you can use to limit the number of labels shown (for example if you have a lot of labels). Leave the setting at 1 to show ALL labels. If you enter in a higher number, then only labels that have at least that number of entries will appear in the cloud.

var maxFontSize = 20;
var maxColor = [0,0,255];
var minFontSize = 10;
var minColor = [0,0,0];
var lcShowCount = false;
The lines for maxFontSize maxColordo what you may think they do. The first one sets the size (in pixels) of the label with themost amount entries. The maxColor sets the color of that entry (in RGB format). Similiar withthe next two minFontSize minColorJust these are for the label with the least amount of entries. Again the size is in pixels, the color is in RGB format. Any labels between the two will get their color/sizes based onhow many labels they are, and where their entry count falls, giving the much desired cloud effect.


From my experimenting, there are many factors that make up a pleasant looking cloud. From color/size choice, to the number of actual labels, to how well dispersed the entries are amoungthe labels. 3 Labels don't make a good cloud as there isn't much to work with. You just haveto experiment around to see what looks good with your setup.


IMPORTANT, when change the color settings, Keep them in the format supplied. In between the [] and the numbers separated by commas. The default colors are BLUE for the max and BLACK for the min.You can select any valid RGB color combination. If you don't know what RGB colors are, don'tworry. It's just a way of defining a color. You can use many charts on the Internet toget the correct RGB value for the color you want to try. Here's one that is fairly good.
Remember, if you get the 3 sets of numbers to enter them in correctly. Inside the [ ] separated bycommas.
Also experiment with different font sizes. Again it depends on how many entries, how dispersedthey are, and how much room for the cloud is available as to what looks good.


The last variable there is
lcShowCount


This can either be false (default) or true. All this does is turn off/on the post count displayednext to the label. Usually in a 'traditional' cloud the count isn't used. But if you go to a 'flat' listing then it's sometimes useful to turn it on.


Now to the CSS section. Most people won't need to tweak these much, and it's not necessary to understand what all those entries are for. Most are just to make sure that other styling elements from the rest of your page don't inherit in and ruin the cloud. But there are a fewthat you may want to change to suit.The first line


#labelCloud {text-align:center;font-family:arial,sans-serif;}


You could change the fonts used in the cloud here if you wanted.Also, the text-align statement can also be changed. I have it set to center by default but youcould use


text-align:justify;text-align:right;text-align:left;


If those suit better.
The next line


#labelCloud .label-cloud li{display:inline;background-image:none !important;padding:0 5px;margin:0;vertical-align:baseline !important;border:0 !important;}
of realimportance is the first entry


display:inline;


You can change that to
display:block;
To get the 'Flat' (each entry on it's own separate line) listing of the weighted entries.Usually if that is set to block you would probably want to change the sort frequency from alphabetical to frequency. You do that by editing the widget from the Page Elements tab in Blogger


And the last bit I'll mention is the line


#labelCloud .label-count


If you set the lcShowCount variable to true to show the post counts, you could change the color/size of those numbered entries with that line.

Three columns template...

http://weblensblogs.blogspot.com/2007/04/3-column-widgets-compliant-blogger.html

http://webtalks.blogspot.com/2007/04/downlaod-three-column-new-blogger.html

Friday, September 21, 2007

Microsoft Outlook Tip - How To Stop Sending Incomplete Emails And Save Embarrassment

How many times have you send a partially composed mail or missed to attach a required document and realized after couple seconds that that you clicked on Send button by mistake? Almost all the email users would have come across this type of embarrassing situations at least once.
Microsoft Outlook has a nice feature which allows email users to recover from this type of mistakes and take appropriate actions to rectify them. Using a "Defer" rule in Microsoft Outlook we can pause all the mail delivery for few minutes after clicking the Send button. If we realize the mistake in the mail before the deferred time we can correct it and prevent an embarrassing situation.
After configuring the Defer rule (see the steps below to configure) all the sent mails will sit in Outbox for a few minutes before delivering to the recipients. If we want to stop the message from going out we can delete it from Outbox. Follow these steps to create the Defer rule

1. Follow the menu "Tools-->Rules and Alerts..." and select "New Rule..." to create a new rule

2. Choose the option "Check messages after sending" available in "Start from a blank rule" template section and click next

3. Click on the Next again to skip the wizard step "Which condition(s) do you want to check?" and a message box will be prompted with text "This rule will be applied to every message you send. Is this correct?". Select Yes.

4. On the next screen choose the option "defer delivery by a number of minutes", and then click on "a number of" and change the defer minutes to 3 minutes You can adjust this value to whatever you would like to) and click on next .

5. Again click on Next button to skip the wizard step "Are there any exceptions?" and give a name to this rule.

6. Specify any name of your choice and click on Finish to complete the rule definition.
That's all. From now onward all the mails will pause few minutes in Outbox and you will get time to correct mistakes

There is also one more feature

There is another feature in MS Outlook whereby one can "RECALL" the message
sent. though this is not a cent-percent accurate option but most of the times it
works. This works only if the recipient has not opened the email and u can get
it deleted from his inbox.

This is how u have to go about
it-:

On realizing a mistake in ur email sent, open the email from
your "sent items"

then go to the Actions Menu on the top.

Select the option of "Recall this message".
u have a
choice either to delete the message or delete and replace with a corrected one.

Thanks,

vijju

Tuesday, August 28, 2007

Introducing Message History for Yahoo! Messenger

Introducing Message History for Yahoo! Messenger

Yahoo! Messenger for the Web (beta) has just launched and includes an exciting new feature: Message History. The feature, which is available in select versions of the product, saves IM conversations in your account on our Yahoo! servers.
You can now access and search your message history from any computer -- just like email. Whether or not you use this feature, your IM friends and others you communicate with on Yahoo! Messenger may save conversations in their Yahoo! accounts.
You can learn more about
Message History, your Privacy, and the updated Terms of Service.
You can try this new feature on the new
Yahoo! Messenger for the Web (beta).

Source: http://help.yahoo.com/l/us/yahoo/messenger/web/web1/mh/mh-01.html

Thanks,

Yours Vijju....

Tuesday, March 27, 2007

Monday, March 26, 2007

DVDs and CDs in a tube

I am sure that many of us by now would have built up a pretty impressive collection of CDs and DVDs, but somehow or rather displaying them on a rack just doesn't quite make the cut any more due to the lack of space. If you don't have that much of an emotional attachment to your CD and DVD jewel cases, you can always remove their content and index them into the BlueDot Divita BDM-100S storage tower. This high-end CD and DVD storage system can hold up to a hundred discs and accessed via the high resolution 1.6" color TFT display and number pad. The only problem would be indexing each disc - you will have to manually enter the information via the number pad one by one before reaping the benefits of such a system.


You can choose from three colors - silver, silver, and silver. This will definitely come in handy for those who live in already crammed apartments and need every square inch possible.

Features

BlueDot presents Divita BDM-100S, the all new 2006 high-end DVD, CD Storage Tower. Polish high quality metal unit stores up to 100 CDs or DVDs. Featuring a high resolution 1.8" color TFT panel display with a number pad. It allows the user to organize and enter each title for the CD or DVD collection. BlueDot's Divita BDM-100S makes it easy to find and store the CDs. Designed with a compact body and has an ultra stylish, modern design. Manual in Japanese but operated in English. Available
Specifications
Disc size: 12 cm DVD/CD

Capacity: 100 discs

Size: W205 x H571 x D334 mm

Weight: 7kg

Power: 12V/2A (AC adaptor)

Maximum Output: 24W

Display: 1.8 color

TFT panel

Tuesday, February 13, 2007

folder options problem - Solution 2

folder options problem
start - run - type "gpedit.msc" -enter
then go to
user configurations - administrative templates - windows explorer-
then on right hand side pane you will see the option of
remove the folder option from the tools menu - which will be enabled
just set the option - not configured, If it is already not configured then disable it and your problem will be solved.

that's it
ok and ENJOY

Monday, February 05, 2007

XP Key In CD

There is a way to get the xp product code from the cd just explorer the cd then open the folder I386 then open the file UNATTEND.TXT and scroll down to the last line and it goes to show a product code.

Have fun u never need to search for a product code for xp again.


Edited bcoz of uday's commnets....
BTW UDAY i too like Microsoft... and i am working on Microsoft technologies... (.NET)....

Thursday, October 26, 2006

Folder Options Problem

Go to Run and typr regedit. browse urself to this place and solve ur problem
You will find this field in the infected computer at the following registry address: [HKEY_CURRENT_USER\Software
\Microsoft\Windows\CurrentVersion\Policies\Explorer]

set the DWORD "NoFolderOptions" to 0 or just delete it....and there you go the problem is GONE!!!!.