Monday, April 11, 2011

FaceBook KeyBoard Shortcuts with Mozila FireFox

hii  here  is a facebook keyboard  shortcuts with Mozila   FireFox....

Shift+Alt+1 : Go to Home
Shift+Alt+2 : To view the Wall tab
Shift+Alt+3 : To pull down the Friends Requests list
Shift+Alt+4 : To retrieve the Messages list
Shift+Alt+5 : To call out the Notification list
Shift+Alt+6 : My Account setting page
Shift+Alt+7 :  My Account privacy configuration.
Shift+Alt+8 : Facebook fans group page
Shift+Alt+9 : Facebook?s Statement of Rights and Responsibilities
Shift+Alt+0 : Facebook Help Center
Shift+Alt+m : Creat a new message
Shift+Alt+? : Cursor in the Search Box

Google Chrome's user don't be sad   Our team   provide you   shortcuts of google chrome as soon as possible.

Choice is Yours.....Cheers


LOGIC CAFE TEAM

Thursday, April 7, 2011

Add New column in Table

To Add New Column In Table  . Use Following Sql Query

Query:- " Alter table 'TableName'  Add Column 'CoulmnName' 'DataType'

Exp:-
Let Assume My Table name is TempTable and i want to add New Column with Name of EmpAdd

Query:  Alter table temptable add column empadd varchar(50)


Choice is yours...... Cheers

Kapil hasija

Friday, September 17, 2010

How To Alter image DataType to varchar?

it is not possible to convert image data type to varchar. To use image datatype column to as a string So you 
can Alter image to varBinary with some limitation.
Query
alter Table Tbl_Suppliers
alter column ProfileImage Varbinary 

Wednesday, August 18, 2010

Alter Coulmn Size in Sql

Alter Table [Tablename] Products
Alter [ColumnName] Tea   varchar(50)

Alter Coulmn Name in Sql

Alter table [TableName] Products
 Alter[CoulmName]  Tea  [Type]   varchar(100)

Xml Code not Worked in Blogger Post

Xml Converter Use This Link To Convert Xml Code

Asp Menu Control Not working in ie8

<div class="navi_link">

<asp:Menu ID="menuNavigator" runat="server" DisappearAfter="0" StaticSubMenuIndent="0px"
StaticEnableDefaultPopOutImage="False" DataSourceID="SiteMapDataSource2"
Orientation="Horizontal" StaticDisplayLevels="2"
ItemWrap="True" MaximumDynamicDisplayLevels="4" BorderWidth="0"
BorderStyle="None" Font-Size="16px">


<StaticMenuItemStyle Height="20px" ForeColor="Black"
VerticalPadding="0px" BorderWidth="0" BorderStyle="None" />
<DynamicMenuStyle CssClass="sum_menu" />

<Dynamicmenuitemstyle verticalpadding="0px" font-size="0px" BorderWidth="0" BorderStyle="None" />

<DynamicHoverStyle ForeColor="Blue" Font-Size="16px" />
<DynamicSelectedStyle HorizontalPadding="0px" BorderWidth="0" BorderStyle="None" />

</asp:Menu>
<asp:SiteMapDataSource ID="SiteMapDataSource2" runat="server" />

</div>

-----------------------------------------------------
Step2.
Now Go to Css Class
.sum_menu
{
z-index: 1;
}


------------------------------------------------------
Or Stilll not working So Then

Write this code in Head Tag of .aspx Page

<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />