DASAR PROGRAMER w

Free Download Crystal Report Runtime 8.5, 10, 11, 12, 13, 13.5 (For VB6 & .NET)

Apa itu Crystal Report Runtime ? merupakan kumpulan/paket library crystal report (core) yang berfungsi untuk menghandle agar aplikasi cristal report dapat berjalan (run). Semua bahasa pemrograman pasti mempunya runtime seperti VB6 = Msvbvm60.dll, VB.NET = NetFramework, Java = Java Runtime Environment dan lain sebagainya. jadi dengan menginstal runtime ini, anda tidak perlu menginstal software crystal report secara full, jadi hanya intinya saja (core) yang penting program/aplikasi anda dapat berjalan dengan baik. berikut ini saya sediakan link downloadnya untuk berbagai versi :
 All Link Updated on 2014-12-05 (yy-mm-dd) !
1. Download Crystal Report Version 8.5 Runtime (For Visual Basic 6 Aplication)
2. Download Crystal Report Version 10 Runtime (For Visual Basic 6 Aplication)
3. Download Crystal Report Version 11 Runtime (For Visual Basic 6 / Visual Studio NET Aplication)
4. Download Crystal Report Version 12 Runtime (For Visual Studio NET 2008 Aplication) 32bit, 64bit
5. Download Crystal Report Version 13 Runtime (For Visual Studio NET 2010 Aplication) 32bit, 64bit
6. Download Crystal Report Version 13.5 Runtime (For Visual Studio NET 2012 Aplication) 32bit, 64bit

Download Kumpulan Lagu Nasional Republik Indonesia MP3

Sebagai orang Indonesia alangkah baiknya kita mengetahui lagu lagu Nasional Republik Indonesia. Setidaknya jika kita mendengarkan akan tumbuh rasa Patriotisme, Kecintaan dan Kebanggan terhadap Bangsa kita ini. Saya senang band band Indonesia sudah banyak yang membawakan bahkan menciptakan lagu lagu bertemakan  nasionalisme, seperti :
1. T.R.I.A.D - NKRI Harga Mati
2. T.R.I.A.D - Indonesia Pusaka
3. Cokelat - Full Album Untukmu Indonesiaku 
4. Kapten - Untuku Indonesia
5. Netral - Garuda Di Dadaku
6. Slank - Bendera Setengah Tiang
7. Pee Wee Gaskins - Dari Mata Sang Garuda
8. Duo Maia - Sang Juara
dan masih banyak lagi yang lainnya... 

Berikut ini daftar beberapa lagu Nasional lainnya (original) :

Toolbox OCX For VB6

Screenshot :

 Click HERE to download source project
All Links Updated On 2013-01-01 !

Tags:
toolbox for vb6, vb6 toolbox, membuat toolbox seperti di visual studio, free toolbox ocx vb6, free toolbox user control vb6, free download custom toolbox ocx, custom  toolbox ocx, custom progressbar ocx, custom label ocx, custom textbox ocx, custom combobox ocx, custom control ocx, custom frame ocx,skin for vb6, active skin form, style for vb6, source code, download user control ocx vb6, vb6 style xp,vb6 style office, button xp,button office, custom controls

Gradient Button OCX For VB6

Screenshot :
 Download Full Source Project
All Links Updated On 2013-01-01 !

Tags:
Gradient Button OCX for vb6, vb6 Gradient Button OCX , membuat Gradient Button OCX, free Custom Gradient Button OCX  vb6, free Gradient Button user control vb6, free download custom ListBox ocx, custom  toolbox ocx, custom progressbar ocx, custom label ocx, custom textbox ocx, custom combobox ocx, custom control ocx, custom frame ocx,skin for vb6, active skin form, style for vb6, source code, download user control ocx vb6, vb6 style xp,vb6 style office, button xp,button office, custom controls, tutorial vb6, contoh program vb, free download aplikasi program vb

Saving Image From File To Table In SQLServer

Ini adalah kelanjutan dari Show Image To PictureBox From DataGridView Or DataReader, jadi ceritanya kita akan melakukan insert atau update field image langsung dari file (file di windows explorer). Sebenarnya bukan hanya image/gambar yang bisa di insert atau di update, tetapi SEMUA jenis file (image,document,video,audio, dan lainnya yang saya tidak mungkin sebutkan satu satu, hehehehe). baiklah seperti biasa saya akan contohkan menggunakan database northwind dan sintak nya seperti ini:

Select Image Query :
select * from
openrowset (bulk N'c:\sharingan.png',SINGLE_BLOB)
as IMAGEFILE
Jika perintah itu di-execute maka hasilnya adalah
Jika ingin mencoba file selain image contohnya mp3, silahkan :
select * from
openrowset (bulk N'c:\Music\GunsN'Roses-Don't Cry.mp3',SINGLE_BLOB)
as DJIE_FILE



