Showing posts with label tutorial. Show all posts

Shortcut Key of Microsoft office & learner Gide full free

Starting with Salam. Computer is an initial element of modern life. It is using every sector and all time. It is wonder for calculate and Microsoft office also increase its necessary. This program can prepare work first. No need to present it's important. Because we can fill it easily.
We can make our work more faster by following some shortcut key.  In below some necessary shortcut key are shown. It can improve your experience and can make you expert.



Ctrl + A
All Select
Ctrl + U
Make Underline
Ctrl + B
Change Text Bold
Ctrl + V
Paste from Clipboard
Ctrl + C
Copy to Clipboard
Ctrl + W
Close a Document
Ctrl + D
Change Font Dialog Box
Ctrl + X
Cut to Clipboard
Ctrl + E
Centre Alignment
Ctrl + Y
Repeate Again
Ctrl + F
Find & Replacement Box
Ctrl + z
Undow/Back Work
Ctrl + G
Go to Command


Ctrl + H
Replace a Command
Ctrl + Enter
Jump to next page
Ctrl + I
Text type Ittalic
Ctrl + Alt + +
Zoom View (+)
Ctrl + J
Justify text Alignment
Ctrl + Alt + -
Zoom View (-)
Ctrl + K
Setup Hyperlink


Ctrl + L
Left text  Alignment
Alt+0131
ƒ            Taka
Ctrl + M
Change to Invert
Alt+0165
¥            Yean
Ctrl + N
Create New Document
Alt+0177
±    Pluse/Minus
Ctrl + O
Open created Document
Alt+0215
×    Multiplication
Ctrl + P
Print a Document
Alt+Ctrl+T
™    Tread Mark
Ctrl + Q
Make Space in Paragraph
Alt+ Ctrl+R
®     Ragister
Ctrl + R
Right text Alignment
Alt+0163
£        Lira
Ctrl + S
Save Document
Alt+248/0186
º        Digree
Ctrl + T
Change Invent
Alt+0247
÷       Devide



You can get a book for know more.

Download


If you need more about this, follow below link. PassWord is :-: hiractg.blogspot



  1. Microsoft Access
  2. Microsoft Word 2007 Bangla tutorial



Never forget to comment us. Comments help us and you.

Download(1)
Download(2)
Read more

CSS3 multy lavel animated drop down menue

Hello all of my friends and followers. Now I want to give a trick to build a very nice menu bar for blog and website.
No need to introduce with CSS3 because it is already known to us. Moreover CSS3 can generate animation, transition and transform can make your webdesign so spicy and beautiful. With some cool and easy feature are help to you for build a nice drop down menu. View live demo before use this menu-bar. For demo view click demo button from post below.

For view previous some post to built menu bar please click here. This trick is awesome so don't get tension.
Are you ready to get it now, lets start....

First of all manage a place where your drop down menu will work. For blogger go to Layout and click to Ad new Gadget. Now coy and paste this following html code and customize your menu bar yourself.


<ul id="menu">
<li><a href="#">Home</a></li>
<li>
<a href="#">Categories</a>
<ul>
<li><a href="#">CSS</a></li>
<li><a href="#">Graphic design</a></li>
<li><a href="#">Development tools</a></li>
<li><a href="#">Web design</a></li>
</ul>
</li>
<li><a href="#">Work</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>



How to Customize Menu Bar with html

Follow the html code. Here replace "#" with a page link of your website. After the page link >Page Name< is for your desire page Title. Fore more menu item properly edit this html code.


Drop down menu CSS3 code customize

It is a complete CSS3 menu design and you can use this without hesitation and as a developer you can customize it. For batter use this following code are writing into sapper box.

Resiet the style ul:



#menu, #menu ul {
margin: 0;
padding: 0;
list-style: none;
}





The #menu code depend on ul and css3 help you to bring drop shadows, rounded corner & gradients.

