The ProgrammersTalk Community
Forum Register Search Today's Posts Mark Forums Read
Register

Go Back   The ProgrammersTalk Community > The ProgrammersTalk > General Talk


Welcome to the The ProgrammersTalk Community forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact us.
Reply
 
LinkBack Thread Tools    Display Modes   
  #11 (permalink)  
Old 09-14-2007, 05:34 PM
TeraTask's Avatar
TeraTask TeraTask is offline
PT Admin
Awards Showcase
Quality Tutorial Quality Tutorial Quality Tutorial 
Total Awards: 3
Join Date: Jun 2007
Location: Reno, NV
Posts: 440
iTrader: (0)
TeraTask is a splendid one to beholdTeraTask is a splendid one to beholdTeraTask is a splendid one to beholdTeraTask is a splendid one to beholdTeraTask is a splendid one to beholdTeraTask is a splendid one to behold
Icon2

C#? I don't like the whole .Net framework. I spent a few weeks and developed an application that uses a datasource object with a datagridview, connects to the internet to download files via multithreading, stored and parsed data in a CSV file, and loaded PDF files into a webbrowser with automatic resizing. I've subsequently been working on an application which involves storing data in CSV files and reading that, but needing to maintain associations of strings with unique identifiers. Why a CSV? Don't want to have to deal with having clients installing SQL Server 2005 and CSV is a good format, though not natively supported in any regard by .Net

During that grueling process I discovered:

1) The DataGridView object doesn't give you the same event options in the last row.
2) Creating a drag-and-drop feature within a listview is extremely difficult (yes, I did accomplish it).
3) The multithreading methodology was fairly complicated and took me quite a bit of time to grasp including the concept of delegates (which I conceptually reduced down to a wormhole between threads).
4) There was no relatively easy way to just display data in a table which is sortable.
5) To associate data with a unique identifier for usage in dropdowns, listviews, etc required creating an ArrayList of objects with ToString() overloaded -- you can't use Hashtable either! -- and dereferencing the passed objects in order to access them (I had to do that for drag-and-drop between listviews -- just find a tutorial on the web on how to do that!)
6) Dereferencing objects so that the compiler would compile could take just short of forever as you go down through the perverted hierarchy of encapsulated data.
7) And, I could build the same application in PHP in 1/10 th the time with better widgets (web widgets) which weren't buggy and maintained data association while having substantially easier access to data storage in a highly-optimized fashion.

I thought that I'd just switch over the VB, but MS is very excited that it's just as complicated to use as C# b/c of the .NET framework. In short, C# and the .NET framework offers little advantage over a web application (only thing I can think of is storing data locally, but it'd take less time to configure a computer to run a webserver using XAMPP!) and yet it takes substantially more to create a less elegant interface.

I have just one more reason to despise Microsoft, it's programmers, and all that company represents.

__________________
Jeremy Miller
Content Farmer - Optimized Automated Blog Posting

Digg this Post! Del.Icio.Us this Post! Technorati this Post! Furl this Post! Mister Wong this Post! Newsvine this Post! Spurl this Post! Reddit this Post! Netscape this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

   Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -7. The time now is 12:52 PM. Powered by vBulletin
Copyright © 2000 - 2007, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO © 2007 ProgrammersTalk Sedo - Buy and Sell Domain Names and Websites project info: programmerstalk.net Statistics for project programmerstalk.net etracker® web controlling instead of log file analysis


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50