
This is what I get when I'm starting the client. I'm running it on my laptop, It's a Win98 system with 48mb's ram, 2 gig hd (700mb free), .Net Frame 1.1. It's about a 120mhz system.
HELP!
Thanks
[/img]
In my opinion far too many people code c++ without enough knowledge about assembler. This really is a bad thing, as c++ does almost nothing to prevent major security and memory leaks. It is a language only a few pros should use when writing hardware-based code, but not user applications. C++ has no built in support for any http-sevices thus making it a bad choice for a client, which should connect to a database via http. The .NET dataset is a container especially designed to handle async-db access via http and xml.DonGato wrote:Well, C++ is THE language to be used for professional applications. Assembler is not easy to code it so it is only used when high performance is needed.
Some major webpages are using .NET (aspx) and I'm coding quite regulary in VB.NET as it is a clean language, which gives you high performance with an intuitive syntax. No need for pointers (most people cannot use their advantages anyways, but take their risks) and great IDE (VStudio.NET) which makes debugging far easier.DonGato wrote: .NET is proprietary and not ready for mass usage. I don't see any critical application running in .NET. Java isn't intended for this kind of applications but J2EE is the best platform for back-end applications.
.NET is very compatible, as it uses a standarised set of variable-types and for communication over the net it uses SOAP, which is also a open standard based on XML. It is not hard to get .NET interop with JAVA or COM because of this.DonGato wrote:The problem here is not performance but COMPATIBILITY, and the best for that is C++ plain and simple (even without using MFC).