#menu {
width: 960px;
margin: 60px auto;
border: 1px solid #222;
background-color: #111;
background-image: linear-gradient(#444, #111);
border-radius: 6px;
box-shadow: 0 1px 1px #777;
}

 Nicolas Gallagher‘s clearing method are using here lately.


#menu:before,
#menu:after {
content: "";
display: table;
}

#menu:after {
clear: both;
}

#menu {
zoom:1;
}


Now follow #menu li:hover > a the selector which are the most impotent feature for this drop down menu.

How this a work. this is the child of li & li code.This li option must be stay into #menu.



#menu li {
float: left;
border-right: 1px solid #222;
box-shadow: 1px 0 0 #444;
position: relative;
}

#menu a {
float: left;
padding: 12px 30px;
color: #999;
text-transform: uppercase;
font: bold 12px Arial, Helvetica;
text-decoration: none;
text-shadow: 0 1px 0 #000;
}

#menu li:hover > a {
color: #fafafa;
}

*html #menu li a:hover { /* IE6 only */
color: #fafafa;
}

Now we will work for sub menu. With CSS3 you can transition or properties of CSS3 and change margin or opacity . After this it's look a great seen.



#menu ul {
margin: 20px 0 0 0;
_margin: 0; /*IE6 only*/
opacity: 0;
visibility: hidden;
position: absolute;
top: 38px;
left: 0;
z-index: 1;  
background: #444;
background: linear-gradient(#444, #111);
box-shadow: 0 -1px 0 rgba(255,255,255,.3);
border-radius: 3px;
transition: all .2s ease-in-out;
}

#menu li:hover > ul {
opacity: 1;
visibility: visible;
margin: 0;
}

#menu ul ul {
top: 0;
left: 150px;
margin: 0 0 0 20px;
_margin: 0; /*IE6 only*/
box-shadow: -1px 0 0 rgba(255,255,255,.3);
}

#menu ul li {
float: none;
display: block;
border: 0;
_line-height: 0; /*IE6 only*/
box-shadow: 0 1px 0 #111, 0 2px 0 #666;
}

#menu ul li:last-child {
box-shadow: none;  
}

#menu ul a {  
padding: 10px;
width: 130px;
_height: 10px; /*IE6 only*/
display: block;
white-space: nowrap;
float: none;
text-transform: none;
}

#menu ul a:hover {
background-color: #0186ba;
background-image: linear-gradient(#04acec, #0186ba);
}


1st to last menu style
#menu ul li:first-child > a {
border-radius: 3px 3px 0 0;
}

#menu ul li:first-child > a:after {
content: '';
position: absolute;
left: 40px;
top: -6px;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
border-bottom: 6px solid #444;
}

#menu ul ul li:first-child a:after {
left: -6px;
top: 50%;
margin-top: -6px;
border-left: 0;
border-bottom: 6px solid transparent;
border-top: 6px solid transparent;
border-right: 6px solid #3b3b3b;
}

#menu ul li:first-child a:hover:after {
border-bottom-color: #04acec;
}

#menu ul ul li:first-child a:hover:after {
border-right-color: #0299d3;
border-bottom-color: transparent;
}

#menu ul li:last-child > a {
border-radius: 0 0 3px 3px;
}

You have already used IE6 and so use this jquary for batter animation effect on manu movement.


$(function() {
  if ($.browser.msie && $.browser.version.substr(0,1)<7)
  {
$('li').has('ul').mouseover(function(){
$(this).children('ul').css('visibility','visible');
}).mouseout(function(){
$(this).children('ul').css('visibility','hidden');
})
  }
});


Where the hover effect does not work we can use this for fix and solve problem.

Mobile Navigation Menu:

After a long request drop down mobile menu bar also available. This jquary will work for iPhone and you can view live demo by re-size as narrow your browser and it will be seem as your smart phone.

Use Meta tag:
For the batter resize you need to use a meta tag and this meta tag are below.

