It helps the volunteers here tremendously when you post the actual code that is causing you problems. Not the entire application. Just the parts you have written that are causing the problem.
1 - Copy the code from Visual Studio
[imgnothumb]http://clint.stlaurent .net/bytes/code-copy.jpg[/imgnothumb]
2 - In your question thread, click the [code] tags button. Its the one that looks like # symbol
[imgnothumb]http://clint.stlaurent .net/bytes/tags-code.jpg[/imgnothumb]
Code tags have magically appeared in your post with the cursor right between them.
[code]|[/code]
Just paste and you should see this
[CODE] public void BrokenMethod()
{
// I don't understand why this doesn't work
int Yogi = "Bear";
}[/CODE]
Which will look like this
More on tags. They're cool. Check'em out.
1 - Copy the code from Visual Studio
[imgnothumb]http://clint.stlaurent .net/bytes/code-copy.jpg[/imgnothumb]
2 - In your question thread, click the [code] tags button. Its the one that looks like # symbol
[imgnothumb]http://clint.stlaurent .net/bytes/tags-code.jpg[/imgnothumb]
Code tags have magically appeared in your post with the cursor right between them.
[code]|[/code]
Just paste and you should see this
[CODE] public void BrokenMethod()
{
// I don't understand why this doesn't work
int Yogi = "Bear";
}[/CODE]
Which will look like this
Code:
public void BrokenMethod()
{
// I don't understand why this doesn't work
int Yogi = "Bear";
}
Comment