Re: Problem with GetFiles() or me?

2010-03-05 Thread Mark Hurd
Workaround: D:. Adding the explicit current directory causes the returned strings to be valid paths. Do you want to add the bug to Connect? -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.) (BTW Typos fixed below.) On Sat, Mar 6, 2010 at 1:35 AM, Mark Hurd markeh...@gmail.com wrote: On Sat, Mar 6

Re: upgrading a VB6 Class to Dot Net, then exposing it back to VB6 via Com Interop - there has to be an easier way

2010-06-12 Thread Mark Hurd
-9f0f-f06794c21d23 As implied by the comments you can specify the InterfaceId and EventsId as well if needed, especially using ComClass. -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.) On Sun, Jun 13, 2010 at 12:10 AM, Kirsten Greed kirst...@jobtalk.com.au wrote: Hi All Am I missing some magic trick

Re: [OT] VB6 IDE gone awful slow

2010-06-13 Thread Mark Hurd
I don't recall having explicitly this issue, but I do do my production builds from the command line. (More because of past issues than anything I know to be current issues.) You do have SP6 installed? -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.) On Mon, Jun 14, 2010 at 11:56 AM, Kirsten Greed

Re: [OT] .NET at iiNet group

2010-06-13 Thread Mark Hurd
While we're asking OT queries internal to iiNet, can I ask if you know if anything or anyone of OzEmail still exists within iiNet? Other than the ozemail.com.au domain name and member websites, of course. -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.)

Re: [OT] Friday - Conway (or.. Labor govt) once again delays Internet Filter

2010-07-09 Thread Mark Hurd
On Fri, Jul 9, 2010 at 8:18 PM, Preet Sangha preetsan...@gmail.com wrote: Try dropping the AppDomain and trying again. LOL! (I really wish this was on StackOverflow so this would just be a small comment :-) ) -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.)

Re: Generic 'Execute' method

2010-07-12 Thread Mark Hurd
could neaten this up? I don't profess to know the vagaries of type inference in C# (nor do I for that matter in VB.NET, but I'm closer there :-) ), but, as a first step, you should be able to avoid the explicit types here. Thanks, John -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.)

Re: Generic 'Execute' method

2010-07-12 Thread Mark Hurd
BTW You've caught me thinking in VB6 seeing as your sample was! :-) The line should be              Return Execute(Library.PerformAaa(request)); -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.)

Re: Generic 'Execute' method

2010-07-12 Thread Mark Hurd
Typo. On Tue, Jul 13, 2010 at 9:51 AM, Mark Hurd markeh...@gmail.com wrote: BTW You've caught me thinking in VB6 seeing as your sample was! :-) The line should be               return Execute(Library.PerformAaa(request)); -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.) -- Regards, Mark

Re: Batching ids for submitting to a stored proc

2010-07-13 Thread Mark Hurd
StackOverflow has a lot to say on this: http://stackoverflow.com/questions/337704/parameterizing-a-sql-in-clause -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.)

Re: OT - Mathematical computing

