Postingan

Contoh Database untuk Aplikasi Penjualan

Gambar
Contoh Database untuk Aplikasi Penjualan .Kali ini kita membahas bagaimana caranya membuat database untuk aplikasi penjualan sebagai lanjutan dari artikel sebelumnya dimana code programnya dibuat dengan program vb6 (visual basic 6.0). Database yang akan di pakai adalah microsft acces, yang merupakan bagian dari program Microsoft office. Sengaja dipilih Microsoft access, karena artikel ini khusus untuk pemula. Struktur data yang akan kita buat sangat sederhana, yaitu sebagai berikut: Tabel Barang Tabel ini diberi nama mbarang dan field-fieldnya sebagai berikut kode_barang (varchar 12) nama_barang (varchar 255) Tabel Penjualan Untuk table penjualan ini akan dibuat dua buah table, satu untuk header data dan yang kedua untuk chieldnya. Yang pertama diberi nama tpenjualan dan tpenjualan_detail. Untuk tabel penjualan field-fieldnya sebagai berikut: nomor_penjualan (varchar 12) Tanggal (date) Jumlah (double) Sedangkan untuk tpenjualan_detail field-fieldnya sebagai berikut: id (inte

Contoh Program Vb6 Aplikasi Penjualan

Gambar
Contoh Program Vb6 . Bagian ini kita akan membahas bagaimana membuat program aplikasi Penjualan dari visual basic 6. Aplikasi ini mencakup tentang proses penjualan secara sederhana. Persiapan apa saja yang dilakukan sebelum memulai membuatnya….? Langkah pertama yang harus dilakukan dalam membuat program aplikasi penjualan ini adalah membuat deskripsi berupa cara kerja dari aplikasi penjualan. Misalnya dalam kesempatan kali ini kita akan membuat secara sederhana saja. Yaitu aplikasi hanya mencatat proses penjualan dan membuat laporannya. Selanjutnya dirancang modul-modul apa yang diperlukan. Dalam program ini yang kita buat modulnya adalah sebagai berikut: Master Barang Proses Penjualan Laporan Penjualan Contoh Program Vb6 Aplikasi Penjualan Setelah modul-modul sudah disiapkan, langkah selanjutnya adalah merancang databasenya. Database pada aplikasi kita pakai microsoft access. Dari modul tadi sudah bisa dirancang struktur datanya. Rancangan databasenya sebagai berikut

Editable Grid Extjs

Gambar
One of the advantages of grid extjs component is the ability to be edited. If in html can, a table is rigid, it can not be edited. This is different from Grid in ExtJs, where the Grid in ExtJs editable like us to edit a text in MS Word, or another word processing program. Furthermore, how to start a grid that can be edited? This topic is Editable Grid Extjs .   The first step to do is, create a regular grid as in the previous example. Then grid stantard was modified by adding a plugin, the function that the grid can be edited. While collecting data for the grid, remain as in the previous example. So there is a different form of additional plugins that function to edit the data in the grid. Noteworthy here is the update data. There is an additional function that serves to add to the data, and the data are interpreted as a record. For more details, please see the example of programming with extjs below. Source Code for Editable Grid Extjs

Tutorial ExtJS

Gambar
Our discussion this time is about programming with ExtJS . ExtJS program itself is a language composed of Java Programming. The advantage with this is ExtJs platform, we will generate a similar interface like we made a program on Desktop. Read the its Tutorial ExtJS   The Topic is Tutorial ExtJS Like most programming based on the desktop, then the results are much better than those based frendly WEB. Display menus, forms, and tables much different from what we usually see in the HTML. This is an extraordinary ability of ExtJS. Some of the topics that will be discussed are: Grid Editable Grid

Source Code Extjs Grids

Gambar
ExtJS is being used for developing Rich Internet Applications. It can be employed for creation of ExtJS Grid , Chart, Tree, Window, TabPanel, ComboBox, Layout Managers and Toolbars/ Menus. Here you can learn the steps to create simple ExtJS Grid . This topic is Source Code Extjs Grids Step 1: Setting up of Ext JS is a prerequisite . You can download the current release of Ext from the website of Ext JS. Step 2: In order to run Ext JS you must have HTTP server or a PHP server. We are trying to build a simple Ext JS Grid, as grid is the most famous widget being integrated in various web applications using Ext JS Grid. Step 3: It is very easy to build and run a simple base grid and make it run. You need to replace the existing code from the file ExtStart.js by the following code. The most important function that will be used in each and every page is onReady() function of Ext. After the loading of DOM this method will automatically be loaded. These days, frameworks are in deman

vb6 Msflexgrid can sending to Excel Cell

Gambar
This time we will create a small program how vb6 Msflexgrid can send data to a program in Microsoft Offrice MsExcel. The first step we have to do is. Create a new project, then a Msflexgrid control and CommandButton control from the component select Microsoft FlexGrid Control 6.0. as well as to add a CommandButton control to do the same steps. Then we add a reference to Microsoft Excel Object Reference uyaitu 11.0. The trick is, on the Project main menu, the submenu at the bottom there is a sub menu named references, the menu function to add other references required by the program that we are making. And what we need now is a reference from MsExcel. Do a browse, then select Microsoft Excel 11.0 Object. Up here we have save the project means that these references, and then we can use. Add the following program code: Private Sub Command2_Click() Dim i As Integer i = 1 With MSFlexGrid1 .FixedRows = 1 .FixedCols = 0 .Rows = i .Cols = 3 .TextMatrix(i - 1, 0