mathematicoperator.blogspot.com
mathematic operator
http://mathematicoperator.blogspot.com/2009/02/visual-basic-2008-tutorial-lesson-7.html
Rabu, 04 Februari 2009. Visual Basic 2008 Tutorial. Lesson 7: Mathematical Operations. Table 7.1: Arithmetic Operators. 4*3=12, (5*6) 2=60. Modulus (return the remainder from an integer division). 15 Mod 4=3 255 mod 10=5. Integer Division (discards the decimal places). Private Sub Button1 Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click. Dim num1, num2, difference, product, quotient As Single. Num1 = TextBox1.Text. Num2 = TextBox2.Text. Product = num1 * num2. A lot ...
mathematicoperator.blogspot.com
mathematic operator: Februari 2009
http://mathematicoperator.blogspot.com/2009_02_01_archive.html
Rabu, 04 Februari 2009. Visual Basic 2008 Tutorial. Lesson 7: Mathematical Operations. Table 7.1: Arithmetic Operators. 4*3=12, (5*6) 2=60. Modulus (return the remainder from an integer division). 15 Mod 4=3 255 mod 10=5. Integer Division (discards the decimal places). Private Sub Button1 Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click. Dim num1, num2, difference, product, quotient As Single. Num1 = TextBox1.Text. Num2 = TextBox2.Text. Product = num1 * num2. A lot ...
writingfirstvb2008.blogspot.com
writing first vb2008: Februari 2009
http://writingfirstvb2008.blogspot.com/2009_02_01_archive.html
Rabu, 04 Februari 2009. Writing Your First Program. The first part of Chapter 1 up to about page 14 is a (really good) introduction to the parts of Visual Studio from a VB point of view. (Visual Studio does have a 'point of view'. See step 4 on page 7 on updating your personal Profile.). The text encourages you to 'play around' with all the tools, windows, and options in Visual Studio and that's a good idea too! Source : http:/ visualbasic.about.com. IF YOU WANT TO REGSITER CLICK LINK BELOW.
writingthecodevb2008.blogspot.com
Writing the Code vb2008
http://writingthecodevb2008.blogspot.com/2009/02/visual-basic-2008-tutorial-lesson-5.html
Writing the Code vb2008. Rabu, 04 Februari 2009. Visual Basic 2008 Tutorial. Lesson 5: Writing the Code. 51 The event Procedure. Private Sub Form1 Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load. The are other events associated with the Form1 class, such as click, DoubleClick, DragDrop, Enter as so on, as shown in the diagram below (It appears when you click on the upper right pane of the code window). 52 Writing the code. MeText="My First VB2008 Program". In this exa...
writingthecodevb2008.blogspot.com
Writing the Code vb2008: Februari 2009
http://writingthecodevb2008.blogspot.com/2009_02_01_archive.html
Writing the Code vb2008. Rabu, 04 Februari 2009. Visual Basic 2008 Tutorial. Lesson 5: Writing the Code. 51 The event Procedure. Private Sub Form1 Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load. The are other events associated with the Form1 class, such as click, DoubleClick, DragDrop, Enter as so on, as shown in the diagram below (It appears when you click on the upper right pane of the code window). 52 Writing the code. MeText="My First VB2008 Program". In this exa...