2010-07-30 Thread Mark Hurd
I have no experience with either (I did do something with MATLAB back at uni, but I don't recall it at all, which for me is a little unusual) but there is an open alternative called Octave IIRC. -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.)

Re: OT - Mathematical computing

2010-07-31 Thread Mark Hurd
to a triangle :-( When I have hobby time I play with DC Proof (http://www.dcproof.com/). -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.)

Re: Rules regarding modifying members acces modifer through inheritence

2010-08-04 Thread Mark Hurd
have a chain of two of the examples I gave, or if you don't use inheritance but aggregation, i.e. the more explicit object is only used internally to hold the properties that still make sense. -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.)

Re: asp.net development server visible outside network?

2010-08-13 Thread Mark Hurd
would expect on localhost, not terse like you'd expect remotely. I created a copy of the generated test web method page with the remote address instead of localhost and the test worked, because it used POST. -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.) On Fri, Aug 13, 2010 at 3:52 PM, Michael

Re: Visual Studio starting for the first time all the time

2010-08-22 Thread Mark Hurd
that are present even though it thinks this is your first use. IIRC I choose VB settings but not to import settings from previous VS system. -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.) On Mon, Aug 23, 2010 at 8:47 AM, Dylan Tusler dylan.tus...@sunshinecoast.qld.gov.au wrote: __ I work on a few

Re: Properties

2010-08-24 Thread Mark Hurd
The thing with properties is that once you have them, changes can be completed without changing the interface, including the binary compatibility of public interfaces. Nevertheless, if your class of variables is not public I too would consider just using fields. -- Regards, Mark Hurd, B.Sc.(Ma

Re: [OT] SQL injection attack vectors

2010-08-31 Thread Mark Hurd
Pty Ltd Phone: +61 (7) 3210 6268 | Facsimile: +61 (7) 3210 6269 | Mobile: +61 417 189 363 V-Card: https://www.codify.com/cards/davidconnors Address Info: https://www.codify.com/contact -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.)

Re: What is the name of two combobexes that show Classes and it's members on top of the text editor?

2010-09-27 Thread Mark Hurd
I think you're looking for this: http://stackoverflow.com/questions/1194908/visual-studio-keyboard-shortcut-for-method-name-combobox/1239254#1239254 To answer your question, according the above answer, it is called the Navigation Bar. -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.) On Tue, Sep 28

Re: Use of GCHandle.Alloc and Free

2010-10-12 Thread Mark Hurd
things are afoot and sometimes cursorHandle.IsAllocated is False, then the above may not be what you need. -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.)

Re: xml query

2010-11-12 Thread Mark Hurd
? -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.)

Re: Help with Filesystem

2010-11-16 Thread Mark Hurd
If you don't mind using the Microsoft.VisualBasic namespace (and assembly, but not Microsoft.VisualBasic.Compatibility), the FileSystem module is still available to you in C#, with FileOpen, FileClose, FileGet and FilePut, with RecordLength and RecordNumber parameters. -- Regards, Mark Hurd

Re: XML problem reading sub elements

2010-11-18 Thread Mark Hurd
Hopefully you've solved it yourself by now, but you need to use partElem.Elements(stores).Select((e)=e.Value).ToList or something similar. (NB I don't use C# day to day, so I may have that syntactically incorrect, but you should get the idea.) -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.)

Re: [OT] System Idle Process Running at 98% and I cant use my PC

2010-11-23 Thread Mark Hurd
and it occasionally does not appear on the device list, but this doesn't necessarily correspond to when the blank moments occur.) -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.) On 22 November 2010 17:50, Kirsten Greed kirst...@jobtalk.com.au wrote: Hi David, David Wallace It turns out cloning the drive

Re: [OT] System Idle Process Running at 98% and I cant use my PC

2010-11-23 Thread Mark Hurd
On 23 November 2010 19:57, David Connors da...@codify.com wrote: On 23 November 2010 19:20, Mark Hurd markeh...@gmail.com wrote: Interesting. I thought my computer's blank moments (normally during late startup i.e. during userinit) were 16-bit hardware drivers not allowing co-processing

Re: [OT] VBScript return string runtime error

2010-11-29 Thread Mark Hurd
type, but the () returns the object to Object, which it doesn't mind passing anywhere. -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.) On 28 November 2010 18:09, Greg Keogh g...@mira.net wrote: I’ve been running experiments for almost two hours solid now, making mock functions and passing different

Re: [OT] VBScript return string runtime error

2010-11-29 Thread Mark Hurd
was the reminder that this is VBScript and not VB.NET, so I knew the silent difference between the working and non-working code. Thanks heaps, Greg -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.)

Re: Setting CMD-window title

