Results 1 to 29 of 29

Thread: Is .NET really a generation ahead of anything else?

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Mar 2006
    Posts
    79

    Is .NET really a generation ahead of anything else?

    First, some background. Our Department is deciding on whether or not to migrate to ASP.NET or JSP over the next few years. We've already developed a major JSP-based application with mixed success. And I've dabbled (painfully) with JSP/Tomcat/Eclipse while creating a prototype web application. Although it really doesn't help when your Team Leader insists on designing all their webpage layouts in Microsoft Paint rather than...say...Macromedia Dreamweaver.

    One of my colleagues used .NET in her previous job, and demonstrated it for us. I was really impressed. There are so many things that would take days for a newbie like me to code in JSP (eg. tabs and pagination) that takes less than a day to develop in .NET.

    I read this comment in an article :
    Much as I hate to say it, a huge chunk of developers have long since moved to the web and refuse to move back. Most .NET developers are ASP.NET developers, developing for Microsoft's web server. ASP.NET is brilliant; I've been working with web development for ten years and it's really just a generation ahead of everything out there. But it's a server technology, so clients can use any kind of desktop they want. And it runs pretty well under Linux using Mono.
    My question to other developers with more experience with .NET - Is it really a generation ahead of anything else out there? And (apart from the obvious), what less-obvious benefits will our Department get if they migrate from ASP/VB6 to .NET?

  2. #2
    Fanatic Member eSPiYa's Avatar
    Join Date
    Jun 2006
    Location
    in our house
    Posts
    751

    Re: Is .NET really a generation ahead of anything else?

    ...And it runs pretty well under Linux using Mono
    They already implemented .NET1.1 in MONO, while .NET2.0 is in around 80%.
    They are planning to implement .NET3.0's features (or a sub group started implement some features of .NET3.0 but still unreliable).

    What good in .NET is not the framework itself, just the IDE.
    .NET Framework is originally develop for Microsoft products only, MONO developers just hacked it (the .NET) to obtain multi/cross-platform development.
    Microsoft's products are very expensive and it is not good in business.

  3. #3
    PowerPoster
    Join Date
    Jul 2002
    Location
    Dublin, Ireland
    Posts
    2,148

    Re: Is .NET really a generation ahead of anything else?

    The .VS 2005 IDE is the best I've ever used from a productivity standpoint and the framework provides nearly all the stuff you need out of the box so you don't spend an agre reinventing the wheel.

    If you include the team system stuff in your calculation it is probably the most productive development toolset available so yes, it is a generation ahead of anything else.

  4. #4
    PowerPoster RhinoBull's Avatar
    Join Date
    Mar 2004
    Location
    New Amsterdam
    Posts
    24,132

    Re: Is .NET really a generation ahead of anything else?

    Quote Originally Posted by eSPiYa
    They already implemented .NET1.1 in MONO, while .NET2.0 is in around 80%...
    Why not just use the NATIVE environment???

    Quote Originally Posted by eSPiYa
    ...What good in .NET is not the framework itself, just the IDE...
    That's the silliest thing I've heard in a long time.

    Quote Originally Posted by eSPiYa
    ...Microsoft's products are very expensive and it is not good in business.
    Sais who?

    You don't build your business on some cheap product with questionable support - you build it on reliable and solid foundation. It's very rare (if that happens at all) when [Cheap/Lots of functionalities/Good Support] all come together in one package.
    Expensive? Yes, but it's your investments that you plan on making some profit off...

  5. #5
    PowerPoster techgnome's Avatar
    Join Date
    May 2002
    Posts
    34,687

    Re: Is .NET really a generation ahead of anything else?

    Quote Originally Posted by eSPiYa
    What good in .NET is not the framework itself, just the IDE.
    As RB said, that's the silliest thing I've heard in a long time.


    Quote Originally Posted by eSPiYa
    .NET Framework is originally develop for Microsoft products only, MONO developers just hacked it (the .NET) to obtain multi/cross-platform development.
    It wasn't "hacked" ... Microsoft gave it up. Seriously. It may not be open source, but the specs are available to anyone who wants to build the .NET Framework for other platforms. It was part of the plan right from the start.

    Quote Originally Posted by eSPiYa
    Microsoft's products are very expensive and it is not good in business.
    Second silliest thing I've ever heard.

    -tg
    * I don't respond to private (PM) requests for help. It's not conducive to the general learning of others.*
    * I also don't respond to friend requests. Save a few bits and don't bother. I'll just end up rejecting anyways.*
    * How to get EFFECTIVE help: The Hitchhiker's Guide to Getting Help at VBF - Removing eels from your hovercraft *
    * How to Use Parameters * Create Disconnected ADO Recordset Clones * Set your VB6 ActiveX Compatibility * Get rid of those pesky VB Line Numbers * I swear I saved my data, where'd it run off to??? *

  6. #6
    Kitten CornedBee's Avatar
    Join Date
    Aug 2001
    Location
    In a microchip!
    Posts
    11,594

    Re: Is .NET really a generation ahead of anything else?

    JSF, the Java Server Faces, are an extension to the servlet specification (of which JSP is a part too) that closely mimic the ASP.Net development model, i.e. treating a web application like a normal one.

    Now IMO that's a very stupid idea to begin with, but apparently it's productive, so who am I to argue. I've never used ASP.Net or JSF beyond small sample applications, where I didn't like the style at all, so I can't claim that I'm experienced with either.

    However, some things occur to me:
    1) JSF is a bit younger than ASP.Net, so chances are that they learned from mistakes made in ASP.Net.
    2) JSF implementations generally generate better (read: more standards-compliant, more accessible, more cross-browser compatible) client-side code than MS's ASP.Net implementation.
    3) There are more JSF implementations (I found four: Sun's reference implementation, Apache's MyFaces, Simplica's ECruiser, and smile, another open-source implementation) than ASP.Net implementations (two: MS's and Mono's). This means less vendor-lock-in. Also, JSF is a public specification, whereas ASP.Net is a proprietary development by MS, and projects like Mono can achieve compatibility only by mimicking behaviour.
    4) Wikipedia claims (and I'm inclined to believe) that JSF introduces less coupling between logic and presentation than ASP. It is my experience that this separation is absolutely crucial to any mid- to large-scale project.
    5) If you have no experience with JSF, that may be a hindrance, whereas you apparently have at least one experienced ASP developer. On the other hand, most of your developers seem to have Java experience and lack C# experience.
    6) A WYSIWYG editor for ASP.Net is readily available. The same thing cannot be said for JSF - although I think there's something available, an Eclipse or NetBeans plugin perhaps, it is definitely not at the same level of maturity. On the other hand, WYSIWYG on the web is an illusion leading to horrible client-side code and browser incompatibilities.

    Just my thoughts.
    All the buzzt
    CornedBee

    "Writing specifications is like writing a novel. Writing code is like writing poetry."
    - Anonymous, published by Raymond Chen

    Don't PM me with your problems, I scan most of the forums daily. If you do PM me, I will not answer your question.

  7. #7
    PowerPoster RhinoBull's Avatar
    Join Date
    Mar 2004
    Location
    New Amsterdam
    Posts
    24,132

    Re: Is .NET really a generation ahead of anything else?

    Quote Originally Posted by Spacehamster
    ...My question to other developers with more experience with .NET - Is it really a generation ahead of anything else out there? And (apart from the obvious), what less-obvious benefits will our Department get if they migrate from ASP/VB6 to .NET?
    Sorry I concentrated on the reply rather than original question earlier...
    Anyway, in short what you guys will most definitely gain by "moving" to .NET is

    FIRST EVER (AND WORLD CLASS) TRUE ENTERPRISE ENVIRONMENT

    for all you need to do Web based and/or Desktop apps.
    I hope your VPs, Execs, Managers are listening so they won't make a mistake.
    If they say NO then I suggest you look for another job where .Net is appreciated.

  8. #8
    Kitten CornedBee's Avatar
    Join Date
    Aug 2001
    Location
    In a microchip!
    Posts
    11,594

    Re: Is .NET really a generation ahead of anything else?

    FIRST EVER (AND WORLD CLASS) TRUE ENTERPRISE ENVIRONMENT
    What an utterly meaningless phrase. In caps no less.

    How on earth do you define "enterprise environment", and how can you say .Net is the first ever when J2EE (arguably an "enterprise environment" too) is older?
    All the buzzt
    CornedBee

    "Writing specifications is like writing a novel. Writing code is like writing poetry."
    - Anonymous, published by Raymond Chen

    Don't PM me with your problems, I scan most of the forums daily. If you do PM me, I will not answer your question.

  9. #9
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333

    Re: Is .NET really a generation ahead of anything else?

    Quote Originally Posted by RhinoBull
    If they say NO then I suggest you look for another job where .Net is appreciated.
    Unless, of course, you are too old to start all over again.

  10. #10
    PowerPoster RhinoBull's Avatar
    Join Date
    Mar 2004
    Location
    New Amsterdam
    Posts
    24,132

    Re: Is .NET really a generation ahead of anything else?

    Quote Originally Posted by CornedBee
    How on earth do you define "enterprise environment"
    Environment to build your enterprise - all in one easy to use "place".
    Is that enough for you? If not surf the net for more...

    Quote Originally Posted by CornedBee
    ... how can you say .Net is the first ever when J2EE (arguably an "enterprise environment" too) is older?
    J2EE never had what I call "enterprise environment" nor it will ever have I'm afraid.
    But these sort of arguments are pointless - it's matter of opinion and our obviously differ.

    Have a good life and try not to be as brashly self-confident (or arrogant) next time.

  11. #11

  12. #12
    Kitten CornedBee's Avatar
    Join Date
    Aug 2001
    Location
    In a microchip!
    Posts
    11,594

    Re: Is .NET really a generation ahead of anything else?

    FIRST EVER (AND WORLD CLASS) TRUE ENTERPRISE ENVIRONMENT

    for all you need to do Web based and/or Desktop apps.
    I hope your VPs, Execs, Managers are listening so they won't make a mistake.
    If they say NO then I suggest you look for another job where .Net is appreciated.
    Have a good life and try not to be as brashly self-confident (or arrogant) next time.
    Forgive me while I go have a good laugh.

    I surf the net enough to know just how nonsensical and overused the word "enterprise" is.
    All the buzzt
    CornedBee

    "Writing specifications is like writing a novel. Writing code is like writing poetry."
    - Anonymous, published by Raymond Chen

    Don't PM me with your problems, I scan most of the forums daily. If you do PM me, I will not answer your question.

  13. #13

    Thread Starter
    Lively Member
    Join Date
    Mar 2006
    Posts
    79

    Re: Is .NET really a generation ahead of anything else?

    Quote Originally Posted by RhinoBull
    for all you need to do Web based and/or Desktop apps.
    I hope your VPs, Execs, Managers are listening so they won't make a mistake.
    If they say NO then I suggest you look for another job where .Net is appreciated.
    The Managers also attended that .NET demonstration - in which a simple webpage with several comboboxes and listboxes was created within 10-15 minutes. Naturally, their first question was "How much does it cost?". The second being "And what are the benefits" - a question which you've already answered. They seemed very impressed - both with the GUI (lots of colourful entertaining shiny colors), and with speed of delivery.

    The only problem is purely political. The Managers have already informed the Board that "JSP is the way of the future!" a few months ago. So it'd look bad if they changed their minds and went for .NET instead. But it's looking increasingly inevitable that we'll be migrating to .NET - it's just a matter of time.

  14. #14
    PowerPoster RhinoBull's Avatar
    Join Date
    Mar 2004
    Location
    New Amsterdam
    Posts
    24,132

    Re: Is .NET really a generation ahead of anything else?

    Back in the mid 90s when Pentiums were already on the market and only moron wouldn't understand the difference between say P200MMX and x486 machine I used work for a major retailer.
    One of our excutives made the deal to buy cash registers with x386 processors and many advised against that. But he did anyway only because he already mentioned that to the owners.
    Long story short he was fired during the first holiday season which almost ended disastrously (there were endless lines in every store due register poor performance) and they bought new state of the art cash registers...
    One of the owners later said that all that guy had to was to admit his mistake before it was too late...

    That's all I have to say. Good luck.

  15. #15
    Fanatic Member eSPiYa's Avatar
    Join Date
    Jun 2006
    Location
    in our house
    Posts
    751

    Re: Is .NET really a generation ahead of anything else?

    If you think that what I'm saying is silly, think about it first.
    I admit that the .NET Framework is a great product but just what I said it originally desgned for Microsoft's OS, for other platform; expect the GREAT delay for the implementation of its features.
    In the surface, they told us that is was "hacked" but we can see that Microsoft gave it to the creator of MONO, but let's not go beyond what they are "SAYING".

    If you are doing business, will you choose an expensive product than a cheaper one (or free) which have same features (or greater)?

  16. #16
    I'm about to be a PowerPoster!
    Join Date
    Jan 2005
    Location
    Everywhere
    Posts
    13,647

    Re: Is .NET really a generation ahead of anything else?

    To be honest, I hate ASP.NET. Vastly prefer PHP. I don't find much of the .NET framework useful at all. But, the CLR is nice; and it suits what we do at work.

    Long story short: Nothing's ever a "generation ahead". It just depends on what exactly you need to do.

    Mono is indeed a hack job. Sure, .NET was "designed" to be cross-platform, and in principle it is, but in practice, it's heavily coupled to Windows. Just look at WinForms.
    Last edited by penagate; Feb 9th, 2007 at 11:38 PM.

  17. #17
    PowerPoster
    Join Date
    May 2006
    Posts
    2,988

    Re: Is .NET really a generation ahead of anything else?

    Quote Originally Posted by Spacehamster
    in which a simple webpage with several comboboxes and listboxes was created within 10-15 minutes.
    you can do that in most if not all WYSIWYG editors ..
    i hope they showed them some more stuff ..

    PS. I heard ASP.net is much easier to code for than Classic ASP ..
    less to learn, etc. is this true?
    Last edited by rory; Feb 9th, 2007 at 11:59 PM.

  18. #18
    Hyperactive Member tommygrayson's Avatar
    Join Date
    Aug 2005
    Location
    In my Nissan Silvia
    Posts
    433

    Re: Is .NET really a generation ahead of anything else?

    Quote Originally Posted by eSPiYa
    If you think that what I'm saying is silly, think about it first.
    I admit that the .NET Framework is a great product but just what I said it originally desgned for Microsoft's OS, for other platform; expect the GREAT delay for the implementation of its features.
    In the surface, they told us that is was "hacked" but we can see that Microsoft gave it to the creator of MONO, but let's not go beyond what they are "SAYING".

    If you are doing business, will you choose an expensive product than a cheaper one (or free) which have same features (or greater)?
    I would still choose the more expensive product.

    It is just marketing bull**it to say that their product is cheap and has more features.

    Everybody can say that.

    I heard from a IBM Marketing executive a few years back that Lotus Notes is better than Microsoft Outlook because of its security, functionality, etc., etc.

    But I have used both and Lotus Notes sucks.
    Rate Me! Rate Me! Rate Me!

    Time to fly.

    Copyright GraysonSoft Inc. 2007

  19. #19
    Hyperactive Member tommygrayson's Avatar
    Join Date
    Aug 2005
    Location
    In my Nissan Silvia
    Posts
    433

    Re: Is .NET really a generation ahead of anything else?

    Quote Originally Posted by rory
    you can do that in most if not all WYSIWYG editors ..
    i hope they showed them some more stuff ..

    PS. I heard ASP.net is much easier to code for than Classic ASP ..
    less to learn, etc. is this true?
    Yes it's true but on one condition. You must be very familiar to both VB and ASP languages.

    You can also hide the codes from the client using code-behind.
    Rate Me! Rate Me! Rate Me!

    Time to fly.

    Copyright GraysonSoft Inc. 2007

  20. #20
    PowerPoster RhinoBull's Avatar
    Join Date
    Mar 2004
    Location
    New Amsterdam
    Posts
    24,132

    Re: Is .NET really a generation ahead of anything else?

    Quote Originally Posted by tommygrayson
    ...But I have used both and Lotus Notes sucks.
    It surely does... Just shortcuts alone (like CTRL+C that did anything but COPY) draw lots customers away.
    Last time I used it was back in 2001 and I just couldn't wait until it was dumped.

  21. #21
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Is .NET really a generation ahead of anything else?

    Only 2 posts by the OP?

    No one is going to dethrone Microsoft. They are just too big and have too much of the market share. Whith this, you would expect them to have invaluable resources to stay ahead of the competition. To say that JSP is the wave of the future is unfounded unless you can provide backup of this claim.

    They only showed you a simple webpage creation in 10-15 minutes? Thats very slow. Try 1 to 1.5 minutes lol. MS Web Developer 2005 is completely free to use for home or commercial use. I dont see the need to go on about this since many posts/points have already been made.
    Last edited by RobDog888; Feb 12th, 2007 at 04:08 PM.
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  22. #22
    PowerPoster
    Join Date
    May 2006
    Posts
    2,988

    Re: Is .NET really a generation ahead of anything else?

    i installed vde2005, but it wants a serial number ;-(

  23. #23
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Is .NET really a generation ahead of anything else?

    Did you register it?
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  24. #24
    PowerPoster
    Join Date
    May 2006
    Posts
    2,988

    Re: Is .NET really a generation ahead of anything else?

    no, I dont want to go through that just to test it ..
    but I guess Ill have to .. make a fake hotmail address and register from that ..

  25. #25

    Thread Starter
    Lively Member
    Join Date
    Mar 2006
    Posts
    79

    Re: Is .NET really a generation ahead of anything else?

    Quote Originally Posted by RobDog888
    Only 2 posts by the OP?

    The reason for only 2 posts is because I've been reading through the answers of people far more experienced at .NET than I am, and listening to their opinions and advice.
    Quote Originally Posted by RobDog888
    No one is going to dethrone Microsoft. They are just too big and have too much of the market share. Whith this, you would expect them to have invaluable resources to stay ahead of the competition. To say that JSP is the wave of the future is unfounded unless you can provide backup of this claim.
    RobDog, my original post was not meant to be an attack on Microsoft or on .NET! I thought I made it very clear in my original and subsequent postings that all of us were very impressed by .NET and what it had to offer -
    Quote Originally Posted by Spacehamster
    One of my colleagues used .NET in her previous job, and demonstrated it for us. I was really impressed. There are so many things that would take days for a newbie like me to code in JSP (eg. tabs and pagination) that takes less than a day to develop in .NET.
    Quote Originally Posted by Spacehamster
    The only problem is purely political. The Managers have already informed the Board that "JSP is the way of the future!" a few months ago. So it'd look bad if they changed their minds and went for .NET instead. But it's looking increasingly inevitable that we'll be migrating to .NET - it's just a matter of time.
    I did not claim that JSP was the wave of the future - it was my managers that made this statement, as I thought I made very clear in my original post! I also made it quite clear in my original post that I found JSP difficult to develop in. And please, no flames from JSP fanatics - I've had enough unjustified attacks from people today.
    Quote Originally Posted by Spacehamster
    We've already developed a major JSP-based application with mixed success. And I've dabbled (painfully) with JSP/Tomcat/Eclipse while creating a prototype web application.
    Quote Originally Posted by RobDog888
    They only showed you a simple webpage creation in 10-15 minutes? Thats very slow. Try 1 to 1.5 minutes lol. MS Web Developer 2005 is completely free to use for home or commercial use. I dont see the need to take this any farther because it sounds like you are biased towards jsp?
    The reason for 10-15 minutes is because my colleague was answering questions from others, as well as explaining the layout and controls. Otherwise she would've been able to do it in that time. She was demonstrating the advantages of .NET in a business presentation - a sentiment that I thought that you would appreciate.

    This site is, I feel, one of the best resources on the web for information on VB6/ASP, not to mention .NET.

    The reason for my original posting was to gain advice from others on whether or not .NET was a next-generation platform. It was meant to be a (hopefullY) non-controversial question from which I could hopefully gain some insight and advice from other experienced developers. It was never meant to be a bash against Microsoft or .NET.
    Last edited by RobDog888; Feb 12th, 2007 at 04:10 PM. Reason: Issue clarified

  26. #26
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Is .NET really a generation ahead of anything else?

    Hopefully I have clarified my point spacehampster

    I would say that as a developer you wil have to get on the .NET bandwagon as its here to stay for many more years and its still growing in popularity too. Better it be sooner then later that your software is supportive of it or it may be harder later on to make the migration.
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  27. #27

    Thread Starter
    Lively Member
    Join Date
    Mar 2006
    Posts
    79

    Re: Is .NET really a generation ahead of anything else?

    Quote Originally Posted by RobDog888
    Hopefully I have clarified my point spacehampster

    Yes, you have. I will repeat - again - that in no way did I mean to imply that .NET was an inferior platform!!! Good grief! The reason why I originally posted was to share my frustration as to why we hadn't adopted .NET yet.
    Quote Originally Posted by RobDog888
    I would say that as a developer you wil have to get on the .NET bandwagon as its here to stay for many more years and its still growing in popularity too. Better it be sooner then later that your software is supportive of it or it may be harder later on to make the migration.
    Unfortunately I'm not in a position to persuade management to adopt the .NET platform more quickly, but I do heartily agree with that sentiment.

  28. #28
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Is .NET really a generation ahead of anything else?

    Quote Originally Posted by RobDog888
    Hopefully I have clarified my point spacehampster
    I was talking about the PM I sent you too with that statement. Again, I thought it was cleared up?
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  29. #29

    Thread Starter
    Lively Member
    Join Date
    Mar 2006
    Posts
    79

    Re: Is .NET really a generation ahead of anything else?

    Quote Originally Posted by RobDog888
    I was talking about the PM I sent you too with that statement. Again, I thought it was cleared up?
    Just read your PM, and yes it's cleared up. Thank you for clarifying your post, it was very much appreciated.

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