Feb 09

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

[ More ]
Apr 19

Dasar dalam menggunakan Visual Basic, yang kita coba di bawah ini adalah mengenai OPERATOR yang sering di gunakan dalam VB. Dim var1 As Single, var2 As Single Dim hasil As Single Private Sub Label1_Click() End Sub Private Sub Option1_Click() var1 = Text1.Text var2 = Text2.Text hasil = var1 + var2 Label3.Caption = hasil End Sub [...]

[ More ]