Search:

Type: Posts; User: RubenJ

Search: Search took 0.00 seconds.

  1. Thanks

    Thanks
  2. How to add an excell chart into a child window

    Is there a way to add an excell chart into a child window or a dialog?

    Ruben
  3. Replies
    1
    Views
    1,224

    How to make a graph

    There is a function in Visual Basic to make graphs very easily call MSGRAPH. Is there a function that can do the same thing in MFC Visual C++?

    Ruben
  4. Thread: Bitmap problem

    by RubenJ
    Replies
    1
    Views
    894

    Bitmap problem

    In my program I load a bitmap, but when I print the programs output where it is suppossed to be the bitmap it only appears a black rectangle. What could I be doing wrong?
  5. Thread: Child window

    by RubenJ
    Replies
    1
    Views
    909

    Child window

    How do I put scroll bars to a child window?
  6. Replies
    2
    Views
    877

    What can I do to make the output fit thepaper?

    What can I do to make the output fit thepaper?
  7. Replies
    2
    Views
    877

    Printing Problem

    When I run my program a see the output in the view dialog ok, but when I select print preview I see the output very small.
    What can I do to make the about fit the paper?

    Thanks
  8. Thread: OnDraw() ?

    by RubenJ
    Replies
    3
    Views
    969

    It works great!!!!!! Thanks

    It works great!!!!!!

    Thanks
  9. Thread: OnDraw() ?

    by RubenJ
    Replies
    3
    Views
    969

    OnDraw() ?

    I'm sending my programs output to the OnDraw() function, but I have to click the maximize button in order to see the programs output. Is there a refresh function or something like that?

    Thanks
  10. Thread: Coord system

    by RubenJ
    Replies
    4
    Views
    1,056

    Coord system

    Is there a way to change the coordenate system from 0,0 in the top left of a window to other place(What ever I want).

    Ruben
  11. Thread: Text rotation

    by RubenJ
    Replies
    3
    Views
    1,309

    It works! Thanks

    It works!
    Thanks
  12. Thread: Text rotation

    by RubenJ
    Replies
    3
    Views
    1,309

    Also, Why the text rectangle is white?

    Also, Why the text rectangle is white?
  13. Thread: Text rotation

    by RubenJ
    Replies
    3
    Views
    1,309

    Text rotation

    I'm using this:

    CString string=" Some Text";
    dc.SetTextAlign( VTA_CENTER );
    dc.TextOut( 330, 610, string );


    How do I rotate a text?
    (For example I want the text to be vertical not...
  14. Thread: Dialog ?

    by RubenJ
    Replies
    4
    Views
    1,122

    Dialog ?

    Is there anyway(function) to print a dialog on a printer?
  15. Thread: Drawing Help

    by RubenJ
    Replies
    2
    Views
    1,442

    Drawing Help

    I'm doing a program that generate some values(numbers), and I want to plot those numbers. I'm trying to find a tutorial on: How to draw in MFC?


    Thanks
  16. Replies
    3
    Views
    1,144

    It compile but does not output, I'm using this: ...

    It compile but does not output, I'm using this:

    wsprintf( string, "%s", SectionType );
    SetDlgItemText(hWnd,IDC_OUTPUT,string);

    Is this wrong?
  17. Replies
    3
    Views
    2,724

    It works! Thanks

    It works!

    Thanks
  18. Replies
    3
    Views
    2,724

    Multiple lines on an Edit box

    How do I output multiple lines to an Edit Box?

    I try this:

    wsprintf( string, "Line 1 \n Line 2 \n Line 3 \n ", SectionType );
    SetDlgItemText(hWnd,IDC_OUTPUT,string);
  19. Replies
    3
    Views
    1,144

    Getting a string from an Edit Box

    I'm trying to get a string with this function:
    GetDlgItemText(hWnd, IDC_SECTIONTYPE, buffer, sizeof(buffer) / sizeof(TCHAR));
    sectionType = _tcstod(buffer, &pEnd);


    But it doesn't work!

    Is...
  20. Replies
    1
    Views
    1,227

    Edit Boxes Question

    I'm writing a program that output some values. Some of them are integers and others are doubles. I'm using the following function for the integer values:

    char string[100];

    int number=20;
    ...
Results 1 to 20 of 20