2010-11-29 Thread Mark Hurd
On 30 November 2010 11:20, Mark Hurd markeh...@gmail.com wrote: Back in VB6 the App object was available to libraries to use, and so they could adjust App.Title. I never did get around to work out what it did and whether it was possible to replicate in .NET (i.e. allow an assembly to adjust

Re: Fwd: Red Gate will be charging $35 for .NET Reflector

2011-02-02 Thread Mark Hurd
fairly happy with the results (only two private fields updated). I.e. I don't expect any future service packs to completely change the time zone handling. As such I'll probably pay for a new .NET Reflector, but only when the free one gets VB.NET ByRef arguments right. -- Regards, Mark Hurd, B.Sc.(Ma

Re: Fwd: Red Gate will be charging $35 for .NET Reflector

2011-02-02 Thread Mark Hurd
Kean david.k...@microsoft.com wrote: I'm hoping that you did that by calling only public API and not taking a dependency on anything private... -Original Message- From: ozdotnet-boun...@ozdotnet.com [mailto:ozdotnet-boun...@ozdotnet.com] On Behalf Of Mark Hurd Sent: Wednesday

Re: Non-standard time zone handling (was Re: Fwd: Red Gate will be charging $35 for .NET Reflector)

2011-02-03 Thread Mark Hurd
standard) so it is a single install. (We will be moving it to a Win2008 server from a Win2003, but we're expecting to stay with .NET 3.5(2.0).) -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.) On 3 February 2011 14:51, David Kean david.k...@microsoft.com wrote: *DO NOT* rely on private implementation

Re: Getting all instances of a type from all assemblies

2011-02-22 Thread Mark Hurd
Using reflection, if your assemblies have been loaded, it is simply enumerating AppDomain.GetCurrentDomain.GetAssemblies, then for each assembly GetTypes, and finally for each type GetInterfaces. (That is off the top of my head without looking up the details.) -- Regards, Mark Hurd, B.Sc.(Ma

Re: Rethrowing exceptions

2011-03-10 Thread Mark Hurd
something deeper in the framework. But there are other versions of this construct, including with just Throw, where I cannot confirm the reason. Of course, the shared source may explain it it due to logging and other code being commented out in the live build. -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons

POP3 Service

2011-03-10 Thread Mark Hurd
one would already integrate with the Microsoft SMTP Service. However I'm having trouble finding any .NET source code for POP3 servers: I have seen http://sourceforge.net/projects/cses/ but have yet to look at it. Are there any VB.NET POP3 Servers? -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.)

Re: POP3 Service

2011-03-10 Thread Mark Hurd
Scratch cses it has no POP3 implementation. -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.) On 11 March 2011 16:56, Mark Hurd markeh...@gmail.com wrote: We were almost ready to switch from our current server 2003 system to a server 2008 system and my last task was to install the POP3 service

Re: IE9 RTW

2011-03-15 Thread Mark Hurd
And it is not on XP, so not available to me. I assume it's not available for server 2k3 but I haven't checked yet. -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.)

Re: Raising property changed events

2011-03-22 Thread Mark Hurd
I believe it was in this mailing list that we previously confirmed using GetCurrentMethod, even when included in convoluted ways, guarantees the method will not be inlined. Can you show an example where GetCurrentMethod does not return the expected method? -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons

Re: Raising property changed events

2011-03-22 Thread Mark Hurd
On 23 March 2011 15:00, Mark Hurd markeh...@gmail.com wrote: I believe it was in this mailing list that we previously confirmed using GetCurrentMethod, even when included in convoluted ways, guarantees the method will not be inlined. Gmail says GetCurrentMethod has /not/ been mentioned before

Re: Is it possible to override a class?

2011-04-28 Thread Mark Hurd
to find all instances and I can see how the class is used, then use search and replace to change to the new class (Button - MyButton), then refresh the find usages to ensure I got them all. Of course that much is available in the basic Visual Studio. -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.)

Re: Is it possible to override a class?

2011-04-29 Thread Mark Hurd
feal safe to do so and do the Find All References after to check they've all been changed, as you suggest. -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.) On 29 April 2011 16:42, Wallace Turner wallacetur...@gmail.com wrote: Just a word of warning, that search does not find class members so

Re: Non Standard Column Names

2011-05-03 Thread Mark Hurd
I'm not on SQLDownUnder, but is the problem that [Test ID] is an autoincrement column and so is not included in the Inserted columns? -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.) On 4 May 2011 12:18, Anthony asale...@tpg.com.au wrote: Oops..wrong group..sorry From: ozdotnet-boun...@ozdotnet.com

Re: SQLite bulk insert performance

2011-05-28 Thread Mark Hurd
, as this is a shocking gotcha. I’m utterly gobsmacked by the poor performance of the inserts without a transaction around them. Greg -- w: http://jcooney.net t: @josephcooney -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.)

Re: unit testing gone mad

2011-06-05 Thread Mark Hurd
I wouldn't be writing these tests just for themselves, but they do check if someone attempts to change the base class without knowing what is going on. Similarly for the member tests. If these were perhaps created automatically, that would be OK, just. -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons

Re: [OT] ozdotnet own posts

2011-06-18 Thread Mark Hurd
I've just tested on the Ping list with a non-Gmail account and both settings for own posts worked as expected. It /is/ Gmail doing its thing here. -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.) On 17 June 2011 08:38, David Connors da...@codify.com wrote: On Fri, Jun 17, 2011 at 7:08 AM, Greg Kennedy

