vb.net

Pemrograman grafis dengan VB6 by Rizky Khafitsyah (Graphics programming with VB6 by Rizky Khafitsyah)

Submitted by RizkyKhafitsyah on
ini adalah sebuah source code vb6 untuk pemrograman grafis yang sangat sederhana. Dibuat khusus untuk dipelajari. Silahkan Anda kembangkan sendiri imajinasi anda ! This is a vb6 source code for programming the graphics are very simple. Created specifically for the study. Please develop your own imagination!

Crystal Reports Using Local Database

Submitted by admin on
I receive one comment on one of my post “ How to Print Using Crystal Reports” asking on how to create a crystal reports using a local database. I told him to create a video on this, but I decided to create a project before I publish the video. Local database has an extension filename “.sdf”. By default you cannot see it (Data Source) when you create crystal reports using a wizard. There is no

Save and Retrieve Radio Button Value

Submitted by admin on
Somebody is asking me on how to save and or retrieve value from a radio button. So I decided to create a simple project so that you will have an idea on how Radio Button works on VB.NET. Please note that when you saved the value in the form, the changes is saved under the bin/debug folder and not under the base directory of this project. You may also see the changes when you close and open the

Hotel Reservation System (VB.NET) Updates

Submitted by admin on
Good news to those who used my Hotel Reservation System (VB.NET). I have already updated the source that fixes minor problems on reports that doesn’t preview when you open the report. I also move the Reports & Data folder to the base directory and copied it to the bin directory when you run the program. I have also changed the database password to “12345”. If you need customization, then let me

How to Read and Write XML File using VB.NET

Submitted by admin on
In this example you’ll learn on how to read and write into XML file using VB.NET. XML file is useful if you want to store simple data like storing database name and server information so that your application will remember what server and or database your program is connected in last session. An example of storing your database and server info: Where “server” is the name of your computer that run

Sample Invoice with Master/Detail Form

Submitted by admin on
In this sample you’ll learn on how to save record programmatically using VB.NET. A DataGridView is used to save record in the related table. You will also learn on how to get the last value of the primary key in order to save the related record. This is a very simple program that can be used to expand your knowledge on database programming. I am using SQL Server Express 2008 for my database