User Ben Daniel - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T21:51:17Zhttp://stackoverflow.com/feeds/user/26335http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/327138/rewriting-embedded-visual-basic-app1Rewriting eMbedded Visual Basic appBen Daniel2008-11-29T03:56:01Z2009-11-23T20:59:28Z
<p>I'm looking at rewriting an eMbedded Visual Basic app I wrote years ago. I'm unsatisified with it because of various problems clients keep having with it now and then over the years, mostly along the lines of the app not loading anymore because a required dll/activex control has gone missing! This is so frustrating and naturally difficult to debug when a client is using it far away. In alot of cases reinstalling the app doesn't fix the problem.</p>
<p>My preference would be to rewrite it in C# since I'm comfortable with C# and DotNet, but I'm also open to other platforms like blackberry or iTouch/iPhone so long as the platform can support maps and GPS. I'd start rewriting it in C# now but I can't be sure that I won't have the same problems in .net.</p>
<p>Has anyone else had similar problems with eVB apps which have gone away/persisted when moving to CF DotNet? Or would you suggest a different platform again?</p>
<p>Edit: Note that I wish to move away from eVB anyway, but if I move to CF DotNet I want to make sure I won't have the same missing dll/control problems.</p>
http://stackoverflow.com/questions/1490815/detect-quadrilateral-points-in-high-contrast-image1Detect Quadrilateral points in high contrast imageBen Daniel2009-09-29T06:05:26Z2009-09-30T11:17:23Z
<p>I need to detect points of quadrilateral in a pretty high contrast image. I understand how I can detect large changes in contrast between 2 pixels, but I'm wondering what would be the best way to detect entire boundaries and corners of a quad in an image.</p>
<p>So I'm basically looking for a good article/algorithm which explains/does this. Note I've seen articles which detect edges but don't actually turn these into vector-based lines. It's the corner points I'm really after! :)</p>
http://stackoverflow.com/questions/1126967/how-to-get-bitsperpixel-from-a-bitmap/1496571#14965710Answer by Ben Daniel for how to get Bitsperpixel from a bitmapBen Daniel2009-09-30T07:25:17Z2009-09-30T07:25:17Z<p>Rather than creating your own function, I'd suggest using this existing function in the framework:</p>
<pre><code>Image.GetPixelFormatSize(bitmap.PixelFormat)
</code></pre>
http://stackoverflow.com/questions/1056012/sending-persisted-jdo-instances-over-gwt-rpc9Sending persisted JDO instances over GWT-RPCBen Daniel2009-06-28T23:13:28Z2009-09-29T13:31:36Z
<p>I've just started learning Google Web Toolkit and finished writing the Stock Watcher tutorial app.</p>
<p>Is my thinking correct that <strong>if one wants to persist a business object</strong> (like a Stock) <strong>using JDO and send it</strong> back and forth to/from the client <strong>over RPC then one has to create two separate classes for that object</strong>: One with the JDO annotations for persisting it on the server and another which is serialisable and used over RPC?</p>
<p>I notice the Stock Watcher has separate classes and I can theorise why:</p>
<ul>
<li>Otherwise the gwt compiler would try
to generate javascript for everything
the persisted class referenced like
JDO and com.google.blah.users.User, etc</li>
<li>Also there may be logic on the server-side
class which doesn't apply to the client
and vice-versa.</li>
</ul>
<p>I just want to make sure I'm understanding this correctly. I don't want to have to create two versions of all my business object classes which I want to use over RPC <em>if I don't have to</em>.</p>
http://stackoverflow.com/questions/664615/lego-mindstorms-programming-which-language-ide-do-you-use-recommend12Lego Mindstorms Programming - which language/IDE do you use/recommend?Ben Daniel2009-03-20T00:57:58Z2009-09-28T12:36:13Z
<p>I'm new to it and currently using the visual flow-chart like language that the Lego Mindstorms IDE uses. I'm impressed with how readable the diagramming language is but missing the flexiblity of actual code. I'm imagining complicated projects I want to try out and don't really want to implement them as a gigantic flow chart! lol :)</p>
<p>I know there are other languages/IDEs you can use but not really sure what they are or which to use. What IDE/language do you recommend for programming Lego Mindstorms projects?</p>
<p>I'd prefer an IDE that still allows me to hit Run and send the program down to the NXT brick via bluetooth and run it immediately.</p>
<p><strong>UPDATE</strong>:
I ended up choosing <a href="http://lejos.sourceforge.net/" rel="nofollow">lejos</a>. Mainly because I've just started learning Java at work which is very similar to C# which I'm already familiar with. <strong>I would recommend Lejos</strong> since Java is a great high level, feature-rich language and there are nice IDE's for it. Eclipse is a great IDE which lejos has a plugin for and ant build scripts make building your project, loading it to the NXT brick and running it on the device a one step process. Lejos does require special firmware on your NXT brick but that went fine and you can always put your old Mindstorms firmware back on later if you want.</p>
<p>If you want to check out other language and IDE options I'd <strong>highly recommend this chart I stumbled across</strong>: <a href="http://www.teamhassenplug.org/NXT/NXTSoftware.html" rel="nofollow">http://www.teamhassenplug.org/NXT/NXTSoftware.html</a></p>
http://stackoverflow.com/questions/1482652/using-linq-order-objects-by-some-property-and-select-the-first-2-objects2Using Linq, order objects by some property and select the first 2 objectsBen Daniel2009-09-27T02:38:13Z2009-09-27T02:50:03Z
<p>Using a linq query/method chainging I wish to select just the first 2 Point objects in a List ordered by Point.X. How can I?</p>
http://stackoverflow.com/questions/1469448/using-linq-find-first-object-in-list-sorting-by-property-a-then-property-b2Using Linq find first object in list sorting by property A, then property BBen Daniel2009-09-24T01:54:22Z2009-09-24T02:06:57Z
<p>I have an unordered list of Points (<code>List<Point></code>) and I want to find the first Point in the list when ordering by X and then Y.</p>
<p>NOTE: I don't want to actually change the order of the items in the List.</p>
http://stackoverflow.com/questions/1308373/ideserializationcallback-vs-ondeserializedattribute/1450643#14506431Answer by Ben Daniel for IDeserializationCallback vs OnDeserializedAttributeBen Daniel2009-09-20T09:11:22Z2009-09-20T09:11:22Z<p>I have wondered the same thing. As far as pros/cons go, I can only reason that the interface has an advantage in that it forces you to implement the correct method signature where-as the attribute version will happily let you compile your class regardless of what your method signature looks like.</p>
http://stackoverflow.com/questions/434569/what-strategy-do-you-use-to-sync-your-code-when-working-from-home8What strategy do you use to sync your code when working from homeBen Daniel2009-01-12T05:58:57Z2009-08-31T23:32:54Z
<p>At my work <strong>I currently have my development environment inside a Virtual Machine</strong>. When I need to do work from home I copy my VM and any databases I need onto a laptop drive sized external USB drive. After about 10 minutes of copying I put the drive in my pocket and head home, copy back the VM and databases onto my personal computer and I'm ready to work. I follow the same steps to take the work back with me. </p>
<p>So <strong>if I count the total amount of time I spend waiting around for files to finish copying in order for me to take work home and bring it back again, it comes to around 40 minutes!</strong> I do have a VPN connection to my work from home (providing the internet is up at both sites) and a decent internet speed (8mbits down/?up) but I find Remote Desktoping into my work machine laggy enough for me to want to work on my VM directly.</p>
<p>So in looking at what other options I have or how I could improve my existing option <strong>I'm interested in what strategy you use or recommend to do work at home and keeping your code/environment in sync.</strong></p>
<p>EDIT: I'd prefer an option where I don't have to commit my changes into version control before I leave work - as I like to make meaningful descriptive comments in my commits, committing would take longer than just copying my VM onto a portable drive! lol Also I'd prefer a solution where my dev environment stays in sync too. Having said that I'm still very interested in your own solutions even if they don't exactly solve my problem as best as I'd like. :)</p>
http://stackoverflow.com/questions/1258146/where-to-save-ini-file-dependant-to-machine-not-user-on-windows3Where to save ini file dependant to machine (not user) on windowsBen Daniel2009-08-11T02:05:03Z2009-08-31T21:32:18Z
<p>My application is currently storing settings in an INI file under the current user's profile (C:\Documents and Settings*\<CurrentUser>*\Application Data\MyApplication\MySettings.ini under WinXP). But I've realised some of these settings are unique to the machine not the user and thus want (actually need) to save them in a single location for all users. </p>
<p><strong>Is there a folder location on Windows XP (and up) where I can store user independant settings?</strong></p>
<p><strong>NOTE:</strong> I don't want to store them in the same folder as my application nor do I want to store them in the registry.</p>
<p>I notice there is an "All Users" folder under "C:\Documents and Settings\"? Should I be storing under there?</p>
<p><strong>Bonus Points:</strong> I'm more likely to award the answer to whoever can also tell me how to return this path from Windows in Delphi 7.</p>
http://stackoverflow.com/questions/1218041/how-to-create-an-array-of-controls/1218109#12181092Answer by Ben Daniel for How to create an array of controls?Ben Daniel2009-08-02T03:52:20Z2009-08-02T09:50:01Z<p>This function will iterate over all the controls on a specified container, like a particular TPanel or even the entire form, and populate a specified TObjectList with your TImage controls.</p>
<pre><code>procedure TForm1.AddImageControlsToList(AParent: TWinControl; AList: TObjectList; Recursive: boolean);
var
Index: integer;
AChild: TControl;
begin
for Index := 0 to AParent.ControlCount - 1 do
begin
AChild := AParent.Controls[Index];
if AChild is TImage then // Or whatever test you want to use
AList.Add(AChild)
else if Recursive and (AChild is TWinControl) then
AddImageControlsToList(TWinControl(AChild), AList, True);
end;
end;
procedure TForm1.FormCreate(Sender: TObject);
begin
// Call like this or similar to get your list of images
// (assumes MyImageList is declared in Form)
MyImageList := TObjectList.Create(False);
AddImageControlsToList(Self, MyImageList, True);
end;
procedure TForm1.FormDestroy(Sender: TObject);
begin
// Destroy the list
FreeAndNil(MyImageList);
end;
</code></pre>
http://stackoverflow.com/questions/1218041/how-to-create-an-array-of-controls/1218046#12180463Answer by Ben Daniel for How to create an array of controls?Ben Daniel2009-08-02T02:53:24Z2009-08-02T02:53:24Z<p>You may not be able to reference public properties of your form in an array constant like that. Try doing it in your form constructor/OnCreate event instead.</p>
<pre><code>procedure TForm1.FormCreate(Sender: TObject);
begin
Test[0] := Button1;
Test[1] := Button2;
Test[2] := Button3;
end;
</code></pre>
http://stackoverflow.com/questions/412256/can-the-iphone-determine-if-youre-facing-north-south-east-or-west/412284#4122840Answer by Ben Daniel for Can the iPhone determine if you're facing north, south, east or west?Ben Daniel2009-01-05T04:40:22Z2009-07-28T22:59:46Z<p>To my knowledge there is <strong>no compass in the iPhone 3G</strong>. Unfortunately, unless I'm missing something I don't think looking at GPS and accelerometer data will help you determine which direction the iPhone is facing - only the direction you're travelling. Sorry.</p>
<p><strong>UPDATE</strong>: Note that the question and this post was written when iPhone 3G was the current model, since then Apple has released the <strong>iPhone 3GS</strong> which <strong>introduced a compass</strong>.</p>
http://stackoverflow.com/questions/1186328/embedded-http-server-in-swing-java-app2Embedded HTTP server in Swing Java appBen Daniel2009-07-27T03:47:17Z2009-07-27T18:22:57Z
<p>I wish to embed a very light HTTP server in my java swing app which just accepts requests, performs some actions and returns the results.</p>
<p>Is there a very light java class that I can use in my app which listens on a specified port for Http requests and lets me handle requests?</p>
<p>Note that I am not looking for a stand-alone http server, just a small java class which I can use in my java app.</p>
http://stackoverflow.com/questions/440959/how-would-a-software-programmer-go-about-getting-a-job-in-robotics11How would a software programmer go about getting a job in robotics?Ben Daniel2009-01-13T21:52:49Z2009-07-08T11:41:25Z
<p>I've been a Win32 programmer for the last 8 years now and as I see my mid-life crisis rapidly approaching I begin to wonder: <em>What I have really accomplished?</em> and <em>am I <strong>really</strong> happy in my career and what do I <strong>really want</strong> to be doing in my work life?</em></p>
<p>I can see Bill Gates' vision of a future with robots in the home just like how a large percentage (most?) of western homes have a computer today. I think this could be an interesting field, especially in programming Artificial Intelligence.</p>
<p>So I'd like to know, how whould a software programmer go about learning and getting hired in the field of robotics?</p>
<p>I'm aware of the MS Robotics Studio; however I'm more interested in what steps to take to pursue this as a career.</p>
http://stackoverflow.com/questions/664615/lego-mindstorms-programming-which-language-ide-do-you-use-recommend/1083273#10832732Answer by Ben Daniel for Lego Mindstorms Programming - which language/IDE do you use/recommend?Ben Daniel2009-07-05T00:58:39Z2009-07-05T00:58:39Z<p>FYI, I came across this extremely helpful feature comparison chart of different languages which you can program the NXT in:</p>
<p><a href="http://www.teamhassenplug.org/NXT/NXTSoftware.html" rel="nofollow">http://www.teamhassenplug.org/NXT/NXTSoftware.html</a></p>
http://stackoverflow.com/questions/514812/which-bug-in-the-delphi-ide-vcl-do-you-despise-the-most1Which bug in the Delphi IDE / VCL do you despise the most?Ben Daniel2009-02-05T06:32:30Z2009-02-12T21:36:25Z
<p>I've been working in Delphi 7 for the last 6 years now and have learnt to merely submit to the instablity of the IDE. For example, there are particular projects I've inherited which, when working on, I cannot use the CTRL+SPACE dropdown symbol list in the Delphi editor without getting an Access Violation error, this would easily top my list but there are many more. I'd like to know which bugs frustrate you the most.</p>
http://stackoverflow.com/questions/518331/programming-the-next-big-language/518520#5185200Answer by Ben Daniel for Programming: The next big languageBen Daniel2009-02-05T23:46:56Z2009-02-05T23:46:56Z<p>That diagram language you use to write Lego Mindstorms programs in! ;)</p>
http://stackoverflow.com/questions/514812/which-bug-in-the-delphi-ide-vcl-do-you-despise-the-most/518480#5184800Answer by Ben Daniel for Which bug in the Delphi IDE / VCL do you despise the most?Ben Daniel2009-02-05T23:33:38Z2009-02-05T23:33:38Z<p>I also hate it when Delphi seems to decide <em>on a whim</em> <strong>not to compile runtime packages into your executable</strong>.</p>
<p>The exe appears to work fine because it can find the bpls it needs at runtime on my dev box and the problem is only discovered after it leaves my machine. Grrr.</p>
http://stackoverflow.com/questions/482497/get-tchartseries-at-xy-point-in-tchart/514121#5141211Answer by Ben Daniel for Get TChartSeries at XY Point in TChartBen Daniel2009-02-05T01:07:03Z2009-02-05T05:32:54Z<p>I finally found this method which works with multiple series (even of different types) in a chart.</p>
<pre><code>TChart.CalcClickedPart(Pos: TPoint; Var Part: TChartClickedPart);
</code></pre>
<p>The method fills a TChartClickedPart record which contains the following detailed hit-test information:</p>
<pre><code>TChartClickedPart = record
Part : TChartClickedPartStyle;
PointIndex : Integer;
ASeries : TChartSeries;
AAxis : TChartAxis;
end;
</code></pre>
<p>This includes the Series and the ValueIndex (PointIndex) which is exactly what I wanted.</p>
http://stackoverflow.com/questions/482497/get-tchartseries-at-xy-point-in-tchart1Get TChartSeries at XY Point in TChartBen Daniel2009-01-27T06:44:14Z2009-02-05T05:32:54Z
<p>I'm using the <strong>TChart control that comes with Delphi 7</strong> and wish to <strong>get the Series and Value # of the line/bar under the mouse pointer.</strong></p>
<p>I'm aware of the OnClickSeries event which provides great info but <strong>I really want this info when I <em>hover</em> over a series</strong>.</p>
<p>EDIT: I found a hittest method on TChart which works with any series types and multiple series in the one chart so I've posted this and made it my accepted answer. Special Thanks to GameCat for his effort.</p>
http://stackoverflow.com/questions/502319/carrying-and-working-on-an-entire-development-box-from-a-usb-stick-feasible/502382#5023822Answer by Ben Daniel for Carrying and Working on an Entire Development Box from a USB Stick. Feasible ?Ben Daniel2009-02-02T06:41:00Z2009-02-02T06:57:56Z<p>I absolutely agree with where you are heading. I wish to do this myself.</p>
<p>But if you don't already know, it's not just about drive size, believe it or not <strong>USB Flash drives can be much slower than your spinning disk drives</strong>!</p>
<p>This <strong>can be a big problem if</strong> you plan to actually <strong>run the VMs directly from the USB drive!</strong></p>
<p>I've tried running a 4GB Windows XP VM on a 32GB Corsair Survivor and the VM was virtually unusuable! Also copying my 4GB VM off and back onto the drive was also quite slow - about 10 minutes to copy it onto the drive.</p>
<p>If you have an esata port <strong>I'd highly recommend looking at high-speed ESata</strong> options like this <a href="http://www.kanguru.com/eflash.html" rel="nofollow">Kanguru 32GB ESata/USB Flash drive</a> OR <a href="http://www.ocztechnology.com/products/flash_drives/ocz_throttle_esata_flash_drive" rel="nofollow">this 32GB one by OCZ</a>.</p>
<p>The read and write speeds of these drives are much higher over ESata than other USB drives. And you can still use them as USB if you don't have an ESata port. Though if you don't have an ESata port you can buy PCI to ESata cards online and even ESata ExpressCards for your laptop.</p>
<p><em>EDIT: A side note, you'll find the USB flash drives use FAT instead of NTFS. You don't want to use NTFS because it makes a lot more reads & writes on the disk and your drive will only have a limited number of reads & writes before it dies. But by using FAT you'll be limited to max 2GB file size which might be a problem with your VM. If this is the case, you can split your VM disks into 2GB chunks. Also make sure you backup your VM daily incase your drive does reach it's maximum number of writes. :)</em></p>
http://stackoverflow.com/questions/482966/if-you-could-work-in-any-programming-related-technology-field-of-your-choice-whi1If you could work in any programming-related technology/field of your choice, which would it be?Ben Daniel2009-01-27T10:54:01Z2009-01-27T12:53:01Z
<p>I'm interested to know which <strong>programming-related areas of technology</strong> people are most interested in. If you could work on any technology/field which would it be?</p>
<p>Feel free to go all futuristic on me. :)</p>
<p>For example, some areas I'd love to work on if I could would be artificial inteligence, real-world simulations, robotics, nano-technology, cybernetic limbs/implants.</p>
http://stackoverflow.com/questions/478952/how-to-tell-if-connected-to-internet3How to tell if connected to internetBen Daniel2009-01-26T06:08:10Z2009-01-26T06:52:41Z
<p><strong>I wish to write a windows app which does something when I become disconnected from the internet</strong>. I was thinking of writing a very simple C#/Delphi app which simply polls every 20 seconds to see if I'm still connected.</p>
<p>If I have to poll I'd really like a solution other than trying to download a web page from the net. I can't assume that a download attempt failing means "not online" since there may be other apps eating up the internet bandwidth. Plus I'm sure constantly connecting/downloading from a particular site is going to get my IP blocked.</p>
<p>I'm sure there's a <strong>way to tell if you're online without downloading/connecting to a remote server</strong> but I'm not sure how.</p>
http://stackoverflow.com/questions/478947/what-are-some-good-resources-for-learning-about-neural-networks/478956#4789568Answer by Ben Daniel for What are some good resources for learning about Neural Networks?Ben Daniel2009-01-26T06:09:44Z2009-01-26T06:19:24Z<p>I'd <strong>highly recommend</strong> this excellent series by <strong>Anoop Madhusudanan</strong> on <a href="http://www.codeproject.com/KB/recipes/brainnet.aspx" rel="nofollow">Code Project</a>.</p>
<p>He takes you through the fundamentals to understanding how they work in an <strong>easy to understand way</strong> and shows you how to use <strong>his brainnet library</strong> to create your own.</p>
http://stackoverflow.com/questions/471489/delphi-library-path-what-should-really-be-going-in-there4Delphi Library Path - what should really be going in there?Ben Daniel2009-01-23T01:06:32Z2009-01-23T08:39:56Z
<p><strong>I've been putting the path to the unit (.pas) file folders of our packages into the Delphi Library path but I'm beginning to wonder if this is a mistake!</strong> Take this problem for an example:</p>
<p>I have two home grown packages:</p>
<ul>
<li>LowLevelPackage</li>
<li>HighLevelPackage</li>
</ul>
<p>HighLevelPackage uses units contained in LowLevelPackage.</p>
<p>If the path to both package's unit folders are in the library path then there is the chance of me building HighLevelPackage before LowLevelPackage and HighLevelPackage will implicitedly contain LowLevelPackage's units (i think?).</p>
<p><strong>I'm wondering if instead I should be putting the path to the DCUs of these packages into the Library Path. And maybe putting the path to the actual source units in the Browsing Path so we can still step into them when debugging.</strong></p>
<p><strong>Does that sound right? What should really be going into the Library Path? Paths to <em>.DCUs? .DCPs? .BPLs? or .PASs?</em></strong></p>
http://stackoverflow.com/questions/471489/delphi-library-path-what-should-really-be-going-in-there/471654#4716541Answer by Ben Daniel for Delphi Library Path - what should really be going in there?Ben Daniel2009-01-23T02:19:54Z2009-01-23T02:19:54Z<p>Hmmm, I just had a look at Delphi Help's word on library path:</p>
<blockquote>
<p>Library Path
Specifies search paths where compiler
can find the source files for the
package. The compiler can find only
those files listed in the library
path. If you try to build your package
with a file not on the library path,
you will receive a compiler error.</p>
</blockquote>
<p>I'm not sure I agree with this as it means every package can see every other package's source units so if one package used another packages units and you built them out of order I believe there's potential for dependencies getting screwed up. Oh well, who am I to question Delphi Help, lol. ;)</p>
http://stackoverflow.com/questions/468195/which-icon-editing-software-would-you-recommend-for-creating-icons-for-apps2Which Icon Editing Software would you recommend for creating icons for appsBen Daniel2009-01-22T06:16:19Z2009-01-22T07:11:05Z
<p>I once bought a single license of <a href="http://www.microangelo.us/" rel="nofollow">Microangelo</a> for creating icons which served me well in the past, but now I'm helping run up a new Virtual Machine base for our dev team to use and would like to include a <strong>decent free icon editor</strong> in there.</p>
<p>I'd prefer something that fully supports creating icons for Windows Vista.</p>
<p>For all those of you thinking "Don't let a developer design graphics!" just pretend I said "for our UI Design Team" instead of "Dev Team", lol. ;)</p>
http://stackoverflow.com/questions/449532/should-consecutive-whitespace-in-an-xml-file-be-ignored-by-an-xml-reader2Should consecutive whitespace in an XML file be ignored by an XML reader?Ben Daniel2009-01-16T04:44:49Z2009-01-17T02:47:11Z
<p>At my work we have our own XML classes which build a DOM, but I'm not sure how consecutive whitespace should be handled?</p>
<p>e.g.</p>
<pre><code><some-text>
Hello World
</some-text>
</code></pre>
<p>When this is read into the DOM, should the text node include the consecutive whitespace inbetween Hello and World or just reduce it to one space?</p>
<p>Or should the XML source be written like this:</p>
<pre>
<some-text>
Hello &nbsp;&nbsp;&nbsp;&nbsp;World
</some-text>
</pre>
<p>or if not &nbsp; than perhaps &#32; ?</p>
http://stackoverflow.com/questions/449627/are-line-breaks-in-xml-attribute-values-valid4Are line breaks in XML attribute values valid?Ben Daniel2009-01-16T05:57:13Z2009-01-16T06:12:16Z
<p>I realise that it's not elegant or desired, but is it valid for an attribute value in an XML element to span multiple lines?</p>
<p>e.g.</p>
<pre><code><some-xml-element value="this value goes over....
multiple lines!" />
</code></pre>
<p>Yeah I realise there's better ways of writing that. I would personally write it like:</p>
<pre><code><some-xml-element>
<value>this value goes over...
multiple lines!</value>
</some-xml-element>
</code></pre>
<p>or:</p>
<pre><code><some-xml-element value="this value goes over....&#13;&#10;" />
</code></pre>
<p>But we have our own XML parser and I'd like to know whether the first example is valid for XML.</p>
http://stackoverflow.com/questions/144250/how-to-get-the-rgb-values-for-a-pixel-on-an-image-on-the-iphone/497962#497962Comment by Ben Daniel on How to get the RGB values for a pixel on an image on the iphoneBen Daniel2009-11-02T09:45:31Z2009-11-02T09:45:31ZYou'd be better off asking this as a separate question (and removing this as an answer!)http://stackoverflow.com/questions/144250/how-to-get-the-rgb-values-for-a-pixel-on-an-image-on-the-iphone/694139#694139Comment by Ben Daniel on How to get the RGB values for a pixel on an image on the iphoneBen Daniel2009-11-02T09:42:38Z2009-11-02T09:42:38ZGreat detail but this answer could do with some tidying up. The code needs to be properly marked as code so it presents properly. I'd do it myself but I don't yet have the ability to edit other people's answers.http://stackoverflow.com/questions/1160229/how-to-get-the-color-of-a-pixel-in-an-uiviewComment by Ben Daniel on How to get the color of a pixel in an UIView?Ben Daniel2009-10-11T01:42:42Z2009-10-11T01:42:42ZDid you find a (fast) solution?http://stackoverflow.com/questions/1068373/how-to-calculate-the-average-rgb-color-values-of-a-bitmap/1335633#1335633Comment by Ben Daniel on How to calculate the average rgb color values of a bitmapBen Daniel2009-10-02T06:59:26Z2009-10-02T06:59:26Zlol, Interesting. I wonder if it's any faster than the LockBits method? (I'd time the two myself but I'm LAZY! lol) +1http://stackoverflow.com/questions/1469448/using-linq-find-first-object-in-list-sorting-by-property-a-then-property-b/1469454#1469454Comment by Ben Daniel on Using Linq find first object in list sorting by property A, then property BBen Daniel2009-09-24T02:29:56Z2009-09-24T02:29:56ZThanks. I don't mind the look of the method chaining syntax at all, however I do wonder if one way is more effiencent than the other?..http://stackoverflow.com/questions/273313/randomize-a-listt-in-c/1262619#1262619Comment by Ben Daniel on Randomize a List<T> in C#Ben Daniel2009-09-24T00:06:54Z2009-09-24T00:06:54ZNice! I love extension methods :Dhttp://stackoverflow.com/questions/76134/how-do-i-reverse-project-2d-points-into-3d/76306#76306Comment by Ben Daniel on How do I reverse-project 2D points into 3D?Ben Daniel2009-09-22T06:14:10Z2009-09-22T06:14:10ZJust to clarify, by "ignoring flipping/rotating the paper" I mean ignoring duplicate cases where you've just rotated the rectangular paper 180 degrees.http://stackoverflow.com/questions/76134/how-do-i-reverse-project-2d-points-into-3d/76306#76306Comment by Ben Daniel on How do I reverse-project 2D points into 3D?Ben Daniel2009-09-22T06:11:00Z2009-09-22T06:11:00ZYou sound like you were so close Jarrett! I don't think you really believe there are infinite projections. I mean if you hold up a piece of paper in front of you, there is only one position and orientation in 3d space you can hold it that it will appear exactly the same (ignoring flipping/rotating the paper). Furthermore, if you close your eyes and I hold up a piece of paper up in front of you, when you open your eyes you can reason pretty well where that paper is positioned in 3d space by only seeing the world as a 2d image and knowing the size of the paper. So surely math can do it too?http://stackoverflow.com/questions/1001347/iphone-camera-preview-overlayComment by Ben Daniel on iPhone: Camera Preview OverlayBen Daniel2009-09-07T10:41:10Z2009-09-07T10:41:10Zdid you end up solving this?http://stackoverflow.com/questions/76134/how-do-i-reverse-project-2d-points-into-3dComment by Ben Daniel on How do I reverse-project 2D points into 3D?Ben Daniel2009-09-07T08:42:54Z2009-09-07T08:42:54ZHi Joshua, any luck yet? I'd very much like to see the code that solved it if you did please! :Dhttp://stackoverflow.com/questions/1258146/where-to-save-ini-file-dependant-to-machine-not-user-on-windows/1258161#1258161Comment by Ben Daniel on Where to save ini file dependant to machine (not user) on windowsBen Daniel2009-08-11T22:41:43Z2009-08-11T22:41:43ZOuch! Thanks for the heads up Chris...so how do I do that? Or is there a better location which doesn't have this restriction?http://stackoverflow.com/questions/1218041/how-to-create-an-array-of-controls/1218046#1218046Comment by Ben Daniel on How to create an array of controls?Ben Daniel2009-08-02T04:03:19Z2009-08-02T04:03:19ZOkay, I've posted separate answer with a recursive add to list method you might find useful too.http://stackoverflow.com/questions/1218041/how-to-create-an-array-of-controlsComment by Ben Daniel on How to create an array of controls?Ben Daniel2009-08-02T03:35:13Z2009-08-02T03:35:13ZWhat is it you want to do exactly? Are all the controls buttons or a mix of different controls? Do they have something in common, like are they all sitting on the same parent control or naming convention? Also, what version of Delphi are you using?http://stackoverflow.com/questions/1218041/how-to-create-an-array-of-controls/1218046#1218046Comment by Ben Daniel on How to create an array of controls?Ben Daniel2009-08-02T03:30:33Z2009-08-02T03:30:33ZAll our answers would work fine for your question. Could I suggest elaborating on your situation a bit so we could come up with a better suited answer?http://stackoverflow.com/questions/1218041/how-to-create-an-array-of-controls/1218046#1218046Comment by Ben Daniel on How to create an array of controls?Ben Daniel2009-08-02T03:26:36Z2009-08-02T03:26:36ZOkay, I would only suggest what Mason or Lachlan have already suggested. You may want to check out Delphi Help on TControl.Controls, TControl.ControlCount, TComponent.Components, TComponent.ComponentCount, TComponent.FindComponent. These are all very useful methods for iterating over controls/components sitting on a TWinControl/owned by a component.