Visual Basic .NET

Stationary Information System

Submitted by cngirwa on
Stationary Information System Enables Administrator to; - post news to his/her workers - manage users - view sales - view/add stock - change his/her password - backup and restore database - send backup copy to the email - check for updates Enables Normal user to; - view news - sale a product - view stock - change his/her password For any question, please contact me via email or sourcecodester

Try Catch

Submitted by joken on
Visual Basic Programming has an Exception to handle errors and other exceptional events. As a programmer, it is the best way to use a try catch to deal with unhandled exceptions. Especially when your program has disrupted the normal flow of instructions. Syntax:
Try
    [ tryStatements ]
    [ Exit Try ]
[ Catch [ exception [ As type ] ] [ When expression ]
    [ catchStatements ]
    [ Exit Try ] ]
[ Catch ... ]
[ Finally
    [ finallyStatements ] ]
End Try
The main purpose of exceptions is to manage errors.

Personal Alarm Scheduler

Submitted by joken on
This application is created using visual basic 2008 and Microsoft Access for Database. And this is currently used in Technological Center in Kabankalan to monitor the time shifting in every department especially their daily chores, Scheduled prayer and exact time monitoring for every period during classes. Using this application, you can set multiple alarm. Update and Delete the said alarm date

Conditional Operators

Submitted by joken on
In Visual Basic, we are using Conditional Operators to evaluate a condition that applied to one or two boolean expressions. An expression returning a value if the that expression is true and a different one if the expression is evaluated as false. The logical AND and OR operators both take two operands. Each operand is a boolean expression.

Dates and Times

Submitted by joken on
One module in Visual Basic is DateAndTime . Which contains date values, time values, or date and time values. As a programmer, there are cases that we always display the date and time in our application or web application. Using visual basic we can manipulate dates and times in many ways. To do this, open and visual basic and create a new project and save it as “Datetime”.

For each Loop

Submitted by joken on
One way to loop over the elements in an array using visual basic is to use For each loop. Because it automatically loops over all elements in the array or collections. And it works well when you can associate each iteration of a loop with a control variable and determine that variable’s initial and final values.

Arrays

Submitted by joken on
In programming, there are many cases that we need to reuse or we want to store many values in a single variable, but the problem is that variables can only hold one value. On the other hand we will be using an array. An array is a series of objects, with the same type and size. Each object in an array is called an element of an array.

Progress Bar

Submitted by joken on
Progress Bar is used to give visualization about the status of the current process and computer operation, such as a downloading , transferring of files, installation and more. Your application will look more professional if you are implementing a complex data processing using the Progress Bar. This time, we will create an example of a Progress Bar using Visual Basic. First, open visual basic and create a new project then, save it as “ProgressBar”. Then from the toolbox add a progressbar,label, button and a timer. Next, we’re going to add functionality to our application.