User Dave Arkell - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T04:02:04Zhttp://stackoverflow.com/feeds/user/4002http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1491627/is-c-suitable-for-a-scripting-language/1491653#14916534Answer by Dave Arkell for Is C# suitable for a scripting language?Dave Arkell2009-09-29T10:07:51Z2009-09-29T10:07:51Z<p>I would say that the usual benefits of a scripting language are: </p>
<ol>
<li>It normally has a command line interpreter</li>
<li>You don't necessarily have to compile it</li>
<li>It's easy to change the code - because the source file is the actual 'executable'</li>
</ol>
<p>These are not features of C#, so a language that can do pretty much all that would be powershell, as it uses .net so it has access to all the features you might use in c#.</p>
http://stackoverflow.com/questions/1366523/adding-items-to-a-collection/1366694#13666940Answer by Dave Arkell for Adding items to a collectionDave Arkell2009-09-02T09:34:18Z2009-09-02T09:34:18Z<p>It seems to me that you can't add a UserGroup into a UsergroupsBookingNofication. I don't know for sure because I don't know what your relationships are.</p>
http://stackoverflow.com/questions/974383/linq-query-how-to-build-nested-objects-from-single-table/974538#9745381Answer by Dave Arkell for Linq query, how to build nested objects from single tableDave Arkell2009-06-10T09:22:14Z2009-06-10T10:45:09Z<p>Just tried out a solution:</p>
<pre><code>var nestedObjects = from row in data
select new {row.PointA, row.PointB, Details = new {
row.Month, ExtraDetails = new {
row.Time, row.Price
}
}};
</code></pre>
<p>This is assuming that you have already got your data into data.</p>
<p><hr /></p>
<p><strong>Group by</strong></p>
<p>If you want to group the Points together, you need 'Group By':</p>
<pre><code>var nestedObjects = from row in data
group row by new { row.PointA, row.PointB } into Points
select new {
Points = Points.Key,
Details = from details in Points
select new { row.Month, ExtraDetails = new {
row.Time, row.Price
}}
};
</code></pre>
<p>A little more complicated - of course you might want to group by month as well, in which case, you need to follow the same pattern as for the Points bit. Note, this will not create tables, because the group by doesn't quite do that, but it at least creates the structure for you.</p>
http://stackoverflow.com/questions/968961/iphone-dev-box/969086#969086-1Answer by Dave Arkell for iPhone dev boxDave Arkell2009-06-09T09:34:21Z2009-06-09T09:34:21Z<p>Of course, if you're happy to jailbreak your iphone, you can ssh into it and compile apps directly on the device (the jailbreak can install gcc and make and the rest). I've done this for a couple of experimental projects while trying to learn objective C and all that stuff. Worth trying out if you're not totally sure whether or not you want to go ahead with it.</p>
http://stackoverflow.com/questions/955973/looking-for-clean-winforms-mvc-tutorial-for-c/956046#9560460Answer by Dave Arkell for Looking for clean WinForms MVC tutorial for C#Dave Arkell2009-06-05T14:07:45Z2009-06-05T14:07:45Z<p>It might be worth looking at the Model-View-ViewModel (if you're interested/happy to use WPF particularly).</p>
<p>It's tweaked specifically to work with WPF and Silverlight, and makes use of databinding in order to glue everything together.</p>
<p>There's a number of resources on the web for finding out more, including John Gossman's <a href="http://blogs.msdn.com/johngossman/archive/2005/10/08/478683.aspx" rel="nofollow">introduction</a>, and a good <a href="http://msdn.microsoft.com/en-us/magazine/dd419663.aspx" rel="nofollow">article</a> by Josh Smith, who has other resources on his <a href="http://joshsmithonwpf.wordpress.com/" rel="nofollow">blog</a> relating to MVVM.</p>
http://stackoverflow.com/questions/896987/i-want-to-create-a-wpf-application-which-will-remove-the-red-eye-from-the-image/955548#9555480Answer by Dave Arkell for I want to create a wpf application which will remove the red eye from the imageDave Arkell2009-06-05T12:08:23Z2009-06-05T12:08:23Z<p>There's some more stuff in another stack overflow post <a href="http://stackoverflow.com/questions/133675/red-eye-reduction-algorithm">here</a>.</p>
http://stackoverflow.com/questions/944913/setting-a-configuration-file-to-an-xml-file/945012#9450121Answer by Dave Arkell for Setting a configuration file to an XML fileDave Arkell2009-06-03T14:13:39Z2009-06-03T14:13:39Z<p>You can use the System.Xml.Serialization.XmlSerializer class to automatically pull the settings into a custom class.</p>
<p>Create a class with your settings:</p>
<pre><code>public class Settings
{
private string connectionString;
public string ConnectionString
{
get { return connectionString; }
set { connectionString = value; }
}
}
</code></pre>
<p>Then use the following to pickup data:</p>
<pre><code>Settings settings = new Settings();
FileStream filestream = new FileStream("settings.xml", FileMode.Open);
System.Xml.Serialization.XmlSerializer cereals = new System.Xml.Serialization.XmlSerializer(typeof(Settings));
settings = cereals.Deserialize(filestream);
</code></pre>
<p>Likewise, if you want to assign the current object to the settings file, do this:</p>
<pre><code>XmlSerializer cereals = new XmlSerializer(typeof(Settings));
System.IO.FileStream writer = new FileStream("settings.xml", FileMode.Create);
cereals.Serialize(writer, settings);
</code></pre>
<p>In this case the "settings.xml" file is in the current directory, but I normally put it in the User's app data folder, because you can always write to that.</p>
http://stackoverflow.com/questions/819961/auto-update-your-applications-through-windows-update/943993#9439931Answer by Dave Arkell for Auto update your applications through Windows UpdateDave Arkell2009-06-03T10:16:24Z2009-06-03T10:16:24Z<p>You can use the <a href="http://www.codeproject.com/KB/IP/sharpBITS.aspx?fid=321911&df=90&mpp=25&noise=3&sort=Position&view=Quick&select=2947694" rel="nofollow">BITS</a> downloader that Microsoft Update uses to download the files in the background.</p>
http://stackoverflow.com/questions/938464/popup-window-on-a-specific-time-in-wpf/938578#9385782Answer by Dave Arkell for PopUp window on a specific time in WPF?Dave Arkell2009-06-02T09:01:45Z2009-06-03T09:58:26Z<p>You could use a timer if you're trying to make the thing popup in a certain number of hours/seconds/minutes (or work out how many hours/seconds/minutes are left until your specific time comes around).</p>
<pre><code>private System.Windows.Threading.DispatcherTimer popupTimer;
// Whatever is going to start the timer - I've used a click event
private void OnClick(object sender, RoutedEventArgs e)
{
popupTimer = new System.Windows.Threading.DispatcherTimer();
// Work out interval as time you want to popup - current time
popupTimer.Interval = specificTime - DateTime.Now;
popupTimer.IsEnabled = true;
popupTimer.Tick += new EventHandler(popupTimer_Tick);
}
void popupTimer_Tick(object sender, EventArgs e)
{
popupTimer.IsEnabled = false;
// Show popup
// ......
}
</code></pre>
<p><hr /></p>
<p>Ok, so you also want to know how to do a notifier popup type thing, which maybe this article in <a href="http://www.codeproject.com/KB/WPF/WPF%5FTaskbarNotifier.aspx?display=Print" rel="nofollow">CodeProject</a> might help.</p>
http://stackoverflow.com/questions/938610/automated-website-folder-backup-system-needed-any-recommendations/938627#9386271Answer by Dave Arkell for Automated website folder backup system needed? Any recommendations?Dave Arkell2009-06-02T09:24:03Z2009-06-02T09:24:03Z<p>I think you need to post that question at <a href="http://serverfault.com/">Server Fault</a>.</p>
http://stackoverflow.com/questions/934873/using-stackpanel-as-contentcontrol-wpf/934960#9349600Answer by Dave Arkell for Using StackPanel as ContentControl (WPF)Dave Arkell2009-06-01T14:03:46Z2009-06-01T15:13:09Z<p>I would say it looks like the ItemsControl is what is displaying the buttons vertically. if you want the buttons in the itemsControl to be horizontal, then you need the StackPanel to be in the ItemsControl ItemsPanelTemplate, not the other way round like what you have in your code:</p>
<pre><code><ItemsControl IsTabStop="False" ItemsSource="{Binding Path=BranchCommands}">
<ItemsControl.ItemTemplate>
<DataTemplate>
<Button Tag="{Binding}" Padding="3">
<TextBlock Text="{Binding Path=DisplayValue}" />
</Button>
</DataTemplate>
</ItemsControl.ItemTemplate>
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Horizontal"/>
</ItemsPanelTemplate>
<ItemsControl.ItemsPanel>
</ItemsControl>
</code></pre>
<p>I might be slightly wrong on the ItemsControl.ItemsPanel bit as I haven't got any data to test it with...</p>
<p><strong>Edit:</strong> In addition to the Bea reference, there's some good stuff by <a href="http://drwpf.com/blog/Home/tabid/36/EntryID/28/Default.aspx" rel="nofollow">Dr WPF</a>.</p>
http://stackoverflow.com/questions/883736/castor-and-ikvm1Castor and IKVMDave Arkell2009-05-19T16:17:34Z2009-05-21T11:39:28Z
<p>I've converted an api written in Java into a .net dll using IKVM, and so far it's been good.</p>
<p>It basically uses xml behind the scenes to access some web services. The api is 3rd party, and I have no access to the source code. The api uses Castor to (I believe) bind xml into objects.</p>
<p>However, when I started to use some of the more useful parts of the api, I came up with a problem with castor. My specific error is:</p>
<p>"Nested error: org.exolab.castor.mapping.MappingException: Could not find the class ..."</p>
<p>The class mentioned is part of the api. From scouring the web, it <a href="http://www.mail-archive.com/castor-user@exolab.org/msg00196.html" rel="nofollow">seems</a> that castor cannot access the class because it's in a separate assembly from castor.</p>
<p>My problem is that I don't really understand enough about Classloaders in Java, and probably don't know enough about IKVM to sort this out.</p>
<p>Has anyone used IKVM with Castor (or some other library that possibly uses reflection on Java classes), and ran into this problem before?</p>
http://stackoverflow.com/questions/883736/castor-and-ikvm/892506#8925060Answer by Dave Arkell for Castor and IKVMDave Arkell2009-05-21T11:39:28Z2009-05-21T11:39:28Z<p>Well, I'm surprised that nobody had any answers for this, so I posted my question to the ikvm mailing list, and got a reply.</p>
<p>The answer is indeed to do with the separation of the Castor library and the 3rd party api code I was using.</p>
<p>The solution I used was to add the option:</p>
<pre><code>-classloader:ikvm.runtime.AppDomainAssemblyClassLoader
</code></pre>
<p>when compiling Castor with ikvmc.</p>
<p>This allowed Castor to communicate with the 3rd part api, and allowed me to grab a report from the web service.</p>
http://stackoverflow.com/questions/891873/how-to-read-xml-spread-sheet/891971#8919711Answer by Dave Arkell for How to Read xml spread sheetDave Arkell2009-05-21T08:56:26Z2009-05-21T09:20:26Z<p>Looks like your connection string is set for older binary format Excel files. You want a different connection string for XML. If you are talking about the new Excel 2007 xml files, then you need this <a href="http://www.connectionstrings.com/excel-2007" rel="nofollow">connection string</a>:</p>
<pre><code>Provider=Microsoft.ACE.OLEDB.12.0;Data Source=c:\myFolder\myExcel2007file.xlsx;Extended Properties="Excel 12.0 Xml;HDR=YES";
</code></pre>
<p>If you're talking about the older xml format that came in Excel 2003, then I'm not sure there is a connection string. In which case, your best bet is to open in Excel and then save as an xls file, and use the connection string you were originally using.</p>
<p>By the way, <a href="http://www.connectionstrings.com" rel="nofollow">ConnectionStrings.com</a> is a great place to find any old connection string that you might need to access all different kinds of data.</p>
<p>Also note, as others have noted, that if it is an xml file, it shouldn't have an xls file extension, it should be either .xml or .xlsx.</p>
http://stackoverflow.com/questions/49747/autoupdating-net-applications4Autoupdating .net applicationsDave Arkell2008-09-08T13:51:44Z2009-05-06T14:26:34Z
<p>I've written 2 reasonably large scale apps in .net so far, and both of them have needed an updating facility to automatically update the application when I roll out new code.</p>
<p>I've found the 'Enterprise application block updater' a bit too complex for my needs, and I've found 'click once' frustrating when it comes to publishing.</p>
<p>The most adequate updating code I've found is the <a href="http://windowsclient.net/articles/appupdater.aspx" rel="nofollow">.net Application Updater Component</a>, which I've used for both projects. I've had to modify it recently because it uses web dav, which isn't always installed on our web servers (it still needs directory browsing, however).</p>
<p>I'm surprised that there isn't more on the web about automatically updating applications, and was wondering whether people have had success with any other methods than the ones mentioned above?</p>
http://stackoverflow.com/questions/52134/determining-if-an-assembly-is-part-of-the-net-framework3Determining if an assembly is part of the .net frameworkDave Arkell2008-09-09T15:18:14Z2009-04-25T13:47:42Z
<p>How can I tell from the assemblyName, or Assembly class (or others like it), whether an assembly is part of the .net framework (ie System.windows.Forms)?</p>
<p>So far I've considered the PublicKeyToken, and CodeBase properties, but these are not always the same for the whole framework.</p>
<p><hr /></p>
<p><strong>Edit:</strong> The reason I want this info is to get a list of assemblies that my exe is using that need to be on client machines, so I can package the correct files in a setup file without using the Visual Studio setup system. The problem is, I don't want to pick up any Framework assemblies, and I want it to be an automatic process that is easy to roll out whenever a major update is finished.</p>
<p>The ultimate solution would be that there is an IsFramework property....:)</p>
http://stackoverflow.com/questions/52022/getting-a-list-of-assemblies-needed-by-application1Getting a list of assemblies needed by applicationDave Arkell2008-09-09T14:34:29Z2008-11-21T09:34:11Z
<p>Is there a way of getting all required assemblies (excluding the .net framework) for a .net project into a folder ready to be packaged into an <a href="http://nsis.sourceforge.net/Main_Page" rel="nofollow">nsis</a> as setup file?</p>
<p>I've tried writing a small console app that uses reflection to get a list of dlls but have got stuck with finding a foolproof way of determining if a dll is from the .net framework or not.</p>
<p>The answer could be a simple switch in Visual Studio to output all dependencies, or a standalone app that can do it, or a plugin for Nsis, or some information on reflection that I've missed.</p>
http://stackoverflow.com/questions/178887/changing-form-opactity-without-changing-opacity-of-contained-controls/187697#1876972Answer by Dave Arkell for Changing form opactity without changing opacity of contained controlsDave Arkell2008-10-09T15:08:01Z2008-10-09T15:08:01Z<p>Of course, this is possible in WPF by setting the background of the form to transparent (as opposed to setting opacity to 0, which basically sets transparency on both foreground and background).</p>
<p>If you really wanted to, I don't see why you couldn't embed a winforms component into a transparent wpf form, using WindowsFormsHost.</p>
http://stackoverflow.com/questions/158175/how-do-you-do-relative-positioning-in-wpf/161532#1615321Answer by Dave Arkell for How do you do relative positioning in WPF?Dave Arkell2008-10-02T09:42:35Z2008-10-02T09:42:35Z<p>Instead of putting (as in your example) a button directly on the canvas, you could put a stackpanel on the canvas, horizontally aligned, and put the two buttons in there.</p>
<p>Like so:</p>
<pre><code><Canvas>
<StackPanel Canvas.Left="100" Canvas.Top="100" Orientation="Horizontal">
<Button>Button 1</Button><Button>Button 2</Button>
</StackPanel>
</Canvas>
</code></pre>
<p><img src="http://farm4.static.flickr.com/3105/2907118452_d37fee4e41.jpg?v=0" alt="alt text" /></p>
<p>I think that it's quite flexible when you use more than 1 layout in a form, and you can create pretty much any configuration you want.</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/100611#1006112Answer by Dave Arkell for Hidden Features of Visual Studio (2005-2008)?Dave Arkell2008-09-19T08:59:40Z2008-09-19T08:59:40Z<p>Shift+Alt+F10 brings up the built in refactoring menu. Great for adding method stubs from interfaces, and adding Using statements automatically for specific classes.</p>
http://stackoverflow.com/questions/81288/pattern-for-saving-and-writing-to-different-file-formats1Pattern for saving and writing to different file formatsDave Arkell2008-09-17T08:59:44Z2008-09-17T09:23:59Z
<p>Is there a pattern that is good to use when saving and loading different file formats?</p>
<p>For example, I have a complicated class hierarchy for the document, but I want to support a few different file formats.</p>
<p>I thought about the Strategy pattern, but I'm not convinced because of the need to access every part of the object in order to save and load it.</p>
http://stackoverflow.com/questions/58517/combining-enums/58527#585277Answer by Dave Arkell for Combining EnumsDave Arkell2008-09-12T08:54:08Z2008-09-12T11:57:14Z<p>I believe what you want is a flag type enum.</p>
<p>You need to add the Flags attribute to the top of the enum, and then you can combine enums with the 'Or' keyword.</p>
<p>Like this:</p>
<pre><code><Flags()> _
Enum CombinationEnums As Integer
HasButton = 1
TitleBar = 2
ReadOnly = 4
ETC = 8
End Enum
</code></pre>
<p><strong>Note:</strong> The numbers to the right are always twice as big (powers of 2) - this is needed to be able to separate the individual flags that have been set.</p>
<p>Combine the desired flags using the Or keyword:</p>
<pre><code>Dim settings As CombinationEnums
settings = CombinationEnums.TitleBar Or CombinationEnums.Readonly
</code></pre>
<p>This sets TitleBar and Readonly into the enum</p>
<p>To check what's been set:</p>
<pre><code>If (settings And CombinationEnums.TitleBar) = CombinationEnums.TitleBar Then
Window.TitleBar = True
End If
</code></pre>
http://stackoverflow.com/questions/56478/how-to-interact-with-windows-media-player-in-c/56504#565040Answer by Dave Arkell for How to interact with Windows Media Player in C#Dave Arkell2008-09-11T13:17:24Z2008-09-11T13:31:28Z<p>The best info I have seen on interacting with Windows Media Player is this <a href="http://blogs.msdn.com/toub/archive/2007/09/22/fun-with-dvr-ms.aspx" rel="nofollow">article</a> written by Stephen Toub.</p>
<p>He lists a whole load of different ways to play dvr-ms files (doesn't really matter what format they are for this though). The bit that is possibly of interest to you is about using a Media Player ActiveX Control, which you can add to the visual Studio toolbox by right-clicking and adding the Windows Media Player ActiveX COM Control. You can then embed the player into your app, and access various properties of Media Player, like the url:</p>
<pre><code>WMPplayer.URL = stringPathToFile;
</code></pre>
<p>This solution is possibly not what you want because it's starting a new instance of Media Player (as far as I know), however it might point you in the right direction.</p>
http://stackoverflow.com/questions/31757/should-programmers-be-excellent-typists/56138#561380Answer by Dave Arkell for Should programmers be excellent typists?Dave Arkell2008-09-11T09:38:40Z2008-09-11T09:38:40Z<p>Touch typing really does help with all aspects of using a computer, I think. I also think that once you've learnt to touch type, programming makes you even better at it (think of all those symbols you have to know the location of).</p>
<p>I must say, I'm a bit surprised that touch typing isn't one of those skills that programmers would assume essential.</p>
<p>Saying that, with the advent of Intellisense, even touch typists don't type all the letters out, and having your little (alright, pinky) finger half on the tab key becomes a bit more important.</p>
<p>Answering your questions:</p>
<p>I can touch type
My accuracy level is pretty high
I improve it all the time because I am looking at the screen while I type!
I learnt to touch type when I was 12 using an early version of Mavis Beacon Teaches Typing on a Toshiba luggable 286 Monachrome CGA, mainly because my dad didn't want me to play games on it, so what else was I to do?</p>
http://stackoverflow.com/questions/37030/how-to-best-implement-software-updates-on-windows/49829#498290Answer by Dave Arkell for How to best implement software updates on windows?Dave Arkell2008-09-08T14:40:37Z2008-09-08T14:46:09Z<p>Just came here from an answer to my own question on the same subject - I mention one other <a href="http://windowsclient.net/articles/appupdater.aspx" rel="nofollow">updating solution</a> in my <a href="http://beta.stackoverflow.com/questions/49747/autoupdating-net-applications" rel="nofollow">question</a>. It uses a stub loader, and an xml file to point to the latest executable.</p>
http://stackoverflow.com/questions/49755/design-pattern-for-undo-engine/49761#497614Answer by Dave Arkell for Design Pattern for Undo EngineDave Arkell2008-09-08T14:02:08Z2008-09-08T14:02:08Z<p>Just been reading about the command pattern in my agile development book - maybe that's got potential?</p>
<p>You can have every command implement the command interface (which has an Execute() method). If you want undo, you can add an Undo method.</p>
<p>more info <a href="http://en.wikipedia.org/wiki/Command_pattern" rel="nofollow">here</a></p>
http://stackoverflow.com/questions/31559/any-thoughts-on-devexpress-xpo-orm-package/49417#494170Answer by Dave Arkell for Any thoughts on DevExpress XPO ORM Package?Dave Arkell2008-09-08T10:18:50Z2008-09-08T10:18:50Z<p>I like the fact that you can just create classes, and xpo creates the tables and relationships for you - so you can start from a blank database.</p>
<p>One issue I don't like is when I want to delete a whole bunch of stuff, it will go through my collection and do a delete on each one. This takes ages, so for this kind of instance, I've had to write some custom sql (delete from table where blah). I'm no expert on XPO, but that's what I found.</p>
http://stackoverflow.com/questions/41963/are-there-any-version-control-systems-for-3d-models-3d-data/41995#419950Answer by Dave Arkell for Are there any version control systems for 3d models / 3d data?Dave Arkell2008-09-03T16:00:10Z2008-09-03T16:00:10Z<p>I was under the impression that SVN is perfect for any kind of project that uses text files. So if your model is made up of text files, then it would be fine. </p>
<p>I don't see how binary data would work, as all version control that I know of makes use of diff management, which uses text comparisons.</p>
http://stackoverflow.com/questions/37921/what-is-the-best-winform-ui-component-set/37973#3797311Answer by Dave Arkell for What is the best winform UI component set?Dave Arkell2008-09-01T13:50:27Z2008-09-03T12:29:28Z<p>We initially bought just the XtraTreelist component from DevExpress, but have been so impressed that we went onto buying the Professional Winforms Suite, and this year we upgraded onto the Enterprise Suite (which does both Winforms and Web).</p>
<p>As a bonus, it comes with <a href="http://www.devexpress.com/Products/Visual_Studio_Add-in/Coding_Assistance/" rel="nofollow">code rush and Refactor</a>, which once you get the hang of them, they help save time (plus, it makes your code look pretty...).</p>
<p>I'd say their support is pretty good - I've found a couple of bugs in the past which I've had a reply to within 24 hours, which states they will fix the issue in the next release.</p>
<p>One gotcha (if you could call it that) is that most of their components have a 'Properties' property which is where a lot of common properties get set. I find that a little annoying to use because they need a few more clicks or keypresses to get to, but at least you can get the job done (they tend to put things like input masks in here - regex, numerical etc).</p>
<p>One think that took a bit of getting used to is with the XtraGrid and Treelist, which if you want to do some custom display for specific cells, you have to hook up an event that fires before the cell is displayed.</p>
<p>Hope my ramblings help.</p>
<p>Edit: One thing I meant to add is that Dev Express are rolling out Silverlight and WPF controls too. They're in beta, but you get access to the betas on the Enterprise Suite (I'm not sure about the others). Currently they have a <a href="http://www.devexpress.com/Products/NET/Controls/Silverlight/Grid/" rel="nofollow">Silverlight Datagrid</a>, a <a href="http://www.devexpress.com/Products/NET/Controls/WPF/Grid/" rel="nofollow">WPF Datagrid</a>, and <a href="http://www.devexpress.com/Products/NET/Controls/WPF/Charting/" rel="nofollow">WPF charts</a>, but they're doing more eventually. In addition, they are constantly adding features to their current products. For example, last month they added <a href="http://www.devexpress.com/Products/NET/Controls/WinForms/Gauges/" rel="nofollow">Gauges</a> to the controls.</p>
http://stackoverflow.com/questions/1587604/regular-expression-a-za-z/1587622#1587622Comment by Dave Arkell on regular expression ^[A-Za-z ]+$Dave Arkell2009-10-19T09:12:06Z2009-10-19T09:12:06Zyes, but the poster wants a single spacehttp://stackoverflow.com/questions/219653/ruby-on-iphone/1420730#1420730Comment by Dave Arkell on Ruby on iPhoneDave Arkell2009-09-25T08:51:41Z2009-09-25T08:51:41ZI don't think monotouch does work with Ruby actually, because ruby is a dynamic language, and monotouch statically compiles the code. See here <a href="http://monotouch.net/Documentation/Limitations" rel="nofollow">monotouch.net/Documentation/Limitations</a> for the limitations of monotouch.http://stackoverflow.com/questions/641950/linq-to-sql-inserting-large-object-from-net/642092#642092Comment by Dave Arkell on LINQ to SQL inserting large object from .NETDave Arkell2009-07-08T14:25:32Z2009-07-08T14:25:32ZTrying to work on this issue myself, as InsertOnSubmit for my 160,000 records has taken all day so far.http://stackoverflow.com/questions/974769/dlls-locations-issueComment by Dave Arkell on DLLs locations issueDave Arkell2009-06-10T10:37:02Z2009-06-10T10:37:02ZWhere did you cut the dlls from? The dlls will get copied to the bin folder of your project, so you need to cut them from there.http://stackoverflow.com/questions/973859/books-for-learning-c/973860#973860Comment by Dave Arkell on Books For Learning C# Dave Arkell2009-06-10T08:54:36Z2009-06-10T08:54:36ZI'm reading c# in Depth now. Been very useful so far...http://stackoverflow.com/questions/968961/iphone-dev-box/969086#969086Comment by Dave Arkell on iPhone dev boxDave Arkell2009-06-09T14:01:10Z2009-06-09T14:01:10ZExactly, and I bought my 2G iPhone on Ebay at Christmas, so it was already past warranty.http://stackoverflow.com/questions/881650/auto-forward-mails-to-gmail-from-outlook/881723#881723Comment by Dave Arkell on Auto Forward mails to gmail from OutlookDave Arkell2009-06-09T12:53:04Z2009-06-09T12:53:04ZI'm interested that you say it's not illegal, because nobody seems to be suggesting you are. Although now that you bring the subject up...http://stackoverflow.com/questions/968961/iphone-dev-box/969086#969086Comment by Dave Arkell on iPhone dev boxDave Arkell2009-06-09T10:43:28Z2009-06-09T10:43:28ZI guess a few people reckon that Jailbreaking is illegal! I don't. In fact, it's probably what persuaded apple to come up with the app store in the first place.http://stackoverflow.com/questions/944925/c-audio-conversion-mp3-ogg-questionComment by Dave Arkell on c++ audio conversion ( mp3 -> ogg ) question.Dave Arkell2009-06-03T14:36:27Z2009-06-03T14:36:27ZI don't think so, the poster wants to create an app. In my mind, that's programminghttp://stackoverflow.com/questions/944223/should-i-use-screen-primarymonitor-or-screen-allscreens-for-setting-form-locationComment by Dave Arkell on Should I use Screen.PrimaryMonitor or Screen.AllScreens for setting Form.Location?Dave Arkell2009-06-03T11:41:22Z2009-06-03T11:41:22ZI'm not entirely sure what you want to do here - are you just trying to remember where the user last put the window, and you want to take into account multi monitors?http://stackoverflow.com/questions/938464/popup-window-on-a-specific-time-in-wpfComment by Dave Arkell on PopUp window on a specific time in WPF?Dave Arkell2009-06-02T08:48:29Z2009-06-02T08:48:29ZThis shouldn't be voted down because it doesn't have enough clarity! Give the guy a chance...http://stackoverflow.com/questions/137783/given-a-function-which-produces-a-random-integer-in-the-range-1-to-5-write-a-funComment by Dave Arkell on Given a function which produces a random integer in the range 1 to 5, write a function which produces a random integer in the range 1 to 7Dave Arkell2009-06-01T14:22:37Z2009-06-01T14:22:37ZHow come this guy has more reputation than me when he's just posted 2 homework questions (apart from the possibilities of my contributions to SO being crap)?http://stackoverflow.com/questions/934011/textview-problemComment by Dave Arkell on Textview problemDave Arkell2009-06-01T09:01:36Z2009-06-01T09:01:36ZSo can you load the string from both the uiviewControllers, or just from the one that contains the UITextView?http://stackoverflow.com/questions/52134/determining-if-an-assembly-is-part-of-the-net-framework/52199#52199Comment by Dave Arkell on Determining if an assembly is part of the .net frameworkDave Arkell2008-09-09T15:44:21Z2008-09-09T15:44:21ZThe issue here is that a lot of stuff is in the GAC according to AssemblyName and Assemblyhttp://stackoverflow.com/questions/52134/determining-if-an-assembly-is-part-of-the-net-framework/52141#52141Comment by Dave Arkell on Determining if an assembly is part of the .net frameworkDave Arkell2008-09-09T15:23:47Z2008-09-09T15:23:47Zmscorlib doesn't as far as I know...