Top websites to learn vb.net

If you are planning to learn vb.net from scratch here are some recommended websites which you should try . http://www.homeandlearn.co.uk/net/vbnet.html http://visualbasic.about.com/od/learnvbnet/Learn_VBNET_Visual_Basic_for_the_new_millenium.htm http://en.wikibooks.org/wiki/Visual_Basic_.NET And if you have any doubts and problems or suggestions free feel to use idealprogrammer forums.  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...]

vb.net environment class

The .net framework provides this useful class which can retrieve information about the os like os version , currently logged in user , and system variables like the path where windows is installed (windir) with it’s various methods and functions. How this can be useful ? Suppose you are making an application which will copy a file to the user’s directory where windows is installed . Let’s say in my computer it is c drive it may be... [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...]

jquery slider

In This tutorial we are going to learn how to make a cool looking slide effect using jQuery that will really make our images pop. The Live Demo Click HERE to see the full working demo. October 20th, 2010 in JQuery Tutorials by Lee Grant jQuery Slide Effect2 Votes, Rating: 5.00 Loading …0diggs digg4 Share About The Author: Lee GrantLee has a passion for all things design and web related and spends his days working as a full time web developer... [Read More...]

Update : Idealprogrammer forums

We are upgrading idealprogrammer forums so please be patient . Please check back the idealprogrammer forums to see the new look and features. If you want to suggest something please contact us email : saurabhorange@msn.com or harvey007@sbcglobal.net  Read More →

programming windows 7 taskbar

This 5 video series can be very useful for the developers who want to make use of windows 7 taskbar with their applications . You can see those videos here in this great blog >> http://channel9.msdn.com/blogs/yochay/programming-the-windows-7-taskbar–using-the-taskbar-button-overlay-icons-and-progress-bars  Read More →

css advanced selectors

Combinators The advanced combinators allow you to define styles that are based on a more complex rule that will be applied to more specific elements. Originally, it was possible to get to descendant-elements through contextual styles. For instance: p em {font-size: larger; } This rule will affect all em elements inside paragraphs. This is very useful, but also relatively simplistic. Combinators allow you to state the required relationship between... [Read More...]

How to change windows login screen using photoshop

You might want to develop the windows vista/7 login screen using photoshop . So do it . create your own image with your own effects and save it as .png/.jpg etc . Now use stardock’s logonstudio to create a new login screen with your image ( remember login screen modifies imageres.dll) And now apply your login screen you will able to see it ! For comments please visit idealprogrammer forums  Read More →

Make a chat application using asp.net

Do you want to create a simple chat application using asp.net ? Well you may want to see this code project article by Albert Pascual http://www.codeproject.com/KB/applications/SimpleChat.aspx For comments and suggestions use idealprogrammer fourms  Read More →

objects and classes in vb.net

This is a really great article for beginners who want to learn about classes and objects in vb.net (any version) An object is an instance of a CLASS E.G: car1 and car2 in the following code.>> Public Class Form1 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click ‘car1 is an object and it is an instance of the Car CLASS.>> Dim car1 As New Car ‘car2 is an object and it... [Read More...]

« Previous PageNext Page »