User Mark Ingram - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T04:02:33Zhttp://stackoverflow.com/feeds/user/986http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/240156/is-there-a-notification-mechanism-for-when-a-dependency-property-has-changed0Is there a notification mechanism for when a dependency property has changed?Mark Ingram2008-10-27T14:51:49Z2009-12-02T18:59:10Z
<p>In a Silverlight application I'm trying to find out when a property on a usercontrol has changed. I'm interested in one particular DependencyProperty, but unfortunately the control itself doesn't implement INotifyPropertyChanged.</p>
<p>Is there any other way of determining if the value has changed?</p>
http://stackoverflow.com/questions/179723/what-is-the-best-way-of-implementing-assertion-checking-in-c4What is the best way of implementing assertion checking in C++?Mark Ingram2008-10-07T18:21:18Z2009-11-17T08:48:23Z
<p>By that I mean, what do I need to do to have useful assertions in my code?</p>
<p>MFC is quite easy, i just use ASSERT(something).</p>
<p>What's the non-MFC way?</p>
<p><strong>Edit:</strong> Is it possible to stop assert breaking in assert.c rather than than my file which called assert()?</p>
<p><strong>Edit:</strong> What's the difference between <code><assert.h></code> & <code><cassert></code>?</p>
<p><strong>Accepted Answer:</strong> Loads of great answers in this post, I wish I could accept more than one answer (or someone would combine them all). So answer gets awarded to Ferruccio (for first answer).</p>
http://stackoverflow.com/questions/148178/strange-mfc-vc-linker-error-stdlistcrect-already-defined3Strange MFC / VC++ Linker Error (std::list<CRect> already defined)Mark Ingram2008-09-29T10:18:09Z2009-10-23T10:32:41Z
<p>I've got a really odd error message that only occurs when I add the following line to my project:</p>
<pre><code>std::list<CRect> myVar;
</code></pre>
<p>It's worth noting that it doesn't have to be a std::list, it can be std::vector or any other STL container I assume.</p>
<p>Here is the error message:</p>
<blockquote>
<p>Error 1 error LNK2005: "public:
__thiscall std::list</p>
<blockquote>
<p>::list >(void)"
(??0?$list@VCRect@@V?$allocator@VCRect@@@std@@@std@@QAE@XZ)
already defined in
SomeLowLevelLibrary.lib</p>
</blockquote>
</blockquote>
<p>The low level library that's referenced in the error message has no idea about the project I am building, it only has core low level functionality and doesn't deal with high level MFC GUIs.</p>
<p>I can get the linker error to go away if I change the line of code to:</p>
<pre><code>std::list<CRect*> myVar;
</code></pre>
<p>But I don't want to hack it for the sake of it.</p>
<p>Also, it doesn't matter if I create the variable on the stack or the heap, I still get the same error.</p>
<p>Does anyone have any ideas whatsoever about this?
I'm using Microsoft Visual Studio 2008 SP1 on Vista Enterprise.</p>
<p><strong>Edit:</strong> The linker error above is for the std::list<> constructor, I also get an error for the destructor, _Nextnode and clear functions.</p>
<p><strong>Edit:</strong> In other files in the project, std::vector won't link, in other files it might be std::list. I can't work out why some containers work, and some don't. MFC linkage is static across both libraries. In the low level library we have 1 class that inherits from std::list.</p>
<p><strong>Edit:</strong> The low level library doesn't have any classes that inherit from CRect, but it does make use of STL.</p>
http://stackoverflow.com/questions/148178/strange-mfc-vc-linker-error-stdlistcrect-already-defined/1612595#16125950Answer by Mark Ingram for Strange MFC / VC++ Linker Error (std::list<CRect> already defined)Mark Ingram2009-10-23T10:32:41Z2009-10-23T10:32:41Z<p>I recently stumbled across this error again in our project and decided to have a more thorough investigation compared to just patching it up with a hack like last time (swap std::list for CArray). It turns out that one of our low level libraries was inheriting from std::list, e.g.</p>
<pre><code>class LIB_EXPORT CRectList : public std::list<CRect>
{
};
</code></pre>
<p>This is not just bad practice, but it also was the cause of the linker errors in the main application. I change CRectList to wrap std::list rather than inherit from it and the error went away.</p>
http://stackoverflow.com/questions/318064/how-do-you-declare-an-interface-in-c/1562554#15625540Answer by Mark Ingram for How do you declare an interface in c++Mark Ingram2009-10-13T19:53:38Z2009-10-13T19:53:38Z<p>If you're on Windows then you could do the following:</p>
<pre><code>struct __declspec(novtable) IFoo
{
virtual void Bar();
};
class Child : public IFoo
{
public:
virtual void Bar() { /* Do Something */ }
}
</code></pre>
<p>I like this approach because it results in a lot smaller interface code and the generated code size can be significantly smaller. The use of novtable removes all reference to the vtable pointer in that class, so you can never instantiate it directly. See the documentation here - <a href="http://msdn.microsoft.com/en-us/library/k13k85ky.aspx" rel="nofollow">novtable</a>.</p>
http://stackoverflow.com/questions/488173/how-to-send-mail-on-windows-other-than-mapi0How to send mail on windows (other than MAPI)Mark Ingram2009-01-28T15:58:26Z2009-10-12T13:49:18Z
<p>When viewing the MSDN MAPI documentation page it says the API is now deprecated. If that's the case, what is the suggested API for sending mail these days?</p>
<p><a href="http://msdn.microsoft.com/en-us/library/dd296734.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/dd296734.aspx</a></p>
<p><strong>Edit:</strong> Thanks for all the suggestions, the managed route isn't suitable for me as we're using MFC. </p>
http://stackoverflow.com/questions/774834/filestream-truncate-doesnt-work-after-calling-filestream-readutfbytes-adobe0FileStream.truncate() doesn't work after calling FileStream.readUTFBytes() (Adobe AIR)Mark Ingram2009-04-21T22:02:40Z2009-09-29T18:12:01Z
<p>I'm trying to read an xml file into memory, add a node, then write over the original file.</p>
<p>The following code works just fine (it clears the file, then writes the new bytes over the top):</p>
<pre><code>var stream:FileStream = new FileStream();
stream.open(file, FileMode.UPDATE);
stream.position = 0;
stream.truncate();
stream.writeUTFBytes("<?xml version=\"1.0\" encoding=\"UTF-8\"?>");
stream.writeUTFBytes(File.lineEnding);
stream.writeUTFBytes(xml.toXMLString());
stream.close();
</code></pre>
<p>However, if I attempt to perform a read after the file has opened, the position / truncate calls don't work:</p>
<pre><code>var stream:FileStream = new FileStream();
stream.open(file, FileMode.UPDATE);
var xml:XML = XML(stream.readUTFBytes(stream.bytesAvailable));
// Modify xml here
stream.position = 0;
stream.truncate();
stream.writeUTFBytes("<?xml version=\"1.0\" encoding=\"UTF-8\"?>");
stream.writeUTFBytes(File.lineEnding);
stream.writeUTFBytes(xml.toXMLString());
stream.close();
</code></pre>
<p>Does anyone have any ideas why this doesn't work?</p>
<p>If you examine the stream, in the first code, after the call to truncate(), the bytesAvailable property will read 0. But in the second code, the bytesAvailable won't change (it will show the current file size).</p>
http://stackoverflow.com/questions/268207/how-to-create-a-numeric-textbox-in-silverlight1How to create a numeric textbox in Silverlight?Mark Ingram2008-11-06T10:19:39Z2009-09-23T23:38:31Z
<p>As the title says really.
I've had a look at inheriting from TextBox, but the only sensible override was "OnKeyDown", but that just gives me a key from the Key enum (with no way to use Char.IsNumeric()).</p>
http://stackoverflow.com/questions/233511/disabled-breakpoints-disappear-no-more-red-dot/1443481#14434810Answer by Mark Ingram for Disabled breakpoints disappear, no more red dot?Mark Ingram2009-09-18T09:36:28Z2009-09-18T09:36:28Z<p>This is a bug with Visual Studio 2008 SP1. There is a fix available:</p>
<p><a href="http://code.msdn.microsoft.com/KB957912" rel="nofollow">http://code.msdn.microsoft.com/KB957912</a></p>
<p>The associated support page is here:</p>
<p><a href="http://support.microsoft.com/kb/957912" rel="nofollow">http://support.microsoft.com/kb/957912</a></p>
<p>And the original bug report is here:</p>
<p><a href="https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=366060" rel="nofollow">https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=366060</a></p>
<p>Just follow the first link, then click on downloads. There is a link there to download the hotfix. It now works fine on my machine.</p>
http://stackoverflow.com/questions/479332/how-to-get-size-and-position-of-window-caption-buttons-minimise-restore-close2How to get size and position of window caption buttons (minimise, restore, close)Mark Ingram2009-01-26T10:21:27Z2009-09-15T07:19:40Z
<p>Is there an API call to determine the size and position of window caption buttons? I'm trying to draw vista-style caption buttons onto an owner drawn window. I'm dealing with c/c++/mfc.</p>
<p>Edit: Does anyone have a code example to draw the close button?</p>
http://stackoverflow.com/questions/208123/what-is-the-best-practice-for-compiling-silverlight-and-wpf-in-one-project10What is the best practice for compiling Silverlight and WPF in one project?Mark Ingram2008-10-16T11:07:24Z2009-09-11T14:31:25Z
<p>I've just completed a Silverlight project and it's time to have a little clean up. I'd like to take my core files and put them into a separate project which I will reference from my main Silverlight app.
Some of these classes are compatible with WPF and I would quite like to be able to have Silverlight / WPF code all in one project. My ideal solution would be a single project that allows multiple configurations. So,</p>
<p>Configuration: Silverlight would generate:
Company.Controls.Silverlight.dll</p>
<p>Configuration: WPF would generate:
Company.Controls.Wpf.dll</p>
<p>Is it possible to have the same source in the same file just seperated via defines?</p>
<p>Has anyone done this before?</p>
<p><strong>Edit:</strong> I've created a solution per project, like MyCompany.Windows.Controls, which then contains 2 projects, MyCompany.Windows.Controls & MyCompany.Windows.Controls.Silverlight. Alongside those 2 folders I have a "Shared" folder, which contains files used by both projects. It works well so far :)</p>
http://stackoverflow.com/questions/186768/can-you-use-amazon-s3-via-flex5Can you use Amazon S3 via Flex?Mark Ingram2008-10-09T11:06:46Z2009-09-07T10:26:49Z
<p>Due to the lack of clientaccesspolicy.xml, there appears to be problems with using Amazon S3 via Flex. Are there any work arounds?</p>
<p><strong>Edit:</strong> Both of the below answers are great and work, I've upvoted both (I'm not going to assign an answer to the question as they both work):</p>
<p><a href="http://stackoverflow.com/questions/186768/can-you-use-amazon-s3-via-flex#186889">http://stackoverflow.com/questions/186768/can-you-use-amazon-s3-via-flex#186889</a></p>
<p><a href="http://stackoverflow.com/questions/186768/can-you-use-amazon-s3-via-flex#194362">http://stackoverflow.com/questions/186768/can-you-use-amazon-s3-via-flex#194362</a></p>
http://stackoverflow.com/questions/126472/how-to-stop-right-click-dead-locking-visual-studio-20082How to stop right click dead-locking Visual Studio 2008Mark Ingram2008-09-24T10:54:16Z2009-09-06T15:18:44Z
<p>I have a very serious problem with Visual Studio 2008.
Occasionally when I right-click (for go to definition, set next statement etc) when I'm debugging, Visual Studio will just dead-lock and go into not responding mode.</p>
<p>Has anyone had the same problem? Does anyone know how to solve it? </p>
<p><strong>Edit:</strong> I'm using SP1 with a couple of hot-fixes.</p>
http://stackoverflow.com/questions/119980/detect-via-javascript-whether-silverlight-is-installed3Detect via javascript whether Silverlight is installedMark Ingram2008-09-23T09:07:08Z2009-09-02T15:34:39Z
<p>Is there a javascript function I can use to detect whether a specific silverlight version is installed in the current browser?</p>
<p>I'm particularly interested in the Silverlight 2 Beta 2 version. I don't want to use the default method of having an image behind the silverlight control which is just shown if the Silverlight plugin doesn't load.</p>
<p><strong>Edit:</strong> From link provided in accepted answer:</p>
<p>Include Silverlight.js (from Silverlight SDK)</p>
<pre><code>Silverlight.isInstalled("2.0");
</code></pre>
http://stackoverflow.com/questions/675521/complete-progress-events-arent-firing-for-image-control-with-embedded-content1Complete / Progress events aren't firing for Image control with embedded contentMark Ingram2009-03-23T22:45:21Z2009-08-23T15:59:35Z
<p>I've got the following MXML tag:</p>
<pre><code><mx:Image id="image" width="100%" height="100%"
source="@Embed('../assets/Test.swf')"
complete="completeHandler(event)"
progress="progressHandler(event)"/>
</code></pre>
<p>But for some reason my completeHandler / progressHandler functions aren't being called. The reason I need the complete event is because I want to manipulate the bitmap data once the image has loaded. In creationComplete the bitmap data is still null. Why aren't these events firing?</p>
<p><strong>Edit:</strong> The asset is correctly showing in my application - so I know the asset is in the right location (the embed guarantees that at compile time anyway).</p>
http://stackoverflow.com/questions/675521/complete-progress-events-arent-firing-for-image-control-with-embedded-content/683397#6833970Answer by Mark Ingram for Complete / Progress events aren't firing for Image control with embedded contentMark Ingram2009-03-25T20:53:15Z2009-08-23T15:59:35Z<p>If you're using an embedded asset, the width / height properties are available immediately on the source object:</p>
<pre><code>var mySource:Object = new embeddedClass();
m_myWidth = mySource.width;
m_myHeight = mySource.height;
m_image = new Image();
m_image.source = mySource;
</code></pre>
<p>So, you have to create an instance of the source first, then set the source on your image object.</p>
http://stackoverflow.com/questions/247270/how-to-deserialise-json-data-in-silverlight-using-a-different-name-to-member-va1How to (de)serialise JSON data in Silverlight using a different name to member variableMark Ingram2008-10-29T15:34:20Z2009-08-08T03:00:04Z
<p>I have the following members defined in a class that I'm trying to deserialise:</p>
<pre><code>[DataMemberAttribute(Name = "cust_title")]
public String Title { get; set; }
[DataMemberAttribute(Name = "cust_description")]
public String Description { get; set; }
</code></pre>
<p>For some reason, the deserialisation fails (it seems to ignore the DataMemberAttribute).</p>
<p>Does anyone know how to get this working?</p>
http://stackoverflow.com/questions/1233447/c-index-was-outside-the-bounds-of-the-array/1233480#12334801Answer by Mark Ingram for C# Index was outside the bounds of the arrayMark Ingram2009-08-05T14:05:40Z2009-08-05T14:05:40Z<p>You're getting the row index and then trying to use it with <code>rowsDisplayStatus</code>. You can't use the database row index as an index into your collections.</p>
<p>I would change:</p>
<pre><code>if (!rowsDisplayStatus[rowIndex])
</code></pre>
<p>to:</p>
<pre><code>if (!rowsDisplayStatus[i])
</code></pre>
http://stackoverflow.com/questions/1086327/why-does-openthemedatapparent-ltextstyle-fail-on-xp0Why does OpenThemeData(pParent, L"TEXTSTYLE") fail on XP?Mark Ingram2009-07-06T10:11:52Z2009-08-05T13:00:01Z
<p>I'm using the theme library to draw some text which works absolutely fine on Windows Vista - however, on Windows XP the returned HTHEME is NULL. This is the code I'm using:</p>
<pre><code>HTHEME hTheme = ::OpenThemeData(pParent, L"TEXTSTYLE");
</code></pre>
<p>hTheme is valid on Vista, but NULL on Windows XP.<br />
I've read the documentation for <a href="http://msdn.microsoft.com/en-us/library/bb759821.aspx" rel="nofollow">OpenThemeData</a> and <a href="http://msdn.microsoft.com/en-us/library/bb773210.aspx" rel="nofollow">Parts and States</a> on MSDN, but nothing mentions that TEXTSTYLE isn't supported on XP (even Google doesn't throw up any good suggestions).</p>
http://stackoverflow.com/questions/1229949/how-to-get-the-size-of-an-embedded-image-swf0How to get the size of an embedded image / swf?Mark Ingram2009-08-04T21:06:46Z2009-08-04T21:43:05Z
<p>Normally if you were loading an image from a URL you would do the following:</p>
<pre><code>m_image = new Image();
m_image.addEventListener(Event.COMPLETE, image_completeHandler, false, 0, true);
m_image.source = "http://www.example.com/image.jpg";
private function image_completeHandler(event:Event):void
{
// Image content has now loaded, we need to wait for it to validate it's size
m_image.addEventListener(FlexEvent.UPDATE_COMPLETE, image_updateCompleteHandler, false, 0, true);
}
private function image_updateCompleteHandler(event:FlexEvent):void
{
// Do stuff with width / height
}
</code></pre>
<p>But, if you set the source to an embedded image class, the complete event doesn't appear to fire. So my question is, how can you get the width / height of an embedded image / swf?</p>
http://stackoverflow.com/questions/1211684/how-can-i-disable-the-toolbox-in-visualstudio-2008/1211704#12117042Answer by Mark Ingram for How can I disable the Toolbox in VisualStudio 2008Mark Ingram2009-07-31T09:58:41Z2009-07-31T09:58:41Z<p>Press the X in the top right corner (of the toolbox window)?</p>
http://stackoverflow.com/questions/1164868/how-to-get-size-of-check-and-gap-in-check-box1How to get size of check and gap in check box?Mark Ingram2009-07-22T12:18:38Z2009-07-26T22:02:31Z
<p>I have a check box that I want to accurately measure so I can position controls on a dialog correctly. I can easily measure the size of the text on the control - but I don't know the "official" way of calculating the size of the check box and the gap before (or after) the text.</p>
http://stackoverflow.com/questions/338626/flex-profiling-what-is-enterframeevent-doing/1168581#11685810Answer by Mark Ingram for Flex profiling - what is [enterFrameEvent] doing?Mark Ingram2009-07-22T22:09:27Z2009-07-22T22:09:27Z<p>This link explains each of the [function]'s described in the performance profiler:</p>
<p><a href="http://livedocs.adobe.com/flex/gumbo/html/WS6f97d7caa66ef6eb1e63e3d11b6c4d0d21-7edf.html" rel="nofollow">http://livedocs.adobe.com/flex/gumbo/html/WS6f97d7caa66ef6eb1e63e3d11b6c4d0d21-7edf.html</a></p>
http://stackoverflow.com/questions/194733/can-a-flex-3-method-detect-the-calling-object2Can a Flex 3 method detect the calling object?Mark Ingram2008-10-11T22:16:24Z2009-07-06T17:41:49Z
<p>If I have a method such as:</p>
<pre><code>private function testMethod(param:string):void
{
// Get the object that called this function
}
</code></pre>
<p>Inside the testMethod, can I work out what object called us? e.g.</p>
<pre><code>class A
{
doSomething()
{
var b:B = new B();
b.fooBar();
}
}
class B
{
fooBar()
{
// Can I tell that the calling object is type of class A?
}
}
</code></pre>
http://stackoverflow.com/questions/995498/edit-googledocs-documents-in-ultraedit-or-notepad/1087990#10879900Answer by Mark Ingram for Edit GoogleDocs documents in UltraEdit or Notepad++ ?Mark Ingram2009-07-06T16:43:29Z2009-07-06T16:43:29Z<p>You have to export it as a rich text document, then edit it in notepad++, then import it back to google docs.</p>
<p>Don't expect this question to live long as it's unrelated to programming.</p>
http://stackoverflow.com/questions/208908/silverlight-how-to-set-default-style-in-generic-xaml-for-child-class0Silverlight: How to set default style in generic.xaml for child class?Mark Ingram2008-10-16T14:57:56Z2009-06-27T22:03:07Z
<p>I have the following hierachy:</p>
<pre><code>public class A
{
protected class B
{
}
}
</code></pre>
<p>And I've tried to define a default style in the following ways (inside generic.xaml):</p>
<pre><code><Style TargetType="local:A+B">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="local:A+B">
<Grid/>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<Style TargetType="local:A.B">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="local:A.B">
<Grid/>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<Style TargetType="local:B">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="local:B">
<Grid/>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</code></pre>
<p>Does anyone know the correct syntax?</p>
http://stackoverflow.com/questions/865719/how-to-make-slider-labels-clickable-flex-31How to make slider labels clickable [Flex 3]Mark Ingram2009-05-14T20:55:11Z2009-06-17T15:05:53Z
<p>I have a simple slider, with only 3 options. It seems strange to force the user to drag the small thumbnail on the slider, when it would be a lot easier to click one of the 3 actual labels by the side of the slider. Does anyone know how to accomplish this?</p>
http://stackoverflow.com/questions/225878/how-to-correctly-inherit-from-a-usercontrol-defined-in-xaml-in-silverlight4How to correctly inherit from a usercontrol defined in XAML in SilverlightMark Ingram2008-10-22T14:07:19Z2009-06-02T16:17:33Z
<p>If I have a usercontrol (in Silverlight) that I've written, that uses XAML to define it's appearance, how can I make a customised version of it?</p>
<p>i.e. I have MyControl.xaml & MyControl.xaml.cs</p>
<p>What do I need to do if I want a "SpecialisedControl" child class? I assume I just make a new code file, then inherit from MyControl. But what if I want to change the appearance of the base class - then what do I do?</p>
http://stackoverflow.com/questions/39474/how-to-get-intellisense-to-reliably-work-in-visual-studio-200811How to get intellisense to reliably work in Visual Studio 2008Mark Ingram2008-09-02T13:13:36Z2009-05-29T18:50:09Z
<p>Hi, does anyone know how to get intellisense to work reliably when working in C/C++ projects? It seems to work for about 1 in 10 files. Visual Studio 2005 seems to be a lot better than 2008.</p>
<p>Edit: Whilst not necessarily a solution, the work-around provided here: </p>
<p><a href="http://beta.stackoverflow.com/questions/39474/how-to-get-intellisense-to-reliably-work-in-visual-studio-2008#39590" rel="nofollow">http://beta.stackoverflow.com/questions/39474/how-to-get-intellisense-to-reliably-work-in-visual-studio-2008#39590</a></p>
<p>Is probably the best bet if I want a decent intellisense system.</p>
http://stackoverflow.com/questions/100841/artificially-create-a-connection-timeout-error4Artificially create a connection timeout errorMark Ingram2008-09-19T09:57:47Z2009-05-24T20:42:43Z
<p>I've had a bug in our software that occurs when I receive a connection timeout. These errors are very rare (usually when my connection gets dropped by our internal network). How can I generate this kind of effect artificially so I can test our software? </p>
<p>If it matters the app is written in C++/MFC using CAsyncSocket classes.</p>
<p><strong>Edit:</strong></p>
<p>I've tried using a non-existant host, and I get the socket error:</p>
<p>WSAEINVAL (10022) Invalid argument</p>
<p>My next attempt was to use <a href="http://stackoverflow.com/questions/100841?sort=oldest#100859">Alexander</a>'s suggestion of connecting to a different port, e.g. 81 (on my own server though). That worked great. Exactly the same as a dropped connection (60 second wait, then error). Thank you!</p>
http://stackoverflow.com/questions/1165647/how-to-determine-if-a-list-of-polygon-points-are-in-clockwise-order/1165943#1165943Comment by Mark Ingram on How to determine if a list of polygon points are in clockwise order?Mark Ingram2009-11-09T17:19:42Z2009-11-09T17:19:42ZIs there a particular name to this method?http://stackoverflow.com/questions/1229949/how-to-get-the-size-of-an-embedded-image-swf/1230072#1230072Comment by Mark Ingram on How to get the size of an embedded image / swf?Mark Ingram2009-08-05T10:29:57Z2009-08-05T10:29:57ZThis indicates that the loading isn't synchronous even when embedding:
<a href="http://livedocs.adobe.com/flex/3/langref/mx/core/MovieClipLoaderAsset.html#event:complete" rel="nofollow">livedocs.adobe.com/flex/3/…</a>http://stackoverflow.com/questions/1164868/how-to-get-size-of-check-and-gap-in-check-box/1185680#1185680Comment by Mark Ingram on How to get size of check and gap in check box?Mark Ingram2009-07-27T09:35:20Z2009-07-27T09:35:20ZDo you have a link?http://stackoverflow.com/questions/41934/how-can-i-make-eclipse-file-search-not-include-svn-directories/41959#41959Comment by Mark Ingram on How can I make Eclipse file search not include svn directories?Mark Ingram2009-07-27T09:34:33Z2009-07-27T09:34:33ZYes, the latest version seems to have "issues". I'm unsure why, my .svn directories are no longer hidden either.http://stackoverflow.com/questions/1164868/how-to-get-size-of-check-and-gap-in-check-box/1165052#1165052Comment by Mark Ingram on How to get size of check and gap in check box?Mark Ingram2009-07-23T13:34:37Z2009-07-23T13:34:37ZSeems to work fine for me :)
(Odd how it's "menu check" and there isn't an option for a regular check box?)http://stackoverflow.com/questions/1171244/help-updating-chartComment by Mark Ingram on help updating chartMark Ingram2009-07-23T11:52:51Z2009-07-23T11:52:51ZCan you supply some example code? http://stackoverflow.com/questions/1124753/for-vs-foreach-loop-in-cComment by Mark Ingram on For vs Foreach loop in C#Mark Ingram2009-07-14T12:10:11Z2009-07-14T12:10:11ZDuplicates:
<a href="http://stackoverflow.com/questions/44220/difference-between-foreach-and-for-loops-over-an-ienumerable-class-in-c" rel="nofollow" title="difference between foreach and for loops over an ienumerable class in c">stackoverflow.com/questions/44220/…</a>
<a href="http://stackoverflow.com/questions/472191/c-for-vs-foreach" rel="nofollow" title="c for vs foreach">stackoverflow.com/questions/472191/…</a>http://stackoverflow.com/questions/1086327/why-does-openthemedatapparent-ltextstyle-fail-on-xp/1086760#1086760Comment by Mark Ingram on Why does OpenThemeData(pParent, L"TEXTSTYLE") fail on XP?Mark Ingram2009-07-06T12:52:54Z2009-07-06T12:52:54ZI've just googled "OpenThemeData TEXTSTYLE" and got no results from Google groups.http://stackoverflow.com/questions/1086327/why-does-openthemedatapparent-ltextstyle-fail-on-xp/1086760#1086760Comment by Mark Ingram on Why does OpenThemeData(pParent, L"TEXTSTYLE") fail on XP?Mark Ingram2009-07-06T12:51:49Z2009-07-06T12:51:49ZWould you care to share a link?http://stackoverflow.com/questions/702421/why-restrict-the-length-of-a-passwordComment by Mark Ingram on Why restrict the length of a password?Mark Ingram2009-07-01T14:34:29Z2009-07-01T14:34:29ZAhh the irony ;)http://stackoverflow.com/questions/1063542/what-classes-interfaces-should-every-net-developer-knowComment by Mark Ingram on What classes/interfaces should every .net developer know?Mark Ingram2009-06-30T13:29:48Z2009-06-30T13:29:48ZThis question is a bit ridiculous. It's going to end up being a list of all the classes in the .NET framework - because what's important to one person is meaningless to the next. http://stackoverflow.com/questions/865719/how-to-make-slider-labels-clickable-flex-3/1007632#1007632Comment by Mark Ingram on How to make slider labels clickable [Flex 3]Mark Ingram2009-06-18T08:05:24Z2009-06-18T08:05:24ZThat sounds interesting. I'll try and get this working - thanks!http://stackoverflow.com/questions/875050/how-to-copy-a-byte-into-a-char/875076#875076Comment by Mark Ingram on How to copy a byte[] into a char*?Mark Ingram2009-05-21T13:55:11Z2009-05-21T13:55:11ZYes, good spot. Thankshttp://stackoverflow.com/questions/865719/how-to-make-slider-labels-clickable-flex-3/870722#870722Comment by Mark Ingram on How to make slider labels clickable [Flex 3]Mark Ingram2009-05-16T09:45:06Z2009-05-16T09:45:06ZHi, the slider represents size, going from small -> medium -> large. The slider makes sense in this case because you are showing the increasing size with the slider. At the moment there are 3 fixed sizes, but in the future the restriction might be removed and it could be any size between x and y.http://stackoverflow.com/questions/848101/how-to-paint-transparent-areas-for-child-controls/850750#850750Comment by Mark Ingram on How to paint transparent areas for child controls?Mark Ingram2009-05-12T08:42:47Z2009-05-12T08:42:47ZThat worked beautifully - thank you Larry.