Re: [OT] ozdotnet own posts

2011-06-19 Thread Mark Hurd
BTW Although the ozdotnet post acknowledgement does arrive, it has the wrong timestamp, and this is also the case for the Ping list acknowledgement, so I don't think it is a list-specific configuration issue. -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.) On 19 June 2011 12:26, Mark Hurd markeh

Re: [OT] Software ownership (was BYO Computer @ Suncorp)

2011-06-21 Thread Mark Hurd
first rights to it). This is why open source development on work or /own/ time is an issue. -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.)

Re: TestQuest

2011-07-11 Thread Mark Hurd
I assume you've used ProcessMonitor or FileMonitor to determine that. When you don't mind devenv crashing, try finding the handle in ProcessExplorer and closing it. See if any resulting error helps tell you who/what is writing to the file. -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.) On 12 July

Re: [ot] Junior dotnet/web programmer required to start yesterday!

2011-07-18 Thread Mark Hurd
now have someone if any was interested.  Yes..we do pay peanuts...but we only want monkeys! Anthony At least you're honest. Hopefully your prospective applicant saw this whole discussion :-) -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.)

Re: ASP.NET ItemCommand before PreInit

2011-07-28 Thread Mark Hurd
-- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.)

Re: Set property of texbox by name

2011-07-28 Thread Mark Hurd
is unnecessary 3)  Use String.Compare rather than ToLower and then equality compare I agree with all those points, but if you /are/ using the .ToLower-like comparison, you should use .ToUpperInvariant, because it caters for more special cases. snip -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.)

Re: [OT] SMS Gateways

2011-08-11 Thread Mark Hurd
Be careful with SMS Global: http://www.google.com.au/search?q=SMS+Global+ACCC http://www.austlii.edu.au/au/cases/cth/FCA/2011/855.html -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.) On 10 August 2011 07:12, Kirsten Greed kirst...@jobtalk.com.au wrote: Thanks Paul Glen, I am checking out

Re: Assembly binding woes

2011-09-19 Thread Mark Hurd
Can't help, but that sounds like a well enough explained problem for stackoverflow.com. -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.) On 19 September 2011 15:57, Matt Siebert mlsieb...@gmail.com wrote: Hi all, I have some assembly binding weirdness happening that I don't fully understand.  I have

Re: [OT] Security clearance for work in Canberra

2011-09-26 Thread Mark Hurd
I agree with Tony. Your future employer will always get you clearance confirmed. There is no point initiating it your self. Of course you'll save everyone a lot of hassle if you report in your resume anything that may be a red flag. -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.) On 26 September 2011

Re: Get Method Argument values?

2011-09-28 Thread Mark Hurd
on the .PDB being present. -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.) On 28 September 2011 02:04, Anthony Mayan ifum...@gmail.com wrote: thanks Billl...did some more research and appear to have to implement Aspect Oriented Programming using .NET which i never knew existed...mm...something to learn

Re: Simple or hard solution

2011-09-29 Thread Mark Hurd
Note that if this were possible, Anthony Mayan's request to display all arguments to a function would be possible, because reflection can give you the argument names, as was mentioned. -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.) On 29 September 2011 17:01, djones...@gmail.com wrote: Hello

Re: XMLSerializer error

2011-10-11 Thread Mark Hurd
IIRC these are because the XmlSerializer generates the C# code required for the serialisation and compiles it on the fly and the file not found errors are signals to it that this has not yet been done. There may be a fix whereby you ensure the serializer IS pre-compiled. -- Regards, Mark Hurd

Re: Name of process

2011-10-15 Thread Mark Hurd
And just emphasising the answer to the question asked: the process is interpolation. -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.) On 14 October 2011 17:32, Ian Thomas il.tho...@iinet.net.au wrote: Not the answer you want – just to point out that this is a not-uncommon requirement, and software

Re: Setting DOS environment variables

2011-10-25 Thread Mark Hurd
), but are not generally able to be changed by external processes. -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.) On 26 October 2011 10:28, Greg Keogh g...@mira.net wrote: Chaps, I think I’ll abandon this experiment again. I’m not happy with the way the new function stuffs your values into the HKCU or HKLM

Re: GetMethod disambiguate