<meta name="viewport" content="width=device-width; initial-scale=1.0">

You should use a relative hover for mobile navigation. So you need to wrap the html structure by using <nav id="menu-wrap">.
Use the following code, your iPhone will detect this automatically.


/* Mobile */
$('#menu-wrap').prepend('<div id="menu-trigger">Menu</div>');
$("#menu-trigger").on("click", function(){
$("#menu").slideToggle();
});

// iPad
var isiPad = navigator.userAgent.match(/iPad/i) != null;
if (isiPad) $('#menu ul').addClass('no-transition');


Now use this mobile CSS trick and use this menu bar.


#menu-trigger { /* Hide it initially */
display: none;
}

@media screen and (max-width: 600px) {

#menu-wrap {
position: relative;
}

#menu-wrap * {
box-sizing: border-box;
}

#menu-trigger {
display: block; /* Show it now */
height: 40px;
line-height: 40px;
cursor: pointer;
padding: 0 0 0 35px;
border: 1px solid #222;
color: #fafafa;
font-weight: bold;
background-color: #111;
                /* Multiple backgrounds here, the first is base64 encoded */
background: url(data:image/png;base64,iVBOR...) no-repeat 10px center, linear-gradient(#444, #111);
border-radius: 6px;
box-shadow: 0 1px 1px #777, 0 1px 0 #666 inset;
}

#menu {
margin: 0; padding: 10px;
position: absolute;
top: 40px;
width: 100%;
z-index: 1;
display: none;
box-shadow: none;
}

#menu:after {
content: '';
position: absolute;
left: 25px;
top: -8px;
border-left: 8px solid transparent;
border-right: 8px solid transparent;
border-bottom: 8px solid #444;
}

#menu ul {
position: static;
visibility: visible;
opacity: 1;
margin: 0;
background: none;
box-shadow: none;
}

#menu ul ul {
margin: 0 0 0 20px !important;
box-shadow: none;
}

#menu li {
position: static;
display: block;
float: none;
border: 0;
margin: 5px;
box-shadow: none;
}

#menu ul li{
margin-left: 20px;
box-shadow: none;
}

#menu a{
display: block;
float: none;
padding: 0;
color: #999;
}

#menu a:hover{
color: #fafafa;
}

#menu ul a{
padding: 0;
width: auto;
}

#menu ul a:hover{
background: none;
}

#menu ul li:first-child a:after,
#menu ul ul li:first-child a:after {
border: 0;
}

}

@media screen and (min-width: 600px) {
#menu {
display: block !important;
}
}

/* iPad */
.no-transition {
transition: none;
opacity: 1;
visibility: visible;
display: none;  
}

#menu li:hover > .no-transition {
display: block;
}


For any problem or know to more please comment us. Your require or suggestion will provide us.
Read more

How To create & Control FTP sever in windows xp and other version

File Transfer Protocol (FTP) is the safe way to transfer file from one computer to another computer by Internet. Originally all transferable file stay on a computer store drive and a FTP server software run in this computer. Remote computer can be connect with the server computer and can transfer file between them. FTP server is like as HTTP server & both of them use Internet Protocol (IP). FTP is run for file transfer and HTTP for web interface. You can use Internet Information Service (IIS) as FTP by configuration. With the help of this you can use your storage as a hosting server and anyone can use this according to your permission.

A useful tutorial are below. This tutorial will work in windows xp professional,  Tablet PC edition, Media Center edition, server 2003 & 2000. All step are follow this tutorial. Windows XP home edition need a third-party software for run FTP server. In IIS system on a non server edition you can connect maximum 10 connection and can use under 2 GB data.

