RE: first chance exception

2011-10-12 Thread David Kean
When the offending line throws, paste the exception and the stack. Before you copy the stack, right click on the Call Stack window and choose Show External Code (or something like that)). From: ozdotnet-boun...@ozdotnet.com [mailto:ozdotnet-boun...@ozdotnet.com] On Behalf Of Ian Thomas Sent: We

RE: first chance exception

2011-10-12 Thread Ian Thomas
OK, I saw the small note about its using the IE Cache location. Rather than clear it, I set it to another location - and bingo! I see log entries. There are 11 of them, and I assume the System.XML one is the one I want to look at. Here's a part of it, which indicates to me that the binding occ

RE: first chance exception

2011-10-12 Thread Greg Keogh
>Well, fuslogvw is a problem - Settings has logging disabled, and for the life of me I can't enable anything (or find online how to do it). That drove me mad too a few weeks ago, turns out I had to run it as an Administrator to enable the logging. It's a weird utility - Greg

RE: first chance exception

2011-10-12 Thread Ian Thomas
David This is with a breakpoint set a few lines below the "offending" line, but seems the same if it's at the same line - > XSDTest2.exe!XSDTest2.XSDTest.Program2.Main(String() args = {Length=0}) Line 64 Basic [Native to Managed Transition] [Manag

RE: first chance exception

2011-10-12 Thread Ian Thomas
Duh - how dumb can I be :-( _ Ian Thomas Victoria Park, Western Australia _ From: ozdotnet-boun...@ozdotnet.com [mailto:ozdotnet-boun...@ozdotnet.com] On Behalf Of Joseph Clark Sent: Thursday, October 13, 2011 11:44 AM To: ozDotNet Subject: Re: first chance exception Look

RE: first chance exception

2011-10-12 Thread David Kean
Can you paste the call stack when the first chance exception occurs? From: ozdotnet-boun...@ozdotnet.com [mailto:ozdotnet-boun...@ozdotnet.com] On Behalf Of Joseph Clark Sent: Wednesday, October 12, 2011 8:03 PM To: ozDotNet Subject: Re: first chance exception Try using the Assembly Binding log

Re: first chance exception

2011-10-12 Thread Joseph Clark
Looks like you need to run it with escalated privileges on Vista/Win7 in order for the settings to be configurable. On Thu, Oct 13, 2011 at 2:42 PM, Ian Thomas wrote: > Well, fuslogvw is a problem – Settings has logging disabled, and for the > life of me I can’t enable anything (or find online

RE: first chance exception

2011-10-12 Thread Ian Thomas
Well, fuslogvw is a problem - Settings has logging disabled, and for the life of me I can't enable anything (or find online how to do it). I have VS2010, VS2008 installed and all's fine. _ Ian Thomas Victoria Park, Western Australia

Re: first chance exception

2011-10-12 Thread Joseph Clark
Try using the Assembly Binding log viewer (fuslogvw) to see where it is binding the serializer assemblies from (make sure it is configured to log all binds to disk). On Thu, Oct 13, 2011 at 1:54 PM, Ian Thomas wrote: > Looked e

RE: first chance exception

2011-10-12 Thread Ian Thomas
Looked everywhere under my user account, for all DLLs. But even w/o locating it/them, should Debug show the first chance exceptions after I have done the generation? I would have thought the message would disappear. _ Ian Thomas Victoria Park, Western Australia _ From: ozdot

Publish Web project....

2011-10-12 Thread Anthony Mayan
Just curious..does any use the Publish feature when deploying a web project? Is it reliable? I always manually ftp what is required but i guess i should use the publish feature if it works. Anthony

RE: first chance exception

2011-10-12 Thread David Kean
Where are you looking? I believe they generate them in the temp directories somewhere. From: ozdotnet-boun...@ozdotnet.com [mailto:ozdotnet-boun...@ozdotnet.com] On Behalf Of Ian Thomas Sent: Wednesday, October 12, 2011 5:18 PM To: 'ozDotNet' Subject: first chance exception As I understand the

first chance exception

2011-10-12 Thread Ian Thomas
As I understand the documentation, Generate Serialization Assembly should produce a DLL ("Serialization assemblies are named TypeName.XmlSerializers.dll"). Is that right? I don't see any DLLs, and I still receive the The FileNotFoundException (which are first-chance handled exceptions) in debug.

RE: monitor stand

2011-10-12 Thread Ian Thomas
Let me know how it works out, guys - I got this from a referral / recommendation from one of the SMBIT crowd (Don Tibbits, Brainbox Solutions , in Melbourne). _ Ian Thomas Victoria Park, Western Australia _ From: ozdotnet-boun...@ozdotnet.c

RE: monitor stand

2011-10-12 Thread Tom Gao
That's pretty good ! thanks Ian ! From: ozdotnet-boun...@ozdotnet.com [mailto:ozdotnet-boun...@ozdotnet.com] On Behalf Of Ian Thomas Sent: Wednesday, 12 October 2011 11:55 PM To: 'ozDotNet' Subject: RE: monitor stand This is $75 from local suppliers, I'm told - 3-monitor arm, for up to 24"

Re: monitor stand

2011-10-12 Thread Preet Sangha
Thank you for this info for me it's just up the road :-) On 13 October 2011 01:55, Ian Thomas wrote: > This is $75 from local suppliers, I’m told – 3-monitor arm, for up to 24” > screens - > http://www.laserco.net/products/pc-accessories/pc-accessories/AO-ARM3B - > and you can put another b

RE: monitor stand

2011-10-12 Thread Ian Thomas
This is $75 from local suppliers, I'm told - 3-monitor arm, for up to 24" screens - http://www.laserco.net/products/pc-accessories/pc-accessories/AO-ARM3B - and you can put another bank (3 screens) on top. Or do you have something else in mind? _ Ian Thomas Victoria Park, Western Austr

OT: monitor stand

2011-10-12 Thread Tom Gao
Hi Guys, I'm looking to get a Hex monitor stand. Does anyone know a seller local in Australia. Most good quality stand that I find online cost an arm or leg. Usually starting $600 and up the ones that are cheaper will cost an arm and leg to get shipped out here. Thanks in advance. Tom

Re: Generics/Type question

2011-10-12 Thread Les Hughes
Michael Minutillo wrote: Try this: public void SomeMethod() { var vars = new object(); var genericMethod = GetType().GetMethod("load"); var types = new[] { typeof(Settings), typeof(CatPictures), typeof(OtherMemes) }; foreach(var type in types) { genericMethod.MakeGenericMethod(

RE: XMLSerializer error

2011-10-12 Thread Ian Thomas
Thanks, guys (I intended to reply to Mark earlier, with the Sam Kekovich response: "You know it makes sense" - but usual, David gives the definitive explanation and remedy). I have always ignored 'first chance exception' but now I know what