Peter LaComb Jr.

479
Reputation
96 views

Registered User

Name Peter LaComb Jr.
Member for 1 year
Seen 12 mins ago
Website
No.
Location Jacksonville FL
Age 30
Lotus Notes/Domino, LANSA and .Net developer.
Nov
24
comment Why I can only execute a stored procedures two times?
Also, the full text of the error message (cleansed of any private data) is helpful.
Nov
17
comment What could affect the location of text outside of <div>…</div>?
Firefox would prefer that you use / instead of \ in the path to your CSS for one thing.
Nov
17
comment What could affect the location of text outside of <div>…</div>?
Add //<![CDATA[ //]] blocks around the contents of your upper script blocks to see more useful stuff in the validator.
Nov
10
comment How should I call this native dll function from C#?
The only time I've seen a debugger skip lines when it shouldn't is when the compiled code doesn't match the source. Are you certain that you're binding to the right version of the assembly?
Oct
30
accepted MSBuild Batching - Can’t figure out how to get a target to be run only for some Solutions
Oct
29
answered MSBuild Batching - Can’t figure out how to get a target to be run only for some Solutions
Oct
29
comment MSBuild Batching - Can’t figure out how to get a target to be run only for some Solutions
That is a perfectly good way to accomplish what I wanted.
Oct
27
comment MSBuild Batching - Can’t figure out how to get a target to be run only for some Solutions
Ok - I found the BeforeCompileSolution task, which is run per solution, but the only thing I see identifying the solution is $(Solution), which is the full path & filename of the solution, and doesn't compare directly with '$(BuildProjectFolderPath)/../../x86 Installer/x86 Installer.sln'
Oct
27
revised MSBuild Batching - Can’t figure out how to get a target to be run only for some Solutions
Added sample of what I've tried.
Oct
27
asked MSBuild Batching - Can’t figure out how to get a target to be run only for some Solutions
Sep
16
revised SCOPE_IDENTITY And Instead of Insert Trigger work-around
updated to indicate that the output clause is broken with instead of insert trigger.
Sep
16
comment SCOPE_IDENTITY And Instead of Insert Trigger work-around
Output also returns null when using instead of insert triggers.
Sep
16
comment SCOPE_IDENTITY And Instead of Insert Trigger work-around
You can't really say that scope_identity isn't affected by trigger code - it returns null if you use an 'instead of insert' trigger.
Sep
16
comment SCOPE_IDENTITY And Instead of Insert Trigger work-around
Thanks Joel - didn't see my own sloppy typing.
Sep
16
asked SCOPE_IDENTITY And Instead of Insert Trigger work-around
Sep
16
awarded  Yearling
Jul
9
comment I need the sum of two columns in a view.
Why wouldn't you just add a column that sums the programmatic names of the other two columns and then put totals on it? Then a simple File - Export of the view is all that is needed.
Jun
29
comment Bootstrapper Prerequisite ordering.
Your last statement is backwards. Product A depends on B and so B is installed first. You get a +1 if you fix it.
Jun
16
comment Convert bitmaps to one multipage TIFF image in .NET 2.0
Excellent answer. Could only be more complete if you describe how you arrived at it (where you learned it if not from trial and error) since the MSDN docs make it next to impossible to understand.