vote up 1 vote down star

Hi,

After thinking for long, I have decided to build my data app for the Not-for-profit organization I work for (I don't program regularly there, though...) using C#, .NET 3.5 (using ADO.NET DataSets) and Scimore db.

I have done base basic tinkering till now and have found this combo to be quite good and fast. Ya, "fast" is a requirement for me, as our computers are slow.

I have a question though: should I use Visual Studio design tools to help me build my GUI for data bound controls or should I code them by hand? In simple scenarios, I have found that designer generated code seems to be too big for the purpose.

Will it somehow affect the "fastness" of my final app?

Thanks for reading!

Edit Sorry, I didn't mention, this would be a desktop application, using Winforms

flag

2 Answers

vote up 2 vote down check

Usually the amount of code does not affect execution speed so I shouldn't worry about that. Therefore, you should consider using the Visual Studio design tools for building your GUI. Most of the time you can build your application a lot faster this way.

link|flag
vote up 0 vote down

Hi, if you're looking to keep your ASP.NET code as lightweight and fast as possible you may want to look at using ASP.NET MVC. This is the technology used to create StackOverflow, it gives you a lot of control over which data technologies you want to use to implement your site, and it for the most part avoids the overhead of using ASP.NET server controls. You may find this to be a great option for your needs.

link|flag
sorry, Adam, my bad. Didn't mention, I am using Winforms, as I don't want to get into trouble of all webserver etc. – virtualmic Apr 14 at 6:47
No problem, since we're discussing desktop GUI I fully agree with and upvoted the other answer at stackoverflow.com/questions/746508/… – Adam Alexander Apr 14 at 6:52

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.