What's new
  • Visit Rebornbuddy
  • Visit Resources
  • Visit API Documentation
  • Visit Downloads
  • Visit Portal
  • Visit Panda Profiles
  • Visit LLamamMagic

Reasons for GUI not opening?

Venus112

New Member
Joined
Jun 17, 2010
Messages
1,509
Reaction score
13
Hey Guys

So i've been trying to create a GUI for my LazyRaider addon today, and it's all went somewhat good when i found out how to do it.

Now, i have a problem of the GUI not showing up when i press "Class Config" and i am not really sure where to look.
Everything has the same Namespace, there's no errors in my log

There's not a single error in any of the files, so i'm at a bit of a halt right now and i wanna ask you guys:
What can cause this?
I CAN add the entire CC to the forums, but i doubt anyone would want to look all of it through.
 
Have you added smth. like this?

Code:
        public override bool WantButton
        {
            get
            {
                return true;
            }
        }

        public override void OnButtonPress()
        {
            NAMESPACE.UI cfg = new NAMESPACE.UI();
            cfg.ShowDialog();
        }
 
..... i have not!
Fuck me!
I'll go add that now and see if that can't fix a little thing
 
remember to replace NAMESPACE with your actual namespace name and UI with your actual form name.
 
Seems to be working now.
Thanks WoWNerds :)

I knew it was probably just something stupid i forgot
 
Back
Top