1,730 reputation
1849
bio website orthogonaltonormal.com
location Johnstown, PA
age 31
visits member for 4 years, 1 month
seen 4 hours ago
stats profile views 261
//TODO Glorious Lies

Apr
15
comment How do I create an appDomain and run my application in it
That's more or less what I've seen in the examples I saw elsewhere, but doesn't provide any of the information I'm still lacking. Do I just call Application.Run(new MyForm)? Do I chop out all the existing startup code from my Main method, plunk it in a new method, and call that to start my app? None of the above because I am even more confused than I think I am?
Apr
15
asked How do I create an appDomain and run my application in it
Apr
5
accepted Why does my application look for both MyApp.exe.config and MyApp.config to find the app.config file
Apr
2
awarded  Yearling
Mar
31
answered Why does my application look for both MyApp.exe.config and MyApp.config to find the app.config file
Mar
25
revised Why does my application look for both MyApp.exe.config and MyApp.config to find the app.config file
Changed subject in hope that different phrasing might cause someone to recognise the issue
Mar
24
revised Why does my application look for both MyApp.exe.config and MyApp.config to find the app.config file
Edited paths to fix display problem
Mar
24
asked Why does my application look for both MyApp.exe.config and MyApp.config to find the app.config file
Mar
18
accepted Is there a way to remove Alt-character shortcuts from controls at runtime?
Mar
18
comment Is there a way to remove Alt-character shortcuts from controls at runtime?
@nobugz Sorry, I got confused and thought your "recreate the dialog" comment was a suggestion for an alternate implementation approach, not simply a reply to Jon S.
Mar
18
comment Is there a way to remove Alt-character shortcuts from controls at runtime?
@nobugs CM = Configuration Management. If I created MyDialogEditable and MyDialogReadOnly, then every time I had to change the data displayed I'd need to remember to make the change in two places. It's copy/paste code at the class level.
Mar
18
comment Is there a way to remove Alt-character shortcuts from controls at runtime?
@Jon Seigel There aren't any cases where I'd need to restore them, I was just hoping for a less ugly looking implementation than recursively walking the Controls property to hunt down and stomp on each label individually.
Mar
18
comment Is there a way to remove Alt-character shortcuts from controls at runtime?
@nobugz Thanks but the last thing I want is to give myself CM problems the first time I forget to make the same change to both dialogs.
Mar
18
asked Is there a way to remove Alt-character shortcuts from controls at runtime?
Mar
17
comment Filter DataTable to show only the most recent transaction for each user
OK. It was easier for me to just change the method creating the DataTable to make the selection there...
Mar
17
accepted Filter DataTable to show only the most recent transaction for each user
Mar
17
asked Filter DataTable to show only the most recent transaction for each user
Mar
16
accepted DataGridView that always has one row selected
Mar
16
comment DataGridView that always has one row selected
That prevents selecting multiple rows. IT does not prevent the user from control clicking the selected row to clear the selection.
Mar
16
comment DataGridView that always has one row selected
The same reason you always need to have a radio button selected. I'm using a DGV because the total number of choices is large enough to be akward without scrolling (20 choices x 20 pixel tall images).