Andrew Bullock

4,398
reputation
417 views

Registered User

name Andrew Bullock
member for 1 year
seen 4 hours ago
website
location Nottingham, UK
age
2d
awarded  Mortarboard
Dec
2
asked Storing an ordered child collection in NHibernate
Dec
1
comment C# User Controls: access controls properties
dirty webforms madness
Dec
1
comment What’s the value of i++ + i++?
id have said it was 9 :s
Dec
1
answered C# User Controls: access controls properties
Nov
30
awarded  Popular Question
Nov
23
comment input type=submit text vertical alignment in FireFox
ha! victory! nice one :)
Nov
16
comment Generic Method Executed with a runtime type.
shame this is the only solution, meh
Nov
12
answered .Assembly / GetExportedTypes throws FileNotFoundException
Nov
12
comment combining two lamba expressions in c#
aceness! seems to work! - not that i doubted you ;)
Nov
12
comment combining two lamba expressions in c#
wow! thanks! I'll check this out shortly :)
Nov
12
comment combining two lamba expressions in c#
meh, im stuck. How do I build the Expressions once traversed up the tree to the secondParam? Do i need Expression.PropertyOrField?
Nov
11
comment combining two lamba expressions in c#
youre right, i could do, it just feels hacky. Im going to spike both approaches and see which one feels best. An answer might have been that its really simple to combine the expressions, in which case that would have been preferable.
Nov
11
comment combining two lamba expressions in c#
your first point of "obtain the expression tree that you would have obtained" is correct. I want the expression as If id just gone gp => gp.Parent.Child.Name in the first place. I don't actually need to invoke this, I have a vistor elsewhere which will examine it which is what i meant by "i dont want nested calls". I cant have a wrapper which invokes both in a chain, because i won't be invoking ;)
Nov
11
comment combining two lamba expressions in c#
This sounds like exactly what I need. I understand all that in principle, but where my knowledge breaks down is how exactly to do step 5, how to build the new lambda. Ill google for Matt Warren's blog. @Marc id be interested to see it :)
Nov
11
asked combining two lamba expressions in c#
Nov
6
comment invoking delegate with generics arguments in c#
interfaces were the answer, just needed to stop being daft!
Nov
6
comment invoking delegate with generics arguments in c#
could i not use an Expression<Action<T>> instead, and then modify the expression to the correct T when it comes to apply it?
Nov
5
comment invoking delegate with generics arguments in c#
thanks for the help, see my comment @Tony and the updated question
Nov
5
comment invoking delegate with generics arguments in c#
hmm thanks for the info, looks like im going to be out of luck. ive updated the question with a bit more info, think i may have slightly mislead you by oversimplifying the problem :(
Nov
5
revised invoking delegate with generics arguments in c#
more info; added 90 characters in body
Nov
5
asked invoking delegate with generics arguments in c#
Nov
5
comment input type=submit text vertical alignment in FireFox
I am, the only thing applying to these elements is margin: 0; padding: 0;
Nov
5
comment input type=submit text vertical alignment in FireFox
although i could have missed the magic combination, I've found fiddling with all those things only causes another problem in another browser, and i just chase those round forever!
Nov
5
revised input type=submit text vertical alignment in FireFox
added missing css
Nov
5
asked input type=submit text vertical alignment in FireFox
Nov
3
awarded  Popular Question
Nov
3
awarded  Notable Question
Nov
2
comment SMTP relaying in C#?
oo this sounds promising, got any more info on how to do this?
Nov
2
asked SMTP relaying in C#?
Nov
2
awarded  Popular Question
Oct
27
comment CSS: Margin-top when parent’s got no border
woot, just saved me from going mad with my disappearing margin!
Oct
27
answered jquery plugin default option modification once applied
Oct
27
comment jquery plugin default option modification once applied
i'd prefer a solution that doesn't interfere with other code (i.e. your code removes all click event listeners from my element, regardless of whether they had anything to do with alertOnClick or not)
Oct
27
comment jquery plugin default option modification once applied
this will make it alert with both messages
Oct
27
comment jquery plugin default option modification once applied
i dont know what #p1 is when i first assign "hello", so i can't exclude it there with not. Therefore calling the same function again will just attach the event listeners twice :(
Oct
27
asked jquery plugin default option modification once applied
Oct
23
awarded  
Oct
21
comment linux based submission script for CS student source code
sounds like you should have set this as the coursework ;)
Oct
19
comment Nhibernate - Mapping List doesn’t update List indexes
its because of the inverse=true, not sure what the best solution is yet, having exactly the same issue at the moment. stay tuned
Oct
17
awarded  Yearling
Oct
15
comment browser textbox autocomplete event, when does this happen?
This works perfectly in every case except when you hit Back in Chrome. For this, i had to add a 100ms delay inside my window load function. Otherwise, fine :)
Oct
14
asked browser textbox autocomplete event, when does this happen?
Oct
13
comment Cross-browser techniques for disabling password caching
what a ridiculous suggestion
Oct
8
asked Managing site deployments between demo/staging/live on production servers
Oct
7
comment HTML <sup /> tag affecting line height, how to make it consistent?
see my comment to his answer
Oct
7
comment HTML <sup /> tag affecting line height, how to make it consistent?
yeah I understand if i need more room for one line, for consistency i need to add extra room to the others, thats obvious. What i'm saying is line-height doesnt fix it, this increases the space yes, but there is still extra space with the sup
Oct
7
comment HTML <sup /> tag affecting line height, how to make it consistent?
vertical-align fixed it, thanks. Even a massive line-height 300%+ does not fix it in IE8, Chrome 3 or FF 3.5. I still get 1-2px of difference.
Oct
7
comment HTML <sup /> tag affecting line height, how to make it consistent?
i said in the question that this doesnt solve the problem. Ive added clarification incase you misunderstood
Oct
7
revised HTML <sup /> tag affecting line height, how to make it consistent?
added 496 characters in body