CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 15 of 20

Threaded View

  1. #16
    Join Date
    May 2007
    Location
    Denmark
    Posts
    623

    Re: Need help with bracket counter for project

    That's probably because there's a starting bracket ({) in the beginning of the file that doesn't have an ending bracket. Remove it and try again.

    EDIT: That's part of the test file? In the original file, remove the brackets that are enclosing the entire file. If I'm right your file is formatted like this:

    Code:
    using this;
    using that;
    
    {
    
    
    class1
    {
    
    }
    class2
    {
    
    }
    
    ... //more classes
    
    
    }
    This will make my code put it all in one file. Make sure your file is formatted like this:

    Code:
    using this;
    using that;
    
    class1
    {
    
    }
    class2
    {
    
    }
    
    ... //more classes
    Last edited by foamy; June 17th, 2010 at 08:50 AM.
    It's not a bug, it's a feature!

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