• 0

Visual Studio 2005 Express Beta Problem


Question

Hi I just downloaded the Express beta version of V S 2005, i started coding on it but i have this problem, for some reason i have made some code for a button, i know the code has been typed in properly and there is no errors, when i debug the application nothing happens in the console window, but i have clearly ordered the program when there is click of a button to execute writing on the console.

Anyone know what iam doing wrong? :no:

Edited by Prince21
Link to comment
Share on other sites

13 answers to this question

Recommended Posts

  • 0

I guess you have to show off some code to get us to help. Perhaps you got somethig wrong there (i know you saif its not but ...)

And if you could name which VS Express you are using that would be quite helpful too.

Link to comment
Share on other sites

  • 0

This is the code, when the button is clicked nothing happens

Public Class Form1

Private Sub btnSequence_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSequence.Click

Console.WriteLine("Eat at Joe's")

Console.WriteLine("Eat at Tom's")

Console.WriteLine("Eat at Kevin's")

Console.WriteLine("Eat at Rich's")

Console.WriteLine("Eat at Rose's")

Console.WriteLine("Eat at Ken's")

Console.WriteLine("Eat at Melissa's")

End Sub

Link to comment
Share on other sites

  • 0

:laugh: It's not a bug. Step into the button.click routine and watch the console window as each of the lines is run (Y) The window is just closing immediately after it's finished, so you never see it for very long.

Link to comment
Share on other sites

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.