
I'm using Visual Studio 2008.
Thank you to the people who help!

![]() |
Code: Select all
AboutForm About = new AboutForm();
About.Show();
Aumaan Anubis wrote:Grimdoomer. The first person ever to mod Halo 2 Vista.
I did that, but it said that most of your code was not declared.grimdoomer wrote:Make it a form and name it AboutForm, then add this in the button click method:Code: Select all
AboutForm About = new AboutForm(); About.Show();
Code: Select all
Dim f as New FormName
f.ShowDialog()
Code: Select all
FormName f = new FormName();
f.ShowDialog();
Ah!LuxuriousMeat wrote:VBC#Code: Select all
Dim f as New FormName f.ShowDialog()
Code: Select all
FormName f = new FormName(); f.ShowDialog();
![]() |
![]() |
Fixed.grimdoomer wrote:Make it a form and name it AboutForm, then add this in the button click Event:Code: Select all
AboutForm About = new AboutForm(); About.Show();
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
It is expected, and demanded.Tural wrote:MrMurder, we're going to hold you to that promise.
![]() |
![]() |
![]() |
Aumaan Anubis wrote:Grimdoomer. The first person ever to mod Halo 2 Vista.
![]() |
![]() |
Look inside the AboutBox code...there should be a line declaring the label to use the assembly information. Just replace it with your own.Eaton wrote:Wow. A lot of replies. Ok. I will use the fixed code Supermodder posted. Just one more question... How can I make it so my about box displays my own custom text? I type in text, but I run it, it displays the assembly information and not my custom text...
![]() |
![]() |
![]() |
His code isn't fixed. It was fine as it was. He was trying to tell Grim that the click of a button is an event, not a method. Which, by the way, is why he bolded "event," in his "fixed code" post.Eaton wrote:Ok. I will use the fixed code Supermodder posted.
It is expected, and demanded.Tural wrote:MrMurder, we're going to hold you to that promise.