nerdegutta
- Joined Dec 15, 2009
- 2,684
Did you just copy/paste the code?Hi again,
But the copied code for test was showing error?
I don't know VB, but I think you need to start a project, and enter the code. What's the errors?
Did you just copy/paste the code?Hi again,
But the copied code for test was showing error?
yeah..Did you just copy/paste the code?
i have posted the screen shot.I don't know VB, but I think you need to start a project, and enter the code. What's the errors?
And what does the errors say?yeah..
i have posted the screen shot.
I should start with basic.It means that you have installed Microsoft Visual Basic 2008 Express Edition, and Microsoft Visual C# 2008 Express Edition. These will be you IDEs, one for making VB application, and one for making C# applications. Both would end up in an *.exe file when compiled.
So, how about those error messages?
Basic, as in learning the fundaments of programming, or...I should start with basic.
Would you like to learn how to make programs and applications in Microsoft Visual Basic 2008 Express Edition?what the mean?
learning Microsoft Visual Basic 2008 Express Edition?
- See more at: http://www.vbtutor.net/vb_sample/simuleq.htm#sthash.MH7a3wC4.dpufPrivate Sub Solve_Click()
Dim a, b, c, d, m, n As Integer
Dim x, y As Double
a = Val(Txt_a.Text)
b = Val(Txt_b.Text)
m = Val(Txt_m.Text)
c = Val(Txt_c.Text)
d = Val(Txt_d.Text)
n = Val(Txt_n.Text)
x = (b * n - d * m) / (b * c - a * d)
y = (a * n - c * m) / (a * d - b * c)
Lbl_x.Caption = Round(x, 2)
Lbl_y.Caption = Round(y, 2)
End Sub
' To get new equations
Private Sub New_Click()
Txt_a.Text = ""
Txt_b.Text = ""
Txt_m.Text = ""
Txt_c.Text = ""
Txt_d.Text = ""
Txt_n.Text = ""
Lbl_x.Caption = ""
Lbl_y.Caption = ""
End Sub
by Aaron Carman
by Jake Hertz
by Jeff Child