First of all you need a windows log on account which are password protected.
Click to Start and go Control Panel , open Add or Remove a Program and select Add/Remove Windows Components.
Now select Internet Information Service (ISS) and open Details. For windows server 2003 select Application server and click Details.
Into the Internet information service (IIS) you can see File Transfer Protocol (FTP) Server and check the box and now press OK.
Now click Next button and it require a windows CD.
After finishing IIS installation go to Control Panel again.
Change the view mode as Classic View and open administrative tools and click to Internet Information Service.
Expend the tree and open Your computer Name(local Computer) like MS1 (local computer) and then FTP Site as the same way.
Right click the Default FTP Site and view Properties.
Select the Security Accounts tab and uncheck Allow Anonymous Connections .
If you want to give permission to wright all user please put a trick into wright box to the home directory tab. Have you use windowes default Firewall or any third party firewall, you need to open port 21 for allow user to connect with server.




Creat Folder FTP


Now you need to create FTP folder into root directory. The FTP root dedicatory path is C:\inetpub\ftproot
You must need to create a folder into FTP root dedicatory and user can use this and all sub folder.

Configer root & folder in FTP

First time you need to create folder on the FTP root directory named it yourself like---  C:\inetpub\ftproot\server where the FTP folder is seen as Server.

Go again to Administrator Tools > Internet Information Service. For Windows Xp you can also right click on My Computer and view Manage and go to Service and Application node.

Open FTP Site node from the node from your computer node. Right click to FTP Site node then New > Virtual Directory.
Now give a new name and attach the ftp root folder directory. For control permission of FTP file click read and access permission and next to finish.

Configuration Permission


 Open the FTP site node From Computer Management > Service & Application. Now open Default FTP Site node. Now right click to the root folder name and view properties. Now go to security tab and add user and modify permission to control files. After all accessible permission edition press OK and close all window. Now Enjoy......


For any problem and get solution and know more comment us. InshaAllah proper solution will publish in near future...
Read more

How to remove add from Flash Vortex Flash file

We want to generate a nice website and so want to get some flash elements. Flash vertex is a flash banner Icon, Menu generator platform. It is free for creator but it's not add free. As a success owner of website it increase demand. Most of us already use this banners or menus and a large amount of them remove this Flash vertex banner only for add and back-link.

We present now how to remove add from Flash vertex. Do not late start to do it   .. .. . .. . . . .

Step 1:

First of all take the power to change flash file. So you need a lite software SWiX flash editor software. For download this software Click the download Button to download. Download button are below of the post.


Step 2:

Generate a flash banner with the help of Flash Vortex .
Chose any of style and give the requare information and link yourself.
After all editing click on "Generate Animation".
Now click "Click Here to Download" to download your flash swf file to your computer.


Step 3:

Open your swf flash file with SWiX software.
Click to the top "View" option and select "Movie XML".


Step 4:

1st way:
No press at a time Ctrl+F and a new find window will be show. Now find out below codes.


<Actions>
                <Push>
                    <String Name="http://www.flashvortex.com/referer.php?generatorId=" />
                    <String Name="generatorId" />
                </Push>
                <GetVariable />
                <Add2 />
                <Push>
                    <String Name="&amp;exampleId=" />
                </Push>
                <Add2 />
                <Push>
                    <String Name="exampleId" />
                </Push>
                <GetVariable />
                <Add2 />
                <Push>
                    <String Name="_top" />
                </Push>
                <GetURL2 LoadVariables="false" LoadTarget="false" SendVarsMethod="None" />
                <End />
            </Actions>

Safely remove the following code. Now find out another code of below:

Shapeid="4"
Shapeid="7"
Both of them replace with the code Shapeid="0" and save XML. Now you can preview by press on "Play" button.

2nd way:
Press "Ctrl+F" at a time to open find option.
Now find out the code  ShapeId


Remove this code Shapeid="some number"


After remove this code it will be seen as like <DefineShape3>
Now you can save ant test your edition and so press "Play" button for Preview.

After this edition if the add stay with the flash file, find again ShapeId code and remove the next one Shapeid="some number" code.


Download
Now enjoy and if after all you are fail please comment me for more help.


Read more