Some development tools, like Visual C++ and Delphi, allows the developer to easily create console applications. These tools provides specific methods and functions for writing to the console screen and their compiler also provides special option for creating console executable. Unfortunately, Visual Basic doesn’t support console applications. Even if you use the Win32 API for writing into the console screen, Your application won’t work, because the Visual Basic compiler always creates GUI application and it doesn’t provide any compiler options for changing it to console application

 

 

This article explains the method of creating console applcation using VisualBasic

 

http://www.nirsoft.net/vb/console_application_visual_basic.html

In many cases you find to record your screen activities.This freeware allows to capture the screen activites without paying anythoing

http://www.camstudio.org/CamStudio20.exe

Hope this helps

You can use this site to find any kind of files in rapidshare.com

www.filesbot.com

 

Happy Searching

 

 

 

If you have developed a web site project and you are forced to convert the same to web
Application. Then you can follow the steps mentioned Here..
This works perfect. It is converting the application without any error

Happy Coding

Learn Windows.Net using this

Happy Learning

Pls Find the VB.Net Frequenty Asked Questions Here

Hi all,
This site contains the useful materials for the dotnet programmers who are searching for interview question and answers. Hope this helps

Hi All,

         In this I am going to explain some of the imports attributes of previouspage in asp.net 2.0 and above

  1. Back Button with the use of PreviousPage method

           You can move to the previous where you are redirected from by using the following method

          I have one button in my form with name called Button1 and the text property to set Back. And in the code behind i have code like this

protected void Page_Load(object sender, EventArgs e)

{

if (!IsPostBack)

{

Button1.PostBackUrl= PreviousPage.AppRelativeVirtualPath; 

}

Here I am setting the Postback url of the button as the previous page url. The

PreviousPage.AppRelativeVirtualPath

Will return the relative path of the previous page. And after getting this I am assinging it to the button control.

More to follow

I came to a situation where I wanted to Set a default button for my page. I struggeled to set so.Then i found that it could be also done in the design view itself ..

This is the form design view

myimage.jpg

To set the Default button set the default button of the form to the button you wish to set as default

<form id=”form1″ runat=”server” defaultbutton=”Button1″ >

and for the default focus set the default focus property of form tag to control that you wish as default focus. In this case i wanted to set the Textbox1 should have the default. So the code is

<form id=”form1″ runat=”server” defaultfocus=”txtName” >

and the entire coding is as

<form id=”form1″ runat=”server” defaultbutton=”Button1″ defaultfocus=”txtName” >

<asp:TextBox ID=”txtName” runat=”server” AutoPostBack=”false”></asp:TextBox>

<asp:Button ID=”Button1″ runat=”server” OnClick=”Button1_Click” Text=”Button” />

</form>

Happy Coding

Next Page »