Rizq Technology – Exploring Your iDea.

All about My Experiences, Knowledge and Thoughts.

Archive for the 'Visual Basic' Category

Aplikasi Sederhana ODBC Visual Basic (Part 3).

17. Now we can create report and fill command “print” Private Sub Command5_Click() DataReport1.Show End Sub 18. Add data enviroment. 19. Configuring properties and connection 20. Add Data report and configuring properties. 21. And you are DONE, running your application(F5) and Click print to see the result. Violaa…. Thanks for your time

9 February 2010 at 08:23 - Comments
roy
http://img715.imageshack.us/img715/1218/62928160.jpg can you tell me what the description for each objects?
27 July 10 at 04:37
Rizky
Please read Carefully and Get source code ;) http://rizqtech.net/2010/02/09/aplikasi-sederhana-odbc-visual-basic-part-1/
27 July 10 at 04:46

Aplikasi Sederhana ODBC Visual Basic (Part 2).

8. Kembali pada project1.vbp pada program VB dan design form seperti di bawah ini. 9. Buatlah sebuah sample data di dalam tabel user. 10.  Don’t forget to pointing DataSource for DataGrid1 and choose Adodc1. 11. Double Click Command and fill with Command Script Private Sub Command1_Click() ‘Add Command Adodc1.Recordset.AddNew End Sub Private Sub Command2_Click() ‘Edit [...]

9 February 2010 at 06:41 - Comments

Aplikasi Sederhana ODBC Visual Basic (Part 1).

Tutorial seri ini saya akan coba sharing mengenai bagaimana membuat aplikasi sederhana yang terkoneksi dengan database dan menyajikan report dengan menggunakan VB6. Tutorial Details Language: Visual Basic Difficulty: Beginner Estimated Completion Time: 1 Hour Required : Visual Basic 6 1. Pertama siapkan terlebih dahulu “Data Sources (ODBC)” Dalam tutorial ini saya menggunakan Windows XP Start [...]

9 February 2010 at 04:30 - Comments
Mas.bagaimana caranya meng-connect-sikan My SQL dengan VB..klo ada contoh source codenya.aku sangat senang sekali..
26 April 10 at 08:19

Visual Basic#5

This scenario like previoust post – i guessed you’ve something about it. Source Code 1 : Private Sub Command1_Click() End End Sub Private Sub Command2_Click() Form2.Show Form1.Enabled = False Form3.Visible = False End Sub Source Code 2 : Private Sub Command1_Click() If Text1.Text = “rizky” And Text2.Text = “passwordgue” Then Text1.Enabled = False Text2.Enabled = [...]

16 May 2009 at 12:13 - Comments

Visual Basic#4

Today we can create a scenario to sharpen our skills. -Create a form for login. if user click LOGIN, it will be redirect to another form called form2, if they’re click EXIT and program will be terminate. -Create form2 containing login credentials to authorize users, if users success they will be redirect to another form, [...]

16 May 2009 at 02:01 - Comments