1
vote
What does this do? tasklist /m “mscor*”
It would seem to list all processes using modules like mscoree.dll, mscorwks.dll, etc. This would be .NET processes and possibly processes hosting .NET plug-ins.
…
2
votes
.NET Table Adapters: Get vs. Fill?
A particular gotcha of Fill, if the table already contains data is that you could get unique index exceptions when, for example, the query returns a row whose primary key is already in the table. …
0
votes
How to show compulsory fields on a windows form
I would use the ErrorProvider control, possibly with a different icon to represent "required" as opposed to "in error". I would also ensure the fields start with error icon shown next to them and t …
0
votes
Is there a .NET equalent to SQL Servers newsequentialid()
I've been lead to believe that random Guids can be beneficial to performance in some use cases. Apparently inserting to random pages can avoid contention that would otherwise occur in the end page …
