Viewing 15 posts - 76 through 90 (of 15,381 total)
I gotcha! In the little test I tried, I could see which block ran, and could see that the outter catch did not actually catch anything, so I just...
October 30, 2019 at 9:20 pm
My point was that the inner catch did the eating if the error was in the inner try, not the outter, unless I'm not getting the same situation coded....
October 30, 2019 at 8:46 pm
I just tried something similar and it seems that the outer catch wouldn't catch anything that the inner catch eats. I could be wrong, I just couldn't duplicate the...
October 30, 2019 at 8:25 pm
For the meat cookers: https://www.engadget.com/2019/10/25/harvard-barbecue-desora-kamado-joe-cinder-grills/
Interesting article. Thanks for thinking of us Steve. I find it kind of funny that they talk about how Traeger and other pellet smokers...
October 30, 2019 at 8:21 pm
I think many of the issues with the code sample or screenshot above are from many more people coding that just don't have good skills or habits. They make...
October 30, 2019 at 4:45 pm
Haha Jeff. I do spend a lot more time than I would like writing managed code. But this is the same third party vendor's code who has this as a...
October 30, 2019 at 1:46 pm
Jo Pattyn wrote:To the person with the crystal ball, any prediction when SSIS projects will work properly in Visual Studio 2019?
1976.
@=)
But they broke it again in 2022 so they released...
October 29, 2019 at 6:47 pm
Oh boy how I love vendor code. I am not exaggerating to say I just saw this.
try
{
OneLineOfCode;
try
{
AnotherLineOfCode;
try
{
ThirdLineOfCode;
}
catch(Exception ex) {}
}
catch(Exception ex) {}
}
catch(Exception ex) {}
It is bad enough that...
October 22, 2019 at 9:21 pm
I can see the answer as misleading. Edited it.
I wouldn't say it is misleading but it certainly had me scratching my head. The fix leaves it ambiguous enough...
October 15, 2019 at 8:32 pm
Without persisted, this doesn't work. That was what the question tested, not if you can find a way to index a float column.
Right, but the "correct" answer states "An...
October 15, 2019 at 6:22 pm
There are two answers that are close but none of them are actually correct. Great question topic though.
October 15, 2019 at 1:21 pm
Good question. I am curious though why would somebody think this wouldn't work.
October 8, 2019 at 12:53 pm
Was working on a pretty complicated gaps and islands problem with multiple anchors and wanted a couple references to help me focus the problem. I remembered Dwain Camps had a...
October 4, 2019 at 7:00 pm
I would use a tally table here instead of either loop. Whenever you start using loops to query data you are very likely not doing it the most efficiently. Read...
October 4, 2019 at 6:57 pm
Yeah I am in the same boat. They improved things quite a bit around the same time the traffic around here dropped significantly. Funny how often you and...
October 2, 2019 at 1:40 pm
Viewing 15 posts - 76 through 90 (of 15,381 total)