Count number of words using vb.net

  In this short tutorial I will show you how can we calculate the number of words in a string . The string can be a string from inputbox or textbox or any string . It is  useful because we may need to count the number of words a user may enter. We have a function in .net called string.split. Returns a string array that contains the substrings in this instance that are delimited by elements of a specified Unicode character array. Vb.net code     Dim... [Read More...]

Html5 id

We all know what an id attribute in html means . It is identification name of an element . But What’s New with html 5 id attribute ? Well we all know that html 4.01 was  pretty restrictive regarding what values are allowed for id attributes There is some good news :- In html5 you can enter almost anything in the id attribute. That means you can insert (. , : anything in id attribute) But it is recommended to keep your coding clean... [Read More...]

tips for making a professional ppt

Here are some Tips and Tricks for making a professional powerpoint presentation. 1. If dont find any good powerpoint template for all you slides . It is recommended that you make your own powerpoint template and apply it to all slides. 2. Make use of transparency . It is always good to use transparent images in your powerpoint slide. 3. Embed videos and other objects like charts to enhance your powerpoint Presentation. 4. If you want to make a presentation... [Read More...]

programming windows phone 7 for beginners

 If you want to lean programming windows phone 7 . A new video series has been developed by Bob Tabor  and Clint Rutkas which is basically for the beginners.   You can see the video series for free by visiting this page >>>   http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners      Read More →

How to insert flash in vb.net

This article shows you how to embed/insert flash in your vb.net applications How to link Micromedia Flash File in VB.Net   First of all create Flash MX file with extension .swf  Now create a new project in vb.net Right click on the tool box. Select “Add/Remove Items". Select “COM Components” Select “Shockwave Flash Object”. Click OK. Then you can see the Shockwave Flash Object in the tool bar. Drag... [Read More...]

How to use images correctly in html

Webpages are not complete without images ? But it is important to keep in mind some basic things about images when it comes to designing webpages using images #Tip1 Never use absolute paths for images because incase that link is dead your webpage will look awful instead use relative paths . Note: We have done a tutorial on relative and absolute paths #Tip2 Never resize image using height and width properties of image tag because these attributes do... [Read More...]

How can you style your html content area

If you are deciding to make your own website or a webpage the first step is to create a main content area where we put all the stuff . Often this is body tag . But for making the webpages more attractive we can include many things in css . First thing is to select a good background color. Note: That if select the  background-color you may also need to change the color(fore color) so that it can be viewed . Second thing is to give your body... [Read More...]

How to make buttons in css using links

I Discovered a new way to create buttons in webpage using links and css So what we will do in this tutorial is that we will make a link and style it as a button . So first create a link <code> <a href=http://www.idealprogrammer.com > Idealprogrammer </a>   </code> Now we will style this a tag with css <code> a { padding:5px;  text-decoration:none;       background-color:#0CF;  border:1px... [Read More...]

create a social network menu using html

In this tutorial, we will show you how to create a social media share menu using CSS and jQuery. We are going to create the menu using basics CSS such as the CSS background-position property and a little jQuery to make the links animated. Create the HTML 1 Let’s create the HTML first. Here is our markup. Bookmark or Share This Post Delicious Facebook Stumble Twitter Style the HTML with CSS This is how... [Read More...]

change windows wallpaper using vb.net

Also see this video Want to change windows wallpaper using vb.net? There are 2 ways :- 1st way is by devasp.net Steps you will do. •Start visual studio 2005 and create a new window project. •Set the following properties of the form Text = “Set Wallpaper” Size = “1024,750” •Now drip a picture box control on the form and set its following properties. Size = “1024,725” Sizemode = ”centerimage” •Drop a two button controls... [Read More...]

Beginning css

Do you want to learn css ? I am assuming you already know html and learning html is important for learning css . From where to start ? First you might ask what is css ? css is basically a language which is used to control the look and presentation of the html content or webpage. we first write the basic content like parragraphs,headings etc and then we use css to design them . You might also ask so why do we need 2 different languages for webpages... [Read More...]

« Previous PageNext Page »