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

Search:

Type: Posts; User: mux

Page 1 of 2 1 2

Search: Search took 0.03 seconds.

  1. Replies
    1
    Views
    644

    Dealing with multiple forms

    Hello all,


    I'm trying to write an application in C#.NET (Visual Studio 2002), that deals with multiple windows, a bit like the wizards do, that is with a "Next" button etc.

    I'd like to be...
  2. Replies
    0
    Views
    682

    OpenFileDialog visual style?

    Hi all,


    When using an OpenFileDialog in my project, the 4 small icons which are right to the "Look in" listbox are displayed in the "old" windows style. I'd like to have those nicer and more...
  3. Replies
    0
    Views
    630

    Weird ListView problem

    As an exercise to learn C# programming, I've been developing a tiny application that connects to an Oracle database, and sends a SQL query to it. The results, if any, are then displayed in a...
  4. Thread: Crystal Report

    by mux
    Replies
    579
    Views
    647,368

    Checkboxes in Crystal Reports ?

    Hi all,



    I just started using Crystal Reports a few days ago and thus don't have any real experience with it. I'm trying to have checkboxes in my report, which will be checked or not depending...
  5. Replies
    13
    Views
    1,321

    Yes, I am, or actually I was :-). I moved the...

    Yes, I am, or actually I was :-). I moved the "#include <list>" after the other #include directives and it's now working. There must have been something in those headers which was confusing stuff. ...
  6. Replies
    13
    Views
    1,321

    Ok, I added it, thanks. But the compiler still...

    Ok, I added it, thanks. But the compiler still errors. It's actually choking before this line, at the first usage of std::list. I don't think that I'm already inside some namespace since I don't...
  7. Replies
    13
    Views
    1,321

    Here it is : void...

    Here it is :

    void
    CCalView::CalcRdvRectList(CList<CRdv, CRdv> &RdvList, CList<CRect, CRect> &RdvRectList)
    {
    std::list<rdv_t> RdvCtrlList;
    std::list<std::list<rdv_t>> AllConflicts;...
  8. Replies
    13
    Views
    1,321

    As far as I can tell, this line is absolutely not...

    As far as I can tell, this line is absolutely not needed since I'm not trying to access the list template as list but as std::list. Besides, I already said in this thread that putting this line...
  9. Replies
    13
    Views
    1,321

    The exact error message is "'list' : is not a...

    The exact error message is "'list' : is not a member of 'std'".

    mytype is a rdv_t, which is a typedef on a struct.

    I'm sorry, I can't post the code here, and I'm really sorry to say this, being...
  10. I was doing : #include and then...

    I was doing :

    #include <list>

    and then declaring as "std::list<mytype> mylist;" directly.

    I tried with using namespace std; and with using std::list; and then declaring as "list<mytype>...
  11. Replies
    13
    Views
    1,321

    Problems using the STL list template

    Hello all,

    I'm trying to use the STL list template class in some code of mine and I get weird errors, or at least they look weird to me. I'm properly including the list header at the beginning of...
  12. Hi again, I've finally decided to use the STL...

    Hi again,

    I've finally decided to use the STL standard list template because it's much simpler. But now I'm _really_ confused. I properly #include <list> at the beginning of my source file, and...
  13. Well, since the rest of the code isn't using STL,...

    Well, since the rest of the code isn't using STL, I wouldn't like to start using it just for this little piece of code. I believe that it would cause my executable to get bigger, wouldn't it?
    ...
  14. Wow, thanks a lot Paul! I now have everything...

    Wow, thanks a lot Paul! I now have everything (and more!) I need to know to do what I want.

    Thanks again,
    Maxime
  15. I tried doing something similar, but I then had...

    I tried doing something similar, but I then had compilation errors inside the CList implementation. I tried to do it this way:

    typedef CList<mytype_t, mytype_t> CMyTypeList;

    and then:
    ...
  16. Thanks for the pointer, it'll probably be useful...

    Thanks for the pointer, it'll probably be useful to me. However, for this particular project I'm working on, C++ STL is not an option.

    Cheers,
    Maxime
  17. How to create a list of lists using the CList template class

    Hi all,

    I think the subject mostly says it all :-). I need to create a list of lists, and since the rest of the code is using the CList template class, I'd like to use it for that too if at all...
  18. Replies
    30
    Views
    6,737

    I found a setting for the character set in the...

    I found a setting for the character set in the project properties. It was set to multi-byte character strings. Setting it to unicode produces different garbage when opening a file, but it's still...
  19. Replies
    30
    Views
    6,737

    What I know for sure is that I didn't define...

    What I know for sure is that I didn't define UNICODE myself, so if it is defined, it has been done by the project wizard. I don't see UNICODE defined in stdafx.h either, but maybe it lies elsewhere?...
  20. Replies
    30
    Views
    6,737

    Originally posted by Sam Hobbs You can...

    [QUOTE]Originally posted by Sam Hobbs
    You can provide a release version if you want me to try executing it using my system but I can only tell you whether it works the same as it does on your...
  21. Replies
    30
    Views
    6,737

    Thanks for taking a look at this code! I'll be...

    Thanks for taking a look at this code! I'll be sure to include the res directory next time :-).

    SimpleEdit exhibits the exact same symptoms when I open other text files, header files, cpp files,...
  22. Replies
    30
    Views
    6,737

    Ok, I think everything you asked for is in this...

    Ok, I think everything you asked for is in this zip file. I hope I didn't omit anything important nor put unneeded files :-).

    Thanks,
    Maxime
  23. Replies
    30
    Views
    6,737

    Sure. Here is the little text file I was using to...

    Sure. Here is the little text file I was using to test my code. It was created with notepad.

    For what it's worth, I tried on another Windows XP computer to see if that wasn't due to my computer...
  24. Replies
    30
    Views
    6,737

    The files I was trying to open are all plain text...

    The files I was trying to open are all plain text files, created with notepad, so I guess they aren't unicode files. What is probably the best proof is that when I trace the program's execution in...
  25. Replies
    30
    Views
    6,737

    The application I was working with wasn't...

    The application I was working with wasn't generated using a CEditView class but with a CView one because I didn't know it was possible to tell the wizard to use an another view class at that time. I...
Results 1 to 25 of 30
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured