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

Search:

Type: Posts; User: martin_craigen

Page 1 of 3 1 2 3

Search: Search took 0.04 seconds.

  1. Replies
    5
    Views
    3,869

    Re: Migrating from 6.0 to .NET

    zc0styn,
    My problem was a "friend" declaration, described as follows :-


    "friend class not required when derived from class"

    Here is an example of a class derived from CString, but containing...
  2. Replies
    10
    Views
    1,650

    Re: compiles in v6, error C2143 in .NET

    OK everyone, thanks for taking the time to help.
    And it did help, because the comments about posting the whole code prompted me to study the code more closely, and ... I found the problem.
    ...
  3. Replies
    10
    Views
    1,650

    compiles in v6, error C2143 in .NET

    The following code compiles in c++ v6, but produces error C1243 in .NET 2003 :-

    typedef __declspec(dllexport) struct flucsLuminaireRecord
    { ...
  4. Upgrading Visual C++ Projects to VS .NET

    I am having trouble trying to convert one of my v6 projects to .NET.

    I tried the "manual" method, i.e. running VS .NET then opening the old .DSP
    file.
    This triggers an automatic attempt to...
  5. Replies
    3
    Views
    1,182

    Re: vc6 to vc7 project move link errors

    Dabbink,
    I'm getting the same problems.
    Can you tell me roughly how you managed to fix it?
    Thanks.......Martin
  6. Replies
    4
    Views
    897

    Re: Migrating from 6.0 to .NET???

    Thanks for taking the time to reply guys.

    Arjay -

    My problems are with CStrings, for details see my thread on the "Visual C++ .NET" forum, http://www.codeguru.com/forum/showthread.php?t=322392...
  7. Replies
    4
    Views
    897

    Migrating from 6.0 to .NET???

    Has anyone else considered migrating to .NET?

    I have a current thread on the .NET forum asking for help resolving CString problems. It's looking like I'll have to do a fair amount of work to port...
  8. Replies
    5
    Views
    3,869

    Re: Migrating from 6.0 to .NET

    Andreas,
    Thanks for your help.

    That fixed the particular problem in the declaration.

    However, now I get a failure a bit further down...

    class CScanString : public CStringT<TCHAR,...
  9. Replies
    5
    Views
    3,869

    Migrating from 6.0 to .NET

    Hi,
    I'm investigating how easy/difficult it will be to migrate from Visual C++ v6.0 to .NET.

    I tried simply rebuilding one of our projects without modification, but got the WINVER problem. So I...
  10. Replies
    8
    Views
    2,270

    Re: Export Makefile or Command Line?

    OK, thanks for all your help, consider this thread closed.
  11. Replies
    8
    Views
    2,270

    Re: Export Makefile or Command Line?

    ahoodin,

    Thanks, that's exactly the advice I was looking for.

    About the other thread... yes, you have rumbled me.

    In my defence, I thought there was a distinct difference of emphasis in the...
  12. Replies
    8
    Views
    2,270

    Re: Export Makefile or Command Line?

    ahoodin,

    Sorry about this, but we are still talking a bit at cross-purposes here (or maybe my question is not sensible, that is perfectly possible).

    What I'm trying to understand is the...
  13. Replies
    8
    Views
    2,270

    Re: Export Makefile or Command Line?

    ahoodin,

    Thanks for your prompt reply, I appreciate you taking the time.

    You suggest using the NMAKE solution, and I can see that I could easily go down that route.

    I suspect that NMAKE is...
  14. Replies
    8
    Views
    2,270

    Export Makefile or Command Line?

    What is the best way to build 50 projects (DLLs)?

    These projects have many inter-dependencies.

    I know how to build them in the Visual Studio WorkSpace, but I want to create a BATCH file so that...
  15. Replies
    5
    Views
    895

    Re: Batch Build multiple projects

    AdaraCD,
    Thanks, I can see how that will build everything and record errors in the log file.

    So maybe it will be best to just run a BATCH file and check the "errorlevel" after every build.
    ...
  16. Replies
    5
    Views
    895

    Re: Batch Build multiple projects

    Ajay Vijay,

    Thanks, that works.

    OK I'm getting greedy now but I would appreciate any comments about this supplementary question (if anybody has time) ...

    I want to run the MasterBuild every...
  17. Replies
    5
    Views
    895

    Batch Build multiple projects

    I've got over 50 projects to build.

    I've created a MasterBuild project, and added every project using "Insert project into workspace".

    What is the easiest way to AUTOMATICALLY check whether any...
  18. Re: Build order in multi-project Workspace

    Roger,
    Thanks very much, that works fine.
    I thought I had tried that before, but obviously I made a mistake.....Martin
  19. Build order in multi-project Workspace

    I am trying to create a Master Build comprising many separate projects.
    I know I can use a batch Makefile, but I thought it would be easier to create a single "MasterBuild" project and add all the...
  20. Replies
    14
    Views
    1,971

    Re: toolbar prompt resource clash

    kirants,
    I was typing my last post before I saw yours, so my last comments are redundant.

    All it means is that every time I create an automatic tooltip prompt I need to check that it has not...
  21. Replies
    14
    Views
    1,971

    Re: toolbar prompt resource clash

    Guys,

    I genuinely appreciate your trying to help me, BUT...

    I know I can change ID numbers. And that is what I have done to fix my immediate problem.

    HOWEVER...

    Sorry to repeat myself,...
  22. Replies
    14
    Views
    1,971

    Re: toolbar prompt resource clash

    OK I've got it working now, thanks .... BUT the basic "PROBLEM" still exists

    Can someone PLEASE try to answer the MAIN question , because this will happen again the next time I create a button...
  23. Replies
    14
    Views
    1,971

    Re: toolbar prompt resource clash

    Kirants,

    Sorry, I'm not explaining this very well.

    I have a string and a button. Both have the same ID number. This is OK because they are different types of resource :-

    #define IDS_TDB_LAG...
  24. Replies
    14
    Views
    1,971

    Re: toolbar prompt resource clash

    Thanks again Cilu, I'll try that.

    By the way, does anyone have any idea why the system allows the clash to happen in the first place?
  25. Replies
    14
    Views
    1,971

    Re: toolbar prompt resource clash

    Thanks Cilu.

    Which resource numbers can I safely edit, and how do I make sure the new resource numbers I choose do not clash with anything else?

    Is it safer to edit the string ID IDS_TDB_LAG or...
Results 1 to 25 of 53
Page 1 of 3 1 2 3





Click Here to Expand Forum to Full Width

Featured