CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Oct 2006
    Posts
    94

    adding GraphicsPath in an ArrayList?

    May i know how to add GraphicsPath in an ArrayList?
    I keep on getting errors. Please help!! Any simple solution will do.

    Thanks

  2. #2
    Join Date
    Mar 2006
    Location
    Craiova, Romania
    Posts
    439

    Re: adding GraphicsPath in an ArrayList?

    Same as with the other objects
    Code:
    GraphicsPath g = newGraphicsPath();
    ArrayList a = newArrayList();
    a.Add(g);
    
    Bogdan

    If someone helped you then please Rate his post and mark the thread as Resolved
    Please improve your messages appearance by using tags [ code] Place your code here [ /code]

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured