Link to home
Start Free TrialLog in
Avatar of tmostad
tmostad

asked on

Accessing a form added to a project - easy points!

I know this is brain dead but I have vapor lock and for some reason cannot figure this out.

I have an existing project to which I added a form (Project->Add Windows Form->Windows Form)
I added controls and code to the that form and now want to load it from my existing app. When I type newformname.showdialog I get an error saying newformname not found. Solution Explorer shows newformname under My Project.

I know this isn't tough but I need help getting unstuck. THanks.
Avatar of Raynard7
Raynard7

What namespace is your new form in? is in the same as the rest of the project?
Avatar of tmostad

ASKER

Good question. How do I figure that out?
Look at the code where you are trying to call it from - it should say namespace .... at the top
then look at the code of the form it should have something similar

if they are in different namespaces then you need to either change them so they are the same - or refer to the other. ie namespace.formname.arguement
ASKER CERTIFIED SOLUTION
Avatar of newyuppie
newyuppie
Flag of Ecuador image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Two things in the "obvious but perhaps overlooked" genre:
1.  Make sure the actual name of the form is what you think it is -- just seeing NewFormName under Solution Explorer doesn't mean the form is actually named NewFormName; check the property sheet for that.

2.  You may already be doing this, but don't forget in .NET you have to do something like..

Dim frmX As New NewFormName
frmX.ShowDialog()

(That is, you can't directly write NewFormName.ShowDialog().)


You've probably already considered both, but this is one of these cases where spending eight hours hunting for a really complicated solution and finding out it was really simple would be pretty annoying so I figured I'd throw it out there.  (-:
hi votey,
2) actually i believe that in vb2005 you can call the show dialog without instantiating the form (different from 2003 behaviour). but correct me if im wrong.
1) its what i posted just before you.
Avatar of tmostad

ASKER

I knew it was brain dead simple except when your brain is dead then all bets are off. It turned out that my form Class name had a typo and didn't match the file name listed in Solution Explorer. Thanks to all who made suggestions. This forum is well worth the money I paid.
thanks.
but as you can see i had suggested that first.
Avatar of tmostad

ASKER

Yeah, I got the points wrong. I'll ask to get it fixed or find another way to push a couple hundred more points your way. Sorry about that.
many thanks, i didnt mean to cause a fuss, but thanks.
NY