Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. skwrox

    Differentiation

    Hi all, I need to get the derivative of any expression that the user inputs to my program. Is there any function of any class in the STL that can do this? Or could someone put me on to the right path with some hints on algorithm for this? Thanks in advance, S
  2. skwrox

    How to refer to an App variable from Dialog class?

    Thank you. This is very good!
  3. skwrox

    How to refer to an App variable from Dialog class?

    I need to refer to, and set an Application variable from my Dialog class. I tried this: CMyAppApp * pApp = AfxGetApp(); The error says it needs reinterpret_cast, C-style cast or function-style cast. So I tried: CMyAppApp * pApp = dynamic_cast<CMyAppApp *>(AfxGetApp()); I still get a warning...
  4. skwrox

    Refering to App variable from Dialog

    I need to refer to, and set an Application variable from my Dialog class. I tried this: CMyAppApp * pApp = AfxGetApp(); The error says it needs reinterpret_cast, C-style cast or function-style cast. So I tried: CMyAppApp * pApp = dynamic_cast<CMyAppApp *>(AfxGetApp()); I still get a warning...

Part and Inventory Search

Back
Top