Creating a graphic tic tac toe game in VB6

0 comments
Requirements

The application should begin with a form that contains the following elements:
-          A label saying "Welcome to Tic-Tac-Toe"
-          Two option buttons enclosed in a frame. The captions for the option buttons should be        "X" and "O". The caption for the frame should be "Select 'X' or 'O' and click OK".
-          A command button with the caption "OK".
When the user clicks OK, exit this form and display the main form (the game board).

Shut down, restart, log off and forced log off system using C#

0 comments
Here is the discussion of  
  1. How to Shut Down a machine 
  2. How to Log Off a machine
  3. How to forced log off a machine
  4. How to restart a machine using c# 

Upload an Image and an Audio file using C#

0 comments
Image Upload:

In this case, use  a FileUpload Control(Id:->FileUpload1), an ImageButton(ImageButton1) or you can use the Image,  a Button Control(Id:->Updatebttn) to upload the Image, Button Control(Id:->Addbttn) to add the Image in database, an image(which we want to upload) , add a new folder (Image) in the WebForm.

Accessing Local Database using Silverlight 4

0 comments
In this article, we will explore the mechanism of communicating with the local SQL Database using the out-of-browser features of Silverlight 4.0 with elevated trust permissions. This has brought back my golden days of VB 6.0 programming

How to send mail from Gmail without login your Gmail account

0 comments
Here is the discussion of how to send mail from Gmail using Asp.net 3.5 without login your Gmail account.
Write the small line of code as follows:

Display Tooltip for Silverlight controls

0 comments
Silverlight offers a class called "ToolTipService" which can be used to display tooltips for Silverlight controls. This class can be attached to most of the UI elements in Silverlight to display tooltips.

Asp .Net Dynamic Data

0 comments

Asp.Net Dynamic data is a new feature intoduced in .net 3.5 Framework. Its is basically to provide Rapid Application Development (RAD) refers to a type of software development Methodology. Asp.Net Dynamic data is a framework that lets you create data-driven ASP.NET Web applications easily.

Global events in ASP.NET

0 comments
The following are the global events handled in the global.asax.vb file.

Sub Application_Start(ByVal sender As Object, ByVal e As EventArgs)
End Sub

Working with Tuple in C# 4.0

0 comments
Tuple can store n - number of values in it. The type of each of those variables as generic parameters, and the object will create those values for you.