CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: joe_stoll

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. Replies
    3
    Views
    651

    Re: Quick Help Simple Question

    int funcAverage(int num1, int num2, int num3, int num4, int num5, int sum) would be the simplest or you could put the *******s in an array and pass by address
  2. Re: C++ Using the standard template library (STL) map example

    what is your question?
  3. Replies
    9
    Views
    1,338

    Re: Hoe Solve these errors?

    the first argument of InternetOpen() is an address/pointer to the string, not a string
  4. Replies
    5
    Views
    1,104

    Re: Where to start?

    you need to learn the basics of c++ ,data types,functions,classes,syntax of the language,etc. which is the base of what you work off of. a simple book such as C++ in 24 hours is sufficient to learn...
  5. Replies
    1
    Views
    792

    screen savers

    i'm not sure where to post this question
    I want to make a screen saver program how does this work and is there an example program in c++ that i can learn from,THANKS!
  6. Replies
    2
    Views
    1,919

    screen savers

    I want to make a screen saver program how does this work and is there an example program that i can learn from,THANKS!
  7. Replies
    41
    Views
    24,691

    Re: Set Focus On Mouse Hover (MFC)

    ver 6 introductory edition can't afford full version yet $900
  8. Replies
    41
    Views
    24,691

    Re: Set Focus On Mouse Hover (MFC)

    yeah i know its alot of overhead but it was just an idea that i had along time ago to encapsilate the onmousemove action in an owner drawn button to change the bitmap,in which i had dropped the...
  9. Thread: MFC problems

    by joe_stoll
    Replies
    8
    Views
    3,085

    Re: MFC problems

    i believe not, how is the program supposed to know what buttons to uncheck etc... in side the so called reset/uncheckall button get the handles to each control and uncheck the controls
  10. Replies
    41
    Views
    24,691

    Re: Set Focus On Mouse Hover (MFC)

    I would use CView since it is simple and handles mouse messages and I would use it for one button if you want the action to happen just for that button and to glue it to the CView you make CView the...
  11. Replies
    10
    Views
    5,622

    Re: dialog id undeclared identified

    did you include the resource.h file
  12. Re: Assertions not showing, it makes difficult to work like this

    add another beak point some where else,why not add a break point in all of your functions/classes and as you are figuring out which ones remove the ones that are not causing the assertion and watch...
  13. Replies
    10
    Views
    5,622

    Re: dialog id undeclared identified

    error C2065: 'IDD_DIALOG1' : undeclared identifier

    a variable’s type must be specified in a declaration before it can be used. The parameters that a function uses must be specified in a...
  14. Thread: Vectors

    by joe_stoll
    Replies
    5
    Views
    1,023

    Re: Vectors

    house::toString() says that the toString function is a member of house and which in your case its not I changed a couple of things.what in your case does vector mean, the only vector i know is a line...
  15. Thread: MFC problems

    by joe_stoll
    Replies
    8
    Views
    3,085

    Re: MFC problems

    there are books out there that shows you how to code with MFC that shows how to in 24 hrs 'yeah right , in 24 hrs?' anyways, it shows you the basics from windows and document architecture,buttons...
  16. Replies
    41
    Views
    24,691

    Re: Set Focus On Mouse Hover (MFC)

    just an idea not sure that it will work but if you where to encapsulate the button in another class such as a view class and use the OnMouseMove or Hover message handler
  17. Replies
    5
    Views
    4,999

    Re: errors with 'shlobj.h' ?

    look thru your code for syntax errors
  18. Replies
    2
    Views
    591

    Re: error LNK2001 unresolved symbol

    I am sure if you try a search for that number lnk2001 on this site you most likely will find your answer, i'm sure that most everybody had that error at one time or another in the past
  19. Replies
    1
    Views
    549

    Re: menu item enabling

    the frame that I attatched the menu item to thru a splitter window has no view attatched (is that the reason why the menu item is not enabling?) that is the purpose for the menu item is connecting a...
  20. Replies
    5
    Views
    4,999

    Re: errors with 'shlobj.h' ?

    is this include file something you made? look through this file for a syntax error.
  21. Replies
    5
    Views
    4,999

    Re: errors with 'shlobj.h' ?

    include\shobjidl.h

    it looks like you have a syntax error some where close to where the included file is(that is where an object that uses that file) , i don't know what that include file is used...
  22. Replies
    1
    Views
    549

    menu item enabling

    MENU ITEM ID_VIEW_WINDOWS_MESH IS DISABLED WHEN PROGRAM STARTS, WHY NOT ENABLED?
    WHEN I PUT THE FUNCTION "SwitchToView(IDW_MESH_VIEW);" IN:


    void CSwicthViewFrame::OnShowWindow(BOOL bShow, UINT...
  23. Replies
    9
    Views
    614

    Re: Structures and linked lists

    the program is most likely crashing because one of your pointers is null trying to access something which causes an access violation
    debug your code using break points
  24. Thread: Line Drawing

    by joe_stoll
    Replies
    5
    Views
    928

    Re: Line Drawing

    this code draws grey lines,horizontal and vertical in center of screen


    OnDraw()
    {
    CRect rect;
    GetClientRect(rect);
    CPen penGrey; // Construct it, then initialize
    if(...
  25. Thread: Line Drawing

    by joe_stoll
    Replies
    5
    Views
    928

    Re: Line Drawing

    MoveTo(x,y) moves the pen to position and LineTo(x,y) draws the line from MoveTo position to LineTo position
Results 1 to 25 of 30
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured