CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Page 2 of 13 FirstFirst 1234512 ... LastLast
Results 16 to 30 of 194
  1. #16
    Join Date
    Sep 2002
    Location
    Maryland - Fear The Turtle!
    Posts
    7,537
    Originally posted by NoHero
    Can someone tell what this means??
    she·nan·i·gan ( P ) Pronunciation Key (sh-nn-gn)
    n. Informal

    A deceitful trick; an underhanded act.
    Remarks intended to deceive; deceit. Often used in the plural.

    A playful or mischievous act; a prank.
    Mischief; prankishness. Often used in the plural.

    In my context...there will not be a 'dying' out of the WIN32 api in 3 years, which was what I was calling shenanigans about.

  2. #17
    Join Date
    Apr 2003
    Location
    Regensburg, Bavaria, Germany
    Posts
    147
    Originally posted by Mick
    In my context...there will not be a 'dying' out of the WIN32 api in 3 years, which was what I was calling shenanigans about.
    But if TheCPUWizard says is true, than that would severly decrease the usefulness of WinAPI. .NET would pretty much rule the Windows world. I would hate to have to uninstall Visual Studio and install .NET . I love Visual Studio.

    And speaking of Longhorn, what is it exactly? I know that it's Microsoft's little new operating system, but is it completely new or something like XP except with more modifications?
    Favorite music:
    Rammstein
    E nomine
    Prodigy

    "Beer, the solution and the cause of all of our problems" -- Homer Simpson

  3. #18
    Join Date
    Mar 2004
    Location
    (Upper-) Austria
    Posts
    2,899
    Originally posted by ats007spdou
    But if TheCPUWizard says is true, than that would severly decrease the usefulness of WinAPI. .NET would pretty much rule the Windows world. I would hate to have to uninstall Visual Studio and install .NET . I love Visual Studio.

    And speaking of Longhorn, what is it exactly? I know that it's Microsoft's little new operating system, but is it completely new or something like XP except with more modifications?
    It should become something new ... ... but the future is always unknown at microsoft ... ya know ...?!
    I am not offering technical guidiance via email or IM
    Come on share your photo with us! CG members photo album!
    Use the Code Tags!

  4. #19
    Join Date
    Sep 2002
    Location
    Maryland - Fear The Turtle!
    Posts
    7,537
    Originally posted by ats007spdou
    But if TheCPUWizard says is true, than that would severly decrease the usefulness of WinAPI. .NET would pretty much rule the Windows world. I would hate to have to uninstall Visual Studio and install .NET . I love Visual Studio.
    It is true to an extent. Why would you think that MS would not go the route of making a developers life easier. Of course many would say it is the dumbing down of developers (VB) (same thing can be said about C and C++) but it's only the dumbing down if you let it be. Take a look around at what you are doing, too many people take the words of others as gospel. Take a look, delve a bit deeper into the OS, the lanquage, the compiler, it is all laid out before you. And with that knowledge you can trick it out

    And speaking of Longhorn, what is it exactly? I know that it's Microsoft's little new operating system, but is it completely new or something like XP except with more modifications?
    IMHO it's just a couple of new layers to remove you from the resources. It is also an exploration of digital rights management and security. Though they have always been there (if you look) it is more an automation. But I reserve my judegements until around LongHorny sp 2 or so...until then, it is unstable as I deem all products to be unstable until they reach a certain 'risk' level.

  5. #20
    Join Date
    Apr 2003
    Location
    Regensburg, Bavaria, Germany
    Posts
    147
    I just hope that VS runs in Longhorn. But overall, I'm a little anxious if this .NET garbage starts taking hold and I'm primarily doing WinAPI, I'll be sort of out in the cold(and not to mention unemployed). But I'll take your advice and start learning more about Windows. Or better yet, migrate everything to Linux, that way I'll be unaffected by Microsoft's decisions.
    Favorite music:
    Rammstein
    E nomine
    Prodigy

    "Beer, the solution and the cause of all of our problems" -- Homer Simpson

  6. #21
    Join Date
    Dec 2002
    Posts
    1,050
    Originally posted by ats007spdou
    But if TheCPUWizard says is true, than that would severly decrease the usefulness of WinAPI. .NET would pretty much rule the Windows world. I would hate to have to uninstall Visual Studio and install .NET . I love Visual Studio.

    And speaking of Longhorn, what is it exactly? I know that it's Microsoft's little new operating system, but is it completely new or something like XP except with more modifications?
    Googling for info we get....

  7. #22
    Join Date
    Dec 2002
    Location
    La Plata, Buenos Aires
    Posts
    615
    I think we're going to be able to program on the API, altough it is well known that the API-model of programming will be not more supported by MS.

    MFC will be in "bug-fix" mode, don't expect a refreshing MFC 9.0 release... IMHO, programming managed C++ with winforms is FAR better than dying MFC...

  8. #23
    Join Date
    Sep 2002
    Posts
    924
    Originally posted by ats007spdou
    I would hate to have to uninstall Visual Studio and install .NET . I love Visual Studio.
    Visual Studio .NET is still Visual Studio. It still has Visual C++, MFC, Win32 API, etc, but it also allows you to program using Managed C++, C#, etc.

  9. #24
    Join Date
    Dec 2002
    Location
    La Plata, Buenos Aires
    Posts
    615
    Until Longhorn appears, we've two options (are both are good): Win32 API and .NET (both in C++ of course .. no that C# hybrid, plz)

    MFC =

    (altough MFC is Win32 API with horrid OOP design)

    I never liked that MFC s**t

  10. #25
    Join Date
    Apr 2003
    Location
    Regensburg, Bavaria, Germany
    Posts
    147
    Originally posted by RussG1
    Visual Studio .NET is still Visual Studio. It still has Visual C++, MFC, Win32 API, etc, but it also allows you to program using Managed C++, C#, etc.
    I know that, but I looked at a book of .NET and one of the things that I found was that the syntax is different(slightly). For the main function, it's something like this.....
    Code:
    int _main()
    {
       return 0;
    }
    What's with the little dash in the front? One of the things that bug me is why can't they make the syntax look as close as possible to previous languages, so as not to make the learning curve so high? I'm not a professional programmer, hence the angst over the whole .NET thing and stuff.
    Favorite music:
    Rammstein
    E nomine
    Prodigy

    "Beer, the solution and the cause of all of our problems" -- Homer Simpson

  11. #26
    Join Date
    Dec 2002
    Location
    La Plata, Buenos Aires
    Posts
    615
    yes, in Windows Forms is

    Code:
    _tWinMain (...)
    Managed C++ is good, but the syntax is crap, you're right. For use managed types, you encounter all double-underscore prefixes....

    __gc __value ,etc

    MS must fix that in the new VS version, or at least, give a patch for us, .NET 2003 users. I would like to see GARBAGE_COLLECTED instead of __gc,

  12. #27
    Join Date
    Apr 2002
    Location
    Egypt
    Posts
    2,210
    Originally posted by indiocolifa
    yes, in Windows Forms is

    Code:
    _tWinMain (...)
    Managed C++ is good, but the syntax is crap, you're right. For use managed types, you encounter all double-underscore prefixes....

    __gc __value ,etc

    MS must fix that in the new VS version, or at least, give a patch for us, .NET 2003 users. I would like to see GARBAGE_COLLECTED instead of __gc,
    take a look at this :
    A first look at C++/CLI
    Hesham A. Amin
    My blog , Articles


    <a rel=https://twitter.com/HeshamAmin" border="0" /> @HeshamAmin

  13. #28
    Join Date
    Apr 2003
    Location
    Regensburg, Bavaria, Germany
    Posts
    147
    What is "Managed Code" exactly? I see you guys throw that phrase around, but what does it mean exactly?
    Favorite music:
    Rammstein
    E nomine
    Prodigy

    "Beer, the solution and the cause of all of our problems" -- Homer Simpson

  14. #29
    Join Date
    Apr 2004
    Location
    In the back seat of New Horizons.
    Posts
    1,238
    Is it possible to install Visual Studio .NET Academic version without those stupid updates? I don't have much hardrive space and I would really like to get around that annoying part, is there any way? Thanks in advance.
    Here are the rules, you must obey them or the gender bender will get you.

    And if you ever think of posting without code-tags, the evil monkey will come after you.

  15. #30
    Join Date
    Dec 2002
    Location
    La Plata, Buenos Aires
    Posts
    615
    Originally posted by ats007spdou
    What is "Managed Code" exactly? I see you guys throw that phrase around, but what does it mean exactly?
    With managed code , the cleaning of memory resources that the programmer allocates is done automatically by the OS (or a underlying framework such as NET). Imagine not using anymore delete[] and avoiding many (almost all) memory leaks.

Page 2 of 13 FirstFirst 1234512 ... LastLast

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