BlackMael
|
Registered User
|
Analyst Developer working for a Telco in New Zealand.
I work in a small team within the company that develops line of business apps using Microsoft Visual Studio, primarily using VB.NET
|
|
Nov 18 |
awarded | ● Notable Question |
|
Nov 2 |
accepted | ASP.NET: Multiple Session objects in a single application |
|
Sep 26 |
accepted | How do you do inline delegates in vb.net like c#? |
|
Sep 20 |
awarded | ● Yearling |
|
Sep 15 |
awarded | ● Tumbleweed |
|
Sep 10 |
accepted | Jquery popups with load() |
|
Sep 10 |
comment |
Jquery popups with load() Hmm... Now I'm confused as it works for me.. |
|
Sep 10 |
comment |
Jquery popups with load() I created a page with the exact same html and jQuery and it worked perfectly. Or at least updated the popupContainer with the dummy text I'd placed in the correspending files it loads. Of course I having implemented any stylesheets. So is the problem actually CSS related? |
|
Sep 9 |
comment |
Jquery popups with load() Almost there but no banana... the first function passed to "ready" is ill-defined |
|
Sep 9 |
answered | Jquery popups with load() |
|
Sep 9 |
accepted | Subsonic Aggregation Constraint (”Having”) |
|
Sep 8 |
comment |
IE7 doesn’t render part of page until the window resizes or switch between tabs Why should the data matter? I have two screens built the same way. Only one seems to have issues with IE7. Granted the data is different but I still can't see why it affects things. IE7 does render the page if you resize the window or just switch between tabs (and not refresh the page at all). It is like IE7 gives up rendering the page when it first loads, and only some window event causes it to think "oops, I haven't finished rendering this page. I should render it properly now". Most frustrating. |
|
Sep 8 |
revised |
LINQ and VB.NET and the expression tree that is compiled is breaking SubSonic 3 edited tags |
|
Sep 8 |
asked | LINQ and VB.NET and the expression tree that is compiled is breaking SubSonic 3 |
|
Sep 8 |
comment |
lambda expressions in vb.net I agree with Richard. The original code from Rob is doing an assignment. It has to be broken out into a For Each loop. |
|
Sep 7 |
comment |
SubSonic3 VB.Net Add,Update, FirstOrDefault Problems Or perhaps the following works... cat = Category.Find(Function(item) item.CategoryID = 1).FirstOrDefault() |
|
Sep 7 |
comment |
SubSonic3 VB.Net Add,Update, FirstOrDefault Problems Okay. But as I said, maybe you should be using SingleOrDefault()? My example above (2) works for me, I am not sure why it wouldn't for you. |
|
Sep 5 |
revised |
SubSonic3 VB.Net Add,Update, FirstOrDefault Problems deleted 44 characters in body |
|
Sep 5 |
answered | SubSonic3 VB.Net Add,Update, FirstOrDefault Problems |
|
Sep 5 |
revised |
IE7 doesn’t render part of page until the window resizes or switch between tabs formatting |
|
Sep 1 |
answered | Subsonic 3.0.0.3 not generating parameters for stored procedures |
|
Aug 29 |
comment |
Error Handling Should I throw exception? Or handle at the source? Of course you could also argue that the caller may not expect exceptions to be throw, and it doesn't bother wrapping the call with a Try Catch. Either way you cannot really force the caller to do anything at all. So it is a moot point to use the actions of the caller as a deciding factor of returning nulls or throwing exceptions. |
|
Aug 29 |
comment |
Error Handling Should I throw exception? Or handle at the source? It's up to the caller to understand the expected results from calling the function. If the caller ignores the fact the signature/documentation states the function can return nulls, then the caller is at fault not the function. Returning nulls is perfectly valid in this case IMOH. |
|
Aug 29 |
answered | Subsonic Aggregation Constraint (”Having”) |
|
Aug 29 |
awarded | ● Popular Question |
|
Aug 26 |
comment |
SubSonic2.2 SharedDbConnectionScope and TransactionScope Transaction Confusion Is the order of SDCS and TS the error or is the error in SDCS itself and the order in the docs correct. Note, for now putting the TS wrapping the SDCS works for me, where SDCS wrapping the TS didn't work in terms of rolling back when it should. |
|
Aug 26 |
comment |
SubSonic2.2 SharedDbConnectionScope and TransactionScope Transaction Confusion The order of SharedDbConnectionScope (SDCS) and TransactionScope (TS) is the confusing or buggy bit. The docs state SDCS wraps the TS. But that doesn't seem to work. So that is a bug. The ExecuteTransaction overloads have SDCS wrapping the TS so therefore that is also a bug. I couldn't see where the overloads where actually committed but that may be because I didn't look hard enough as opposed to a bug. The test code I looked at had the TS wrapping the SDCS. So from I conclude that is not a bug. The confusing bit is where the error is. |
|
Aug 25 |
asked | SubSonic2.2 SharedDbConnectionScope and TransactionScope Transaction Confusion |
|
Aug 22 |
comment |
SubSonic 3 / ActiveRecord - Easy way to compare two records? The best bet may be to add a hashing function for the columns of a table into the t4 templates. Then it would be a very simple compare. Building a suitable hashing routine would then become the problem. :( Not sure how well that would work hence I've mentioned it as a comment and not an answer. |
|
Aug 22 |
answered | Subsonic 3 Simple Repository And Transactions |
|
Aug 18 |
comment |
T-SQL query to flag repeat records That's the plan once I manage to get my dev machine up and running so that I can try out your solutions |
|
Aug 18 |
comment |
T-SQL query to flag repeat records It ignores LineNumber IS NULL, but thats okay. I left IsRepeat for NULLs just in case I needed to care. On the most part I think I only really need to default to FALSE if LineNumber IS NULL |
|
Aug 18 |
comment |
T-SQL query to flag repeat records It also produces an intriguing execution plan... For those sad enough to be interested. Damn, I guess I'm sad enough since I looked already.. |
|
Aug 18 |
comment |
T-SQL query to flag repeat records Wow! I really must get on top of CTEs! Examples like this truly push my synapses while I get use to them. Looking forward to point this one through its paces.. :) |
|
Aug 18 |
comment |
T-SQL query to flag repeat records Sorry, this does not take into account that a Job is not a repeat if the only other job with the same line number within 7 days is a repeat. |
|
Aug 17 |
revised |
T-SQL query to flag repeat records added test data; added 4 characters in body |
|
Aug 17 |
comment |
T-SQL query to flag repeat records LineNumber is not part of the Primary Key CreatedOn has a time component and is essentially smalldatetime I'll post some data for you very shortly I'm not sure how your query works yet, but on a very limited set of data I had cooked up it seems to work :) |
|
Aug 17 |
comment |
IE7 doesn’t render part of page until the window resizes or switch between tabs I'll add the css and html tomorrow as I currently do not have the code with me this evening |
|
Aug 17 |
asked | T-SQL query to flag repeat records |
|
Aug 16 |
comment |
SubSonic 3 / ActiveRecord: Find() on non-primary key field failing (VB.NET only) Oh dear... The problem is the expression tree created. The basically myOrder.CustomerID = 1 becomes... p => Convert((p.CategoryID = ConvertChecked(4))) Where in C# the same expression becomes... p => (p.CategoryID = Convert(4)) |
|
Aug 16 |
comment |
SubSonic 3 / ActiveRecord: Find() on non-primary key field failing (VB.NET only) Has this been raised as an issue on github? I'll have a wee nosey at the problem. I gather that CustomerID and OrderID are integers. |
|
Aug 16 |
revised |
IE7 doesn’t render part of page until the window resizes or switch between tabs added tag |
|
Aug 16 |
revised |
IE7 doesn’t render part of page until the window resizes or switch between tabs added a link to a related question |
|
Aug 16 |
comment |
IE7 doesn’t render part of page until the window resizes or switch between tabs Except other pages with the exact same declaration of stylesheets does not have the same problem. In fact the page with the problem will occasionally render just fine without needing to resize or switch tabs. Though once a page is having issues it generally does keeps having issues. There is no hard and fast rule that I can determine that can consistantly determine if the page will fully render correctly. |
|
Aug 16 |
asked | IE7 doesn’t render part of page until the window resizes or switch between tabs |
|
Jul 20 |
answered | VB.net can’t find by string |
|
Jul 18 |
asked | Where is the SubSonic 3 Test Database “SubSonic”? |
|
Jun 13 |
awarded | ● Popular Question |
|
Jun 4 |
awarded | ● Notable Question |
