rob_g

884
reputation
67 views

Registered User

name rob_g
member for 1 year
seen 8 hours ago
website
location Brisbane, Australia
age 33
Dec
5
comment search in LinqToSQLClasses
if (db.table.SingleOrDefault(x => x.ID == id) == null) would be faster.
Dec
5
accepted How to use parameterized queries in vb.net?
Dec
5
answered How to use parameterized queries in vb.net?
Dec
1
answered Books for an aspiring software architect.
Dec
1
answered How to help a struggling newbie do a better job?
Dec
1
answered SQL: Auto Increment question
Nov
22
comment Instantiating TransactionScope returns null
Silly me. The erroring was aborting the transaction, so of course my debug logs weren't getting written (to the database). The actual cause was a difference between the import specification and the data being import. A field that should never have been null was in fact null. I never picked it up in testing becuase I had a correct to the spec sample file to test with, and not real data. Sounds too obvious now.
Nov
22
revised Instantiating TransactionScope returns null
deleted 1030 characters in body
Nov
22
revised Instantiating TransactionScope returns null
added 916 characters in body; added 114 characters in body
Nov
22
comment Instantiating TransactionScope returns null
I'll throw some more debug code in and see how I go :)
Nov
22
revised Instantiating TransactionScope returns null
deleted 8 characters in body
Nov
22
revised Instantiating TransactionScope returns null
added 264 characters in body; added 14 characters in body; deleted 8 characters in body; added 213 characters in body
Nov
22
comment Instantiating TransactionScope returns null
Happy to show the code if it helps, but that's the line of code that is failing. The surrounding lines are debug lines. I've checked the MSDTC settings on all machines and they are identical.
Nov
21
asked Instantiating TransactionScope returns null
Nov
13
answered How Much Designing Should Go On Before Any Coding Takes Place?
Oct
14
comment Visual Studio Development Server not updating css and javascript?
Thank you! clearing my browser cache fixed the problem. I wish I tried this three days ago :)
Oct
14
asked Visual Studio Development Server not updating css and javascript?
Oct
9
comment Ensuring unique numbers from a sql server database
at the moment, 2000.
Oct
9
comment Ensuring unique numbers from a sql server database
because the counter has to generate a number that resets every day, month, or other customer defined period. different customers have incident numbers that reset daily and some never reset. The incident number gets placed into a field on the incident table. that field isn't unique, just indexed. the existing stored proc has been in place for over 10 years :)
Oct
9
comment Ensuring unique numbers from a sql server database
thanks for the feedback. the schema is outside our control, and my example has made up field names and isn't a direct copy of the actual sproc :)
Oct
8
asked Ensuring unique numbers from a sql server database
Oct
7
comment Stopping display of custom dialog boxes in WiX uninstall
<InstallUISequence> <Show Dialog="InstallDlg" After="WelcomeDlg" Overridable="yes" /> </InstallUISequence> Is what I am doing to display my custom UI element.
Oct
7
comment Stopping display of custom dialog boxes in WiX uninstall
I'm new to Wix. I'm at a loss to follow what you mean. I'm not installing a custom action, I'm defining a UI element to display a custom screen to get data to update web.config. I then use properties (eg [DATABASENAME]) to update connectionString in web.config, using util:XmlFile ... command from WiXUtilExtension.
Oct
6
comment Calling WCF with netMsmqBinding inside TransactionScope stopping transaction.
thanks marc. you're correct. I don't want the transaction behavior (especially as one of the services is an email sending service). I'll try that attribute.
Oct
6
asked Stopping display of custom dialog boxes in WiX uninstall
Oct
6
comment Should you build components every time you build a main app
In this case, the ocx uses binary compatiability and is part of the compile process. The ocx gets built then the exe gets built. The second case 'sort of' applies, in that the ocx is only updated once or twice every year. The most recent update being for performance. In all cases the interface doesn't change and binary compatiability is preserved. The build process also zips up all components in a release package, so it's useful to include the ocx in the build to ensure the application always uses the most up-to-date (and performant) version
Oct
6
comment Should you build components every time you build a main app
In Mike's particular case above, the latest version of the ocx should always be used. The ocx provides a communication layer to various versions of the same VB6 application (different versions for different customers).
Oct
6
answered Calling WCF with netMsmqBinding inside TransactionScope stopping transaction.
Oct
6
asked Calling WCF with netMsmqBinding inside TransactionScope stopping transaction.
Sep
12
awarded  Yearling