Overclock.net banner
1 - 5 of 5 Posts

· Registered
Joined
·
2,774 Posts
Discussion Starter · #1 ·
I am using Studio 2005 Express edition. ( The free one from microsoft's website)

And I also have C# Express edition ( Free also)

Visual Studio is good,but for some reason im getting a lot of errors while the code is perfect?! Also, I notice I dont need to know al ot of language to do it, since most of it is drag and drop and edit text.

C# many perfecct commands dont work,even after DEBUG mode. Is this normal?

I am a begginer programmer.

Also, if I develop a program using Visual studio Express, and I sell teh application, I dont need to accredit microsoft saying I developed it using Visual studio 2005 express right?

1 more question. how do i change a file from .VB to .EXE?

Thanks for all the patience
 

· Registered
Joined
·
677 Posts
You will need a compiler to make it executable. That probably means get the full version...

If something isn't working and the code checker says it's fine, you're probably using the code in the wrong way while it's technically correct. Take a break from it for a day and look over the whole thing tomorrow step-by-step and make sure everything is in a logical progression.
 

· Registered
Joined
·
2,774 Posts
Discussion Starter · #4 ·
Visual Basic Express

<Global.Microsoft.VisualBasic.CompilerServices.Des ignerGenerated()> _
Partial Class Form1
Inherits System.Windows.Forms.Form

'Form overrides dispose to clean up the component list.
<System.Diagnostics.DebuggerNonUserCode()> _
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
If disposing AndAlso components IsNot Nothing Then
components.Dispose()
End If
MyBase.Dispose(disposing)
End Sub

'Required by the Windows Form Designer
Private components As System.ComponentModel.IContainer

'NOTE: The following procedure is required by the Windows Form Designer
'It can be modified using the Windows Form Designer.
'Do not modify it using the code editor.
<System.Diagnostics.DebuggerStepThrough()> _
Private Sub InitializeComponent()
Me.Button1 = New System.Windows.Forms.Button
Me.DateTimePicker1 = New System.Windows.Forms.DateTimePicker
Me.WebBrowser1 = New System.Windows.Forms.WebBrowser
Me.SuspendLayout()
'
'Button1
'
Me.Button1.Location = New System.Drawing.Point(174, 21)
Me.Button1.Name = "Button1"
Me.Button1.Size = New System.Drawing.Size(121, 59)
Me.Button1.TabIndex = 0
Me.Button1.Text = "Welcome to my first program!"
Me.Button1.UseVisualStyleBackColor = True
'
'DateTimePicker1
'
Me.DateTimePicker1.Location = New System.Drawing.Point(131, 132)
Me.DateTimePicker1.Name = "DateTimePicker1"
Me.DateTimePicker1.Size = New System.Drawing.Size(196, 20)
Me.DateTimePicker1.TabIndex = 1
'
'WebBrowser1
'
Me.WebBrowser1.Location = New System.Drawing.Point(52, 176)
Me.WebBrowser1.MinimumSize = New System.Drawing.Size(20, 20)
Me.WebBrowser1.Name = "WebBrowser1"
Me.WebBrowser1.Size = New System.Drawing.Size(497, 551)
Me.WebBrowser1.TabIndex = 2
Me.WebBrowser1.Url = New System.Uri("http://www.google.com", System.UriKind.Absolute)
'
'Form1
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(587, 763)
Me.Controls.Add(Me.WebBrowser1)
Me.Controls.Add(Me.DateTimePicker1)
Me.Controls.Add(Me.Button1)
Me.Name = "Form1"
Me.Text = "Click it!"
Me.ResumeLayout(False)

End Sub
Friend WithEvents Button1 As System.Windows.Forms.Button
Friend WithEvents DateTimePicker1 As System.Windows.Forms.DateTimePicker
Friend WithEvents WebBrowser1 As System.Windows.Forms.WebBrowser

End Class
 

· Registered
Joined
·
284 Posts
I have Visual Basic Express 2005 but i havent tried it yet, but what i have tried is the Visual C++ 2005 Express and it does suck, u have to make sure u download the Platform SDK otherwise it doesnt come with all the apppropriate header files needed to compile an app...
 
1 - 5 of 5 Posts
This is an older thread, you may not receive a response, and could be reviving an old thread. Please consider creating a new thread.
Top