yes
Main Topics
Browse All TopicsHey Guys,
I have a form that I am opening, and in the form load procedure I have it calling 2 other procedures:
LookupPriceInfo();
Load_cboTax1();
lblPriceID.Text = PubVar.PriceID;
Then it sets a label.text - however it is as if the code is never getting a chance to execute the 2 items after LookupPriceInfo() - I do not know why my code stops running and does not continue in sequence, it is almost like it is branching off and I am somehow forgetting to send it back to where it started so it can resume.
Below is the code to: LookupPriceInfo()
Thanks!
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
did you put a breakpoint LookupPriceInfo(); and debug?
when it hits on this line, press F10 to go to next line, if it gives exception you will see..
probably you have these three command in try except block like this
try {
LookupPriceInfo();
Load_cboTax1();
lblPriceID.Text = PubVar.PriceID;
} catch (ex) exception {
...
}
if something happens on LookupPriceInfo, it jumps out of try except block... you need to debug and see whats happening...
Business Accounts
Answer for Membership
by: HainKurtPosted on 2009-11-02 at 13:29:02ID: 25723945
is the code you posted, for LookupPriceInfo()?