- Feature Articles
- CodeSOD
- Error'd
-
Forums
-
Other Articles
- Random Article
- Other Series
- Alex's Soapbox
- Announcements
- Best of…
- Best of Email
- Best of the Sidebar
- Bring Your Own Code
- Coded Smorgasbord
- Mandatory Fun Day
- Off Topic
- Representative Line
- News Roundup
- Editor's Soapbox
- Software on the Rocks
- Souvenir Potpourri
- Sponsor Post
- Tales from the Interview
- The Daily WTF: Live
- Virtudyne
Admin
Make a loop and access the controls through Reflection XD
Admin
Make an array of the gridview and textbox objects then iterate across that. Yes, I'm kidding.
Edit Admin
Engineering Fortran code Base of many decades. Insure miss the feeling if seeing WTFs that exceed the necessities born out of a lack of automated testing and many colleague's love for mutable global state 🥲
Admin
I once worked on a Fortran code base with an ancient compiler that had no warnings for global declarations that didn't make sense. As a result there was a bug in which separate compilation units attempted to work with the global variable LFLAG. One of them declared the global as LFAG and therefore the unit only worked with the local automatic variable LFLAG.
That program took about 55 minutes to compile.
Edit Admin
Are people allergic to some good ol' ForEach?