Insert Image Query :
INSERT INTO Categories (CategoryID,CategoryName,Description,Picture)
SELECT * FROM (select 9 AS CategoryID, 'Sharingan' AS CategoryName,'Test Saving Image' AS Description, bulkcolumn AS Picture from
openrowset (bulk N'c:\sharingan.png',SINGLE_BLOB) as IMAGEFILE
) as DJIE

Update Image Query:
update Categories set Picture=DJIE.bulkcolumn
from (select bulkcolumn from
openrowset (bulk N'c:\sharingan.png',SINGLE_BLOB) as IMAGEFILE
) as DJIE where CategoryID=1

Cukup mudah bukan? jadi sekarang sobat dapat menyimpan File ke Tabel di Database Ms.SQL Server.

Tags:
database, sql server, save image to table, save picture to table, how to insert image to table, sql, insert picture to table, update image in table, delete image/picture, structured query language, direct image to table, data image, data reader, visula basic net, c#, visual studio, example

Download Diggi XP Skin OCX For VB6

Screenshot :.
Click HERE to download ocx
All Links Updated On 2013-01-01 !

Tags:
free Diggi XP Skin ocx vb6, free Diggi XP Skin user control vb6, free download custom Diggi XP Skin ocx, custom Diggi XP Skin ocx, custom Diggi XP Skin ocx, custom label ocx, custom textbox ocx, custom combobox ocx, custom control ocx, custom frame ocx,skin for vb6, active skin form, style for vb6, source code, download user control ocx vb6, vb6 style xp,vb6 style office, button xp,button office, custom controls

Show Image To PictureBox From DatagridView Or DataReader

Sudah aga lama saya tidak posting, lumayan sibuk.... langsung saja ya, bagaimana cara menampilkan image/gambar dari DataGridView ke PictureBox atau langsung dari DataReader ke PictureBox. Jawabannya sangat sederhana jika kita tahu caranya...hehe. Lihatlah contohnya pada gambar dibawah ini:
Kalau mau praktek, siapkan 1 project, 1 form, 1datagridview (name=djieDatagriView1), 1 picturebox (name=djiePictureBox1), saya menggunakan database northwind sqlserver.

Di form load kita koneksikan ke database dan load data ke datagridview :

Dim CON As New Odbc.OdbcConnection

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
CON.ConnectionString = String.Format("DRIVER={0};SERVER={1};DATABASE={2};TRUSTED_CONNECTION=YES", "SQL SERVER NATIVE CLIENT 10.0", "DJIESOFT\SQL2008", "NORTHWIND")
CON.Open()

Dim ADP As New Odbc.OdbcDataAdapter("SELECT FIRSTNAME,PHOTO FROM EMPLOYEES", CON)
Dim DT As New DataTable
ADP.Fill(DT)
djieDataGridView1.DataSource = DT
End Sub

Selanjutnya simpan function yang sudah saya buat ini (mau di form atau di module, bebas) :

Public Function djieGetDataToImage(ByVal pData As Byte()) As Drawing.Image
Try
Dim imgConverter As New System.Drawing.ImageConverter()
Return TryCast(imgConverter.ConvertFrom(pData), Drawing.Image)
Catch ex As Exception
MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error)
Return Nothing
End Try
End Function

Nah, ini implementasi pada saat datagridview di click :

Private Sub djieDataGridView1_CellClick(ByVal sender As Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles djieDataGridView1.CellClick
djiePictureBox1.Image = djieGetDataToImage(djieDataGridView1.CurrentRow.Cells(1).Value)
End Sub

Jika ingin menggunakan DataReader, artinya memilih photo-nya langsung dari table, seperti ini contoh implementasinya :

Private Sub djieDataGridView1_CellClick(ByVal sender As Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles djieDataGridView1.CellClick
Dim CMD As New Odbc.OdbcCommand("SELECT PHOTO FROM EMPLOYEES WHERE FIRSTNAME='" + djieDataGridView1.CurrentRow.Cells(0).Value.ToString + "'", CON)
Dim RD As Odbc.OdbcDataReader = CMD.ExecuteReader
If RD.Read Then
djiePictureBox1.Image = djieGetDataToImage(RD.Item("PHOTO"))
End If
RD.Close()
End Sub

Selamat mencoba, semoga sukses !

Tags:
Show image to picture box, datagridview to picturebox, picturebox from datagridview, set image from datagridview, set image from datareader, get image from datagridview, get image from datareader, datareader to picturebox, visual basic net, c#, visual studio, example, source code