2012-01-08 Thread Mark Hurd
wrote: Folks, I’m using reflection to get a method of an object, but there are two methods that look like this: Foo.CreateObject(); Foo.CreateObjectT(); I can’t figure out how to call GetMethod(???) to get the first one. Anyone know off the top of their head?! Greg -- Regards, Mark Hurd

Re: redirect trace to textbox performance

2012-02-22 Thread Mark Hurd
to confirm, but I guess the TextChanged event is actually (sender As Object, sText As String) and the infrastructure used to allow alternative event signatures seems a bit interesting. Whether it is actually a performance issue though, I don't know -- profile it. snip Anthony -- Regards, Mark Hurd

Re: Very simple LINQ query

2012-03-28 Thread Mark Hurd
For completeness, the VB.NET If is lazily evaluated too (but not the old IIf). -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.) On 28 March 2012 21:38, Michael Minutillo michael.minuti...@gmail.com wrote: Yeah. In C# the expressions are lazily evaluated as well so you won't get an Admin created unless

Re: Users who compulsively highlight or click text as they read it -are you out there?

2012-04-17 Thread Mark Hurd
correctly, that was only with headings that were available for double-click to edit. -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.)

Re: VNC over wireless vs cabled

2012-09-20 Thread Mark Hurd
: www.sqldownunder.com -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.)

Re: Windows 8 and the Start Button

2012-10-04 Thread Mark Hurd
And the Ubuntu 12.04 upgrade has caused problems itself... -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.) On 4 October 2012 16:54, noonie neale.n...@gmail.com wrote: Not yet... but getting closer. It is sad that it's taken too long :-( On Oct 4, 2012 4:50 PM, David Richards ausdot

Re: Greetings

2012-10-10 Thread Mark Hurd
question is? -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.)

Re: time did not exist

2012-11-07 Thread Mark Hurd
) that are Invalid for return to UTC. So as well as not existing between 1/1/09 Midnight to 1AM, WA was out of phase by an hour until Midnight UTC! On 8 November 2012 12:56, Mark Hurd markeh...@gmail.com wrote: In this case you've found an hour where WA didn't exist according to Microsoft's TimeZone data

Re: [OT] sql convert datetime problem; forcing order of AND statements

2012-11-08 Thread Mark Hurd
, Value, 6) ELSE NULL END AS Value FROM DatesTest -- WHERE IsDate([Value])=1 ) select * from sub where sub.Value GETDATE() -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.) On 7 November 2012 20:26, Wallace Turner wallacetur...@gmail.com wrote: Thank you for responding; what I'm taking

Re: time did not exist

2012-11-08 Thread Mark Hurd
(and no exceptions) in the range of the normal DST changes, including Perth in 2007-09. Similarly for norther hemisphere time zones in late September/early October. -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.) On 8 November 2012 18:49, Ian Thomas il.tho...@iinet.net.au wrote: Was 2005 through 2008 when

Re: Help..reference not working..

2012-11-18 Thread Mark Hurd
You've built Common.dll with the 4.0 framework DLLs. Note you may have done this with the 3.5 compiler, if your settings were adjusted that way at the time. You'll have to rebuild it with the 3.5/2.0 framework. -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.) On 19 November 2012 16:50, ifum

Re: Help..reference not working..still no resolution..

2012-11-19 Thread Mark Hurd
This is still just showing Common.dll /is/ being built against the 4.0 libraries. We need to see the build command for that, not the one confirming it's already gone wrong. -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.) On 20 November 2012 16:40, ifum...@gmail.com wrote: Common.dll is set

Re: Custom Attribute

2013-03-04 Thread Mark Hurd
for on Google... I've found a couple of similar implementations but nothing mentions this issue that I've found. cheers, Stephen -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.)

Re: LINQ select nullable Id

2013-03-04 Thread Mark Hurd
where t.Name == Foo select t.Id).FirstOrDefault(); In this case I get int zero if there is no match but I want null. Is there some way of rearranging this to get an Id or null? Remember that the query has to convertible down to SQL. Greg K -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.)

Re: Running code snippets

2013-03-11 Thread Mark Hurd
know about VB.NET features that do still compile correctly. I haven't used it with C# to know for sure how good it is with that. -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.) On 12 March 2013 10:30, Preet Sangha preetsan...@gmail.com wrote: Not sure about VS but I've used linq pad to do this. On 12

Re: Glimpse...trace.write

