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

Search:

Type: Posts; User: stephsh

Search: Search took 0.03 seconds.

  1. Replies
    11
    Views
    8,738

    Re: [RESOLVED] Add graph to form

    Thanks, ill keep that in mind!
  2. Replies
    11
    Views
    8,738

    Re: Add graph to form

    I took away the Refresh() and my graph now appears without having to call the OnPaint method! If one did need to call it one could probably use the following code in the constructor:



    ...
  3. Replies
    11
    Views
    8,738

    Re: Add graph to form

    I read that when overriding OnPaint in a derived class, one must be sure to call the base class's OnPaint method so that registered delegates receive the event...
  4. Replies
    11
    Views
    8,738

    Re: Add graph to form

    Thank you, I have followed your advice and have created a new windows form. In the initialization method of the windows form I call up the method to create the graph:


    public partial class...
  5. Replies
    11
    Views
    8,738

    Re: Add graph to form

    Is that necessary? I thought it would create a form according to the default value. But shouldnt the graph image come up just by using the following method? I ve seen that on many examples.


    ...
  6. Replies
    11
    Views
    8,738

    [RESOLVED] Add graph to form

    I have created a line graph in C# but it doesnt appear. Ideally I would like it to displayed on a new Windows Form or in IE. This is the code I used to plot it on stage:



    protected void...
Results 1 to 6 of 6





Click Here to Expand Forum to Full Width

Featured