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 ...
vb2008withorientedprogramming.blogspot.com
vb2008 with oriented programming: Februari 2009
http://vb2008withorientedprogramming.blogspot.com/2009_02_01_archive.html
Vb2008 with oriented programming. Rabu, 04 Februari 2009. Visual Basic 2008 Tutorial. Lesson 4: Object Oriented Programming. In first three lessons, you have learned how to enter the program code and run the sample VB2008 programs but without much understanding about the logics of VB2008 programming. Now, let’s get down to learning a few basic rules about writing the VB2008 program code. Private Name As String. Private Birthdate As String. Private Gender As String. Private Age As Integer.
vbnetsolutionfiles.blogspot.com
vb.net solution files: Februari 2009
http://vbnetsolutionfiles.blogspot.com/2009_02_01_archive.html
Rabu, 04 Februari 2009. Beyond the Book: The VB.NET Solution Files. The VB.NET solution files, like their counterparts in VB 6, are a repository for the source and compiled versions of the application and also maintain information about the project for Visual Studio. But there are more of them in VB.NET and they're organized in a more complicated directory structure. Microsoft MSDN on Solution Files. The first thing to notice is that the VB 6 project file uses the traditional "INI" file format that has b...
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...