2013-04-24 Thread Mark Hurd
actions it takes that you've removed for this post.) -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.) On 24 April 2013 14:25, ifum...@gmail.com wrote: Using glimpse which is great but I have noticed an issues..i think? It appears to output my trace.write(“”) to glimpse most of the time except

Re: Sending emails from extra domains in Office 365

2013-04-26 Thread Mark Hurd
Ha! That's what I do with Outlook Express. I didn't think it'd still be the same! -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.) On 26 April 2013 11:50, g...@greglow.com wrote: Magic Grant. That's the winner. It's a pity that it's necessary but this would of course work and is simpler. Regards

Re: [OT] Gmail and spam

2013-05-02 Thread Mark Hurd
separate messages. -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.) On 3 May 2013 11:35, David Connors da...@connors.com wrote: On Fri, May 3, 2013 at 10:24 AM, David Burstin david.burs...@gmail.com wrote: I've noticed that my gmail spam folder (spam for the last 30 days) has dropped from an average

Re: Visual studio and SharpDevelop: who uses which on this list and why?

2013-05-03 Thread Mark Hurd
me the sh*ts. /rant I agree with David's rant, though I do also see Tristan issue, in that the free version is clearly nobbled because you can't access the expansion points that are clearly still there. -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.)

Re: the Open Source community for .NET developers: the value of joining and developing OS VS. for-proffit development

2013-07-09 Thread Mark Hurd
It's not truly hidden unless you go to great lengths to obfuscate it. That's true except when you don't actually provide the software to the consumer. Software as a service makes it quite feasible to provide great technology without giving out the source or binary code. -- Regards, Mark Hurd

Re: Still trying to fix authentication on an ASP.net application: some accounts work and others don't

2013-07-10 Thread Mark Hurd
queries. ​​ -- Regards, *Mark Hurd*, B.Sc.(Ma.)(Hons.)​ On 11 July 2013 13:23, Katherine Moss katherine.m...@gordon.edu wrote: Thanks. I’m also checking all of the stored procedures; I think there is one for at least every action on the site (there are 697 of them). I’ll go to the forums if I

Re: the Open Source community for .NET developers: the value of joining and developing OS VS. for-proffit development

2013-07-10 Thread Mark Hurd
BTW You might want to choose another name: Project Jenks does have a number of hits https://www.google.com.au/search?q=Project+Jenks -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.) On 10 July 2013 22:38, Katherine Moss katherine.m...@gordon.edu wrote: I'll have to look into that if I find it fits my

Re: [OT] RSS feed formatting

2013-07-16 Thread Mark Hurd
is the standard XML syntax-highlighted view for any XML file. What is happening? Ian Thomas Victoria Park, Western Australia -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.)

Re: [OT] RSS feed formatting

2013-07-16 Thread Mark Hurd
OK, I see now, once you actually subscribe there's no xsl. On 16 July 2013 22:08, Mark Hurd markeh...@gmail.com wrote: When I view source of http://aka.ms/AtHomeRSS the second line is: ?xml-stylesheet type='text/xsl' href='RssPretty.xslt' version='1.0'? On 16 July 2013 18:31, Ian Thomas

Re: [OT] RSS feed formatting

2013-07-16 Thread Mark Hurd
That seems to be an artifact of IE's processing of RSS. The URL of the subscribed page (as seen in the Properties of the page) is: http://www.microsoft.com/athome/community/rss.xml which is what the shortened url http://aka.ms/AtHomeRSS expands to. On 16 July 2013 22:20, Mark Hurd markeh

Re: [OT] T-SQL GroupBy and Sum on a DateTime

2013-07-16 Thread Mark Hurd
= sod.SalesOrderID GROUP BY DATEPART(year,soh.OrderDate), DATEPART(month,soh.OrderDate) HAVING DATEPART(year,soh.OrderDate) BETWEEN 2005 AND 2012 ORDER BY OrderYear, OrderMonth; -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.)

Re: Testing ComVisible in vbscript

2013-08-01 Thread Mark Hurd
object name to create. In other words, ProgIdAttribute does not always seem to be processed. -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.) On 1 August 2013 15:26, Greg Keogh g...@mira.net wrote: It's working now, but I'm not sure what I did. It's something to do with regasm version. If I run regasm

Re: decimal.ToString() (JSON Serialization)

2013-08-11 Thread Mark Hurd
Note that, obviously, one of Decimal's claims to fame is that it considers trailing zeros as significant, so serializing /should/ record those details. If you want to adjust that, use Decimal.Round(value, 2), but note that this does not add trailing zeros, only removes extras. -- Regards, Mark

