| bio | website | ta.speot.is |
|---|---|---|
| location | Brisbane, Australia | |
| age | 23 | |
| visits | member for | 3 years, 4 months |
| seen | 4 mins ago | |
| stats | profile views | 1,464 |
I try to share knowledge of the arcane on my blog - I invite you to check it out.
|
15h |
comment |
Nhibernate throwing Session is closed Doesn't CurrentSessionContext.Unbind(SessionFactory).Dispose(); dispose the session factory and not the session? |
|
1d |
comment |
Why am I allowed to have two indices with the same name? +1 for RTFM.... |
|
2d |
comment |
Error 9 error LNK2001: unresolved external symbol __imp__AdjustWindowRect@12 msdn.microsoft.com/en-us/library/windows/desktop/… Library User32.lib Make sure you're linking user32.lib. |
|
2d |
comment |
C# Entity Framework 5.0 Generic LINQ as long as the primary key for the entity type specified by T has a single column Not true: msdn.microsoft.com/en-us/library/gg696418(v=vs.103).aspx But correct that it is a brittle approach. |
|
2d |
comment |
C# Entity Framework 5.0 Generic LINQ This would probably work if you have a base entity type, and add the trait where T : BaseEntity. Then you could just use R.ID. |
|
2d |
comment |
Analyze BSOD WHEA_UNCORRECTABLE_ERROR WIN8 Driver It looks like it originated in intelppm, which I believe is Process Power Management. See eightforums.com/bsod-crashes-debugging/… for some PPM related features you can disable (SpeedStep, C-State). |
|
May 18 |
comment |
Must declare a body because it is not marked abstract, extern, or partial Did you even read the error message? |
|
May 16 |
answered | execute “sp_MSforeachtable” (SQL Server 2008 R2) from Excel 2003 using ADO |
|
May 16 |
comment |
execute “sp_MSforeachtable” (SQL Server 2008 R2) from Excel 2003 using ADO msdn.microsoft.com/en-us/library/aa263540(v=vs.60).aspx |
|
May 16 |
comment |
MS Access query from VB6 too long? Yes, but there's no using statement or IDisposable equivalent in VB6. |
|
May 16 |
comment |
MS Access query from VB6 too long? I know you are working with VB, but believe it to be the same as in C#. VB6 is not VB .NET, dbOpenSnapshot suggests DAO not ADO and definitely not ADO .NET. |
|
May 16 |
answered | Import MySQL db into MS Azure |
|
May 16 |
comment |
c# System.InvalidOperationException: This OracleTransaction has completed; it is no longer usable +1 for brevity. |
|
May 15 |
comment |
Programmatically uninstall Internet Explorer @IAMHERE which will give error. Error: 740 Elevated permissions are required to run DISM. Use an elevated command prompt to complete these tasks Yeah, being able to uninstall software system-wide is kind of an Administrator-y thing... |
|
May 15 |
comment |
Using IN with multiple columns You can use a table valued parameter to pass arrays of things, and not just with DataTables and stored procedures mssqltips.com/sqlservertip/2112/… |
|
May 15 |
comment |
Programmatically uninstall Internet Explorer Unlikely you can remove it from pre-Vista, but look at dism and itninja.com/question/… |
|
May 14 |
comment |
System.AccessViolationException in .NET 4.0 while connecting to SQL Database What's the connection string? Are you doing something underhanded with it? |
|
May 13 |
awarded | Revival |
|
May 13 |
comment |
error message 7391, msdtc is enabled and settings are per desire, but still facing the issue According to quazihasan.blogspot.com.au/2010/05/… GoDaddy doesn't support MSDTC in shared hosting environments. |
|
May 12 |
comment |
Memory manager for cross DLL allocation/deallocation Take a look at how Windows handles resources. E.g. OpenFile/CloseHandle. |