Posts

Image
Visual Basic 2010 Lesson 1- Introduction – Visual Basic Tutorial Skip to content Visual Basic Tutorial The most popular visual basic tutorial Menu and widgets Home VB6 VB2019 VB Sample Code Excel VBA VB2017 VB2015 VB2013 VB2012 VB2010 VB2008 Popular VB Books by Dr.Liew Preview the book Preview the book Preview the book Preview the book Preview the book Preview the book Preview the book Preview the book Preview the book Visual Basic 2010 Lesson 1- Introduction [CONTENTS] >> [Lesson 2] Microsoft launched Visual Basic 2010 in the year 2010. Visual Basic 2010 is a fully object-oriented programming language implemented on the .NET Framework. However, prior knowledge of OOP is not required t...

vbdicussion

Hello viewer's we will discussion about visual basic 6.0 here. Enter your idea's and comment here. 

Visual Basic 6.0 Simple Calculator

Image
Here i will submit my simple calculator project and sourcecode. i want discuss about my this simple program. Can you Answer for my doubt about some error handler? when i press after clear a symbol application run out with error . how can i complete the error handler. run time error = 13 (bellow msgbox using TSC AVERengal font) Private Sub Command1_Click() If Text1.Text = "" Or Text2.Text = "" Then MsgBox "/Please provide valid data" Exit Sub End If Label1.Caption = Val(Text1.Text) * (Text2.Text) End Sub Private Sub Command1_KeyPress(KeyAscii As Integer) If KeyAscii = 13 Then Command2.SetFocus End If End Sub Private Sub Command2_Click() Text1.Text = " " Text2.Text = " " Text3.Text = " " Label1.Caption = " " Text1.SetFocus End Sub Private Sub Command3_Click() If Text1.Text = "" Or Text2.Text = "" Then MsgBox "¾¸Å¨Ä ¯ûǣΠ¦ºöÂ×õ !!!" Exit Sub End If Label1...