Re: decimal.ToString() (JSON Serialization)

2013-08-11 Thread Mark Hurd
(value); You can simplify this to just: value = Math.Round(0.M + value, 4); -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.)

Re: Future of .NET

2013-08-21 Thread Mark Hurd
Another non-.NET opinion, admittedly maily because he want's a fully open source solution: http://www.codinghorror.com/blog/2013/03/why-ruby.html -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.)

Re: out of memory..urgent...Solution

2013-09-13 Thread Mark Hurd
are needed). -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.) On 13 September 2013 14:16, anthonyatsmall...@mail.com wrote: If you are interested..memeory issue was resolved by doing the following… Public Shared Function byteArrayToString(ByVal b() As Byte) As String Dim ss As New

Re: Problem with FileSystem.DeleteFile method in root directory

2013-10-21 Thread Mark Hurd
then couldn't see the file in the Recycle Bin. (I attempted to open Explorer as Administrator to confirm if I could see it then, but I don't think I really succeeded.) However it was returned when I used Explorer's Undo feature, so it was stored somewhere :-) -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.)

Fwd: Visual Studio Macros stopped working?

2014-02-27 Thread Mark Hurd
://support.microsoft.com/kb/2934830 -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.)

Re: Visual Studio Macros stopped working?

2014-03-05 Thread Mark Hurd
/a/22063369/256431 all the previous .NET IDEs that did have macros were broken by the update. I also know there are third party macro facilities for VS2012+ but I don't know if they were broken. For completeness, it doesn't affect Express users either :-) -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons

Re: Visual Studio Macros stopped working?

2014-03-05 Thread Mark Hurd
StackOverflow question, I originally assumed it was something I did. -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.)

Re: [OT] Weird symptoms and SSD

2014-03-24 Thread Mark Hurd
I'd also not trust the backups from now on either. I.e. don't overwrite previous backups with current ones, until you can check that the contents haven't been corrupted already. ​​ -- Regards, *Mark Hurd*, B.Sc.(Ma.)(Hons.)​ On 25 March 2014 14:20, ben.robb...@jlta.com.au wrote: My guess

Re: Debugging Function parameters

2014-04-08 Thread Mark Hurd
that may contain Nothing, you can Step Into the specific evaluations since VS2008 (at least). Otherwise your (possibly optimized) code is not reporting the position of the error correctly. -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.) On 8 April 2014 20:47, anthonyatsmall...@mail.com wrote: Exception

Re: Data validation on a business object done by a rules engine - looking for a SIMPLE rules engine

2014-04-08 Thread Mark Hurd
, then you can get automatic recompilation whenever you change the source. Many Thanks Greg Harris -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.)

Re: [OT] Couple of fun/useful(?) things

2014-04-08 Thread Mark Hurd
Not really off topic, and not actually spam, like Gmail thinks. On 9 April 2014 10:56, osjasonrobe...@gmail.com wrote: Couple of things which I though may be fun/use/interest: snip -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.)

Re: Bare bones web app

2014-09-29 Thread Mark Hurd
And I produced a web service, using a simple pass-through aspx label: http://stackoverflow.com/a/2817637/256431 -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.)

Re: VB.NET (was Re: VS2013 Windows Phone project)

2014-11-19 Thread Mark Hurd
Yes, there are still VB.NET programmers around. My workplace is using C# for many new projects but we have lots of VB.NET (and some VB6) legacy stuff that won't go away. -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.) On 20 November 2014 16:07, DotNet Dude adotnetd...@gmail.com wrote: Did someone

Re: TraceSource without config

2014-12-02 Thread Mark Hurd
Actually Tom, the page you link to DOES list code To initialize trace sources, listeners, and filters without a configuration file, though not recommended. -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.) On 3 December 2014 at 09:24, Tom P tompbi...@gmail.com wrote: Hi Greg According to the following

Re: Programmatically call forward

2014-12-16 Thread Mark Hurd
On: *21forward number# Off: #21# -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.) On 16 December 2014 at 18:58, Craig van Nieuwkerk crai...@gmail.com wrote: I have a client who wants to be able to have a button in our app to turn on/off call forwarding on their phone system. Does Telstra (or Optus

Re: [OT] Unbelievable ad tracking

2014-12-21 Thread Mark Hurd
-- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.)

  1   2   >