User interface

nerdegutta

Joined Dec 15, 2009
2,684
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?
 

Thread Starter

RRITESH KAKKAR

Joined Jun 29, 2010
2,829
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?
I should start with basic.
in C there is program file and program file(x86)
it is window 7 what both mean..?
because both have Microsoft Visual Studio 9.0, Microsoft SQL Server

Microsoft Visual Studio 9.0,Microsoft Synchronization Services,Microsoft SQL Server Compact Edition
 

nerdegutta

Joined Dec 15, 2009
2,684
Ok, great.

Go back to post #72, follow the link, do some sample code. Start with one of the first. Keep it simple. Don't rush. If you get an error message, read the message, then Google it, try to fix it yourself. If you still get an error use, Google again, but with slightly different words. If that fails, copy the error message here, and a detailed description of what you have done.

Ok?
 

Thread Starter

RRITESH KAKKAR

Joined Jun 29, 2010
2,829
upload_2015-12-18_16-20-6.pngwhich language is this?
error can be see in image.
Private 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
- See more at: http://www.vbtutor.net/vb_sample/simuleq.htm#sthash.MH7a3wC4.dpufupload_2015-12-18_16-20-6.png
 

Thread Starter

RRITESH KAKKAR

Joined Jun 29, 2010
2,829
the two error was removed
but this can't statement not valid in namespace
To correct this error
  • Move the statement to a location within a module, class, interface, structure, enumeration, or delegate definition.

link
 
Top