User Luke Baulch - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T02:38:42Z http://stackoverflow.com/feeds/user/117062 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1391579/simple-silverlight-open-file-dialog-errors 0 Simple silverlight open-file-dialog errors Luke Baulch 2009-09-08T01:46:23Z 2009-11-24T23:45:39Z <p>A while back I wrote a silverlight user control which had a csv import/export feature. This has been working fine, until recently I discovered it erroring in one scenario. This may have been due to moving to Silverlight 3. </p> <p><strong>The Error:</strong><br> Message: Unhandled Error in Silverlight 2 Application<br> Code: 4004<br> Category: ManagedRuntimeError<br> Message: System.Security.SecurityException: Dialogs must be user-initiated.<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;at System.Windows.Controls.OpenFileDialog.ShowDialog()<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;at MyControl.OpenImportFileDialog()<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;at ...</p> <p><strong>The Code:</strong></p> <pre><code>private void BrowseFileButton_Click(object sender, RoutedEventArgs e) { if (string.IsNullOrEmpty(lblFileName.Text)) { if (MessageBox.Show("Are you sure you want to change the Import file?", "Import", MessageBoxButton.OKCancel) == MessageBoxResult.Cancel) { return; } } EnableDisableImportButtons(false); var fileName = OpenImportFileDialog(); lblFileName.Text = fileName ?? string.Empty; EnableDisableImportButtons(true); } private string OpenImportFileDialog() { var dlg = new OpenFileDialog { Filter = "CSV Files (*.csv)|*.csv" }; if (dlg.ShowDialog() ?? false) { using (var reader = dlg.File.OpenText()) { string fileName; //process the file here and store fileName in variable return fileName; } } } </code></pre> <p>I can open an import file, but if i want to change the import file, and re-open the file dialog, it errors. Does anyone know why this is the case?<br> Also, I am having trouble debugging because placing a breakpoint on the same line (or prior) to the dlg.ShowDialog() call seems to cause this error to appear as well. Any help would be appreciated?</p> http://stackoverflow.com/questions/1523464/importxmlwithprogress-not-updating-result-attribute-of-importjob 0 ImportXmlWithProgress not updating result attribute of importjob Luke Baulch 2009-10-06T03:37:16Z 2009-10-28T16:00:04Z <p>I tried to write some code to import a large customization containing 50+ entities. I used the microsoft article <a href="http://msdn.microsoft.com/en-us/library/cc155975.aspx" rel="nofollow">'ImportXmlWithProgress Message (CrmService)</a> as a bases, but was not getting the output I expected. </p> <p>The 'job.data' in the following code was not changing from the original parameterxml data. So this implies to me that the import was not sucessful. I imported the same compressed importexportxml using the microsoft web ui, and it worked fine. So I'm wondering why my job.data is not being updated with 'result' attributes for each entity that is imported. </p> <p>Below is my method to import.</p> <pre><code>private void ImportEntitySchema() { const string parameterXml = @"&lt;importexportxml&gt; &lt;entities&gt; {0} &lt;/entities&gt; &lt;nodes/&gt; &lt;securityroles/&gt; &lt;settings/&gt; &lt;workflows/&gt; &lt;/importexportxml&gt;"; var importRequest = new ImportCompressedXmlWithProgressRequest { ImportJobId = Guid.NewGuid(), CompressedCustomizationXml = GetCompressedCustomizationXmlFromEmbeddedResource(), ParameterXml = string.Format(parameterXml, string.Join("\n", _entitySchemaEntityNames.Select(item =&gt; string.Format("&lt;entity&gt;{0}&lt;/entity&gt;", item)).ToArray())) }; try { _crmService.Execute(importRequest); } catch (Exception e) { //Error resulted from import request } // Retrieve the results of the import. XmlNode node; do { Thread.Sleep(2000); var job = (importjob)_crmService.Retrieve(EntityName.importjob.ToString(), importRequest.ImportJobId, new AllColumns()); var data = new XmlDocument(); data.LoadXml(job.data); node = data.SelectSingleNode("importexportxml/entities/entity/@result"); } while (node == null); //code below here never gets executed because the loop continues infinitely } </code></pre> <p>I've been looking, but haven't found any/many [useful] examples on the net of the ImportXmlWithProgress being used. Hopefully someone has used it and has an idea of how to get it working.</p> http://stackoverflow.com/questions/1210075/how-do-you-handle-the-fetchxml-result-data 2 How do you handle the fetchxml result data? Luke Baulch 2009-07-31T00:17:15Z 2009-09-09T14:26:09Z <p>I have avoided working with fetchxml as I have been unsure the best way to handle the result data after calling crmService.Fetch(fetchXml). In a couple of situations, I have used an XDocument with LINQ to retrieve the data from this data structure, such as:</p> <pre><code>XDocument resultset = XDocument.Parse(_service.Fetch(fetchXml)); if (resultset.Root == null || !resultset.Root.Elements("result").Any()) { return; } foreach (var displayItem in resultset.Root.Elements("result").Select(item =&gt; item.Element(displayAttributeName)).Distinct()) { if (displayItem!= null &amp;&amp; displayItem.Value != null) { dropDownList.Items.Add(displayItem.Value); } } </code></pre> <p>What is the best way to handle fetchxml result data, so that it can be easily used. Applications such as passing these records into an ASP.NET datagrid would be quite useful.</p> http://stackoverflow.com/questions/1252737/web-service-method-signature-changed-to-request-response-objects-for-datatype-str 2 Web Service method signature changed to request/response objects for datatype string[] Luke Baulch 2009-08-10T00:57:49Z 2009-08-11T00:20:59Z <p>I have two websites, both using .Net framework 3.5. One website is hosting a soap web service and the other is referencing this service. I'm having some unexpected happenings with my web method signatures. I have a simple method in my web service with a signature such as:</p> <pre><code>[WebMethod] public string[] HelloWorld() { return new[] { "Hello World" }; } </code></pre> <p>But when I reference this web service using the 'Add Service Reference' feature in VS2008, with configuration set to "Always generate message contracts" (although when i check the 'reuse types in referenced assemblies', i seem to have the same issue), the signature seems to be changed by the auto generated proxy objects to the following:</p> <pre><code>HelloWorldResponse HelloWorld(HelloWorldRequest request) </code></pre> <p>I've tried to look this up on the net, but having trouble finding something that will simply explain to me why this is happening, and whether I can/should try to work around it?</p> <p>I also have this question: How does one determine whether they should choose the service reference configuration option to "reuse types in referenced assemblies" and "always generated message contracts"?</p> http://stackoverflow.com/questions/1175618/how-to-bind-selectionstart-property-of-text-box/1175794#1175794 0 Answer by Luke Baulch for How to bind SelectionStart Property of Text Box? Luke Baulch 2009-07-24T04:55:58Z 2009-07-28T03:06:07Z <p>As far as I am aware, this feature has not been included in Silverlight 2.0.</p> <p>Read <a href="http://www.scottlogic.co.uk/blog/wpf/2009/02/elementname-binding-in-silverlight-via-attached-behaviours/" rel="nofollow">this</a> article for a work-around solution.</p> http://stackoverflow.com/questions/1037160/does-mscrm-web-service-support-database-transactions 1 Does MSCRM web-service support database transactions? Luke Baulch 2009-06-24T08:49:21Z 2009-07-23T18:27:16Z <p>One would assume with any web-based data application that database transactions would be an integral part of the design. Looking around at CrmService, I can't find anything that suggests that transactional 'CRUD's are available. Is it the case that this is not supported/implemented in MSCRM? If it is, and i have missed it, could someone please point me in the right direction. I fear coding a whole lot of 'repair code' to cater for errors/exceptions half way through a custom import/registration routine that I have coded.</p> <p>-Luke Baulch</p> http://stackoverflow.com/questions/1169720/image-adding-in-silverlight/1170028#1170028 3 Answer by Luke Baulch for Image adding in silverlight Luke Baulch 2009-07-23T06:44:35Z 2009-07-23T06:44:35Z <p>If you simply want to add a local image to an xaml control use the following:</p> <pre><code>&lt;Image x:Name="LocalImage" Source="Path/MyImage.png" Margin="10,10,0,0" Width="16" Height="16" HorizontalAlignment="Left" VerticalAlignment="Top" /&gt; </code></pre> <p>If this is not what you want, then you may need to be more detailed with your question.</p> http://stackoverflow.com/questions/1164887/add-close-button/1168880#1168880 2 Answer by Luke Baulch for add close button Luke Baulch 2009-07-22T23:52:15Z 2009-07-22T23:52:15Z <p><strong>Assumptions:</strong> <br> 1. You are wanting a close function using a control from within silverlight.<br> 2. You are wanting the browser window to be closed..</p> <p><strong>Adding a button to your silverlight control:</strong></p> <pre><code>&lt;Button Margin="0,10,10,0" x:Name="CloseButton" VerticalAlignment="Top" HorizontalAlignment="Right" Content="Close" Click="CloseButton_Click" Width="75" Height="22" /&gt; </code></pre> <p><strong>Adding the OnClick event:</strong><br> If you are wanting to close the window, then you will need to execute some javascript in one way or another. <br></p> <p><strong>Solution 1:</strong> <br> You can add a javascript function on your html/aspx page like:</p> <pre><code>&lt;script type="text/javascript"&gt; function CloseWindow() { window.close(); } &lt;/script&gt; </code></pre> <p>and call it adding the OnClick event:</p> <pre><code>private void CloseButton_Click(object sender, RoutedEventArgs e) { HtmlPage.Window.Invoke("CloseWindow"); } </code></pre> <p><strong>Solution 2:</strong> <br> Alternatively you can execute the 'window.close()' using the HtmlPageWindow.Eval() method, like so without the need for a javascript function on the page:</p> <pre><code>private void CloseButton_Click(object sender, RoutedEventArgs e) { HtmlPage.Window.Eval("window.close()"); } </code></pre> http://stackoverflow.com/questions/1157333/what-is-the-best-way-to-ensure-that-web-page-contents-are-redownloaded-from-your 4 What is the best way to ensure that web-page contents are redownloaded from your web-site instead of using cached temporary internet files? Luke Baulch 2009-07-21T04:39:22Z 2009-07-21T14:05:40Z <p>I have noticed that when updating my web content files (in this case, a silverlight XAP file) the browser does not detect that the file has been updated, and continues to reads the locally cached file. These files will only be updated rarely, so reading from the cached temporary internet files should occur most of the time. </p> <p>My question is whether there is a programmatic way to ensure that files are downloaded from the website, rather than read from the local cache, but only when these files have changed? Is there a widely accepted process for handling this scenario? I don't want every user of this web product to have to delete their temporary internet files when an update is installed.</p> <p>These files will only be updated during the execution of an installer, so can I possibly programmatically set something to ensure that this will happen?</p> http://stackoverflow.com/questions/1089327/what-programming-practice-that-you-once-liked-have-you-since-changed-your-mind-ab/1089977#1089977 106 Answer by Luke Baulch for What programming practice that you once liked have you since changed your mind about? Luke Baulch 2009-07-07T01:39:52Z 2009-07-07T18:12:12Z <p><br></p> <pre><code>//Coming out of university, we were taught to ensure we always had an abundance //of commenting around our code. But applying that to the real world, made it //clear that over-commenting not only has the potential to confuse/complicate //things but can make the code hard to follow. Now I spend more time on //improving the simplicity and readability of the code and inserting fewer yet //relevant comments, instead of spending that time writing overly-descriptive //commentaries all throughout the code. </code></pre> <p><br></p> http://stackoverflow.com/questions/1077411/syncronously-populating-dependencyproperties-of-a-custom-control-in-silverlight 1 Syncronously populating DependencyProperties of a custom control in Silverlight Luke Baulch 2009-07-03T01:06:39Z 2009-07-03T04:41:56Z <p>I have a Silverlight custom control with two properties; Text and Id. I have created DependencyProperties for these as per the code below.</p> <pre><code>public static readonly DependencyProperty TextProperty = DependencyProperty.Register("Text", typeof(string), typeof(LookupControl), new PropertyMetadata(NotifyPropertyChanged)); public static readonly DependencyProperty IdProperty = DependencyProperty.Register("Id", typeof(Guid?), typeof(LookupControl), new PropertyMetadata(NotifyPropertyChanged)); public event PropertyChangedEventHandler PropertyChanged; public static void NotifyPropertyChanged(object sender, DependencyPropertyChangedEventArgs args) { var control = sender as LookupControl; if (control != null &amp;&amp; control.PropertyChanged != null) { control.PropertyChanged(control, new PropertyChangedEventArgs("Text")); } } public Guid? Id { get { return (Guid?)GetValue(IdProperty); } set { SetValue(IdProperty, value); } } public string Text { get { return (string)GetValue(TextProperty); } set { SetValue(TextProperty, value); } } </code></pre> <p>In a control method, the Id is populated first, and then the Text. My problem is that when i bind to Text and Id on this control, I want their data to be populated syncronously, so that when a PropertyChanged event fires on either property, both of them have updated data. </p> <p>At this point in time I catch when the Id has changed, performed some processing, and if required, i set the Text to a new value. But once this OnChange of Id has finished, then the control method continues and populates the Text after i have already changed it back to something else. </p> <p>It might sound a little convoluted, but hopefully it is enough to understand. If you need more info, just ask.</p> http://stackoverflow.com/questions/1072729/can-primary-keys-be-re-used-once-deleted 0 Can Primary-Keys be re-used once deleted? Luke Baulch 2009-07-02T06:01:51Z 2009-07-02T12:51:23Z <p>0x80040237 Cannot insert duplicate key.</p> <p>I'm trying to write an import routine for MSCRM4.0 through the CrmService. This has been successful up until this point. Initially I was just letting CRM generate the primary keys of the records. But my client wanted the ability to set the key of a our custom entity to predefined values. Potentially this enables us to know what data was created by our installer, and what data was created post-install. </p> <p>I tested to ensure that the Guids can be set when calling the CrmService.Update() method and the results indicated that records were created with our desired values. I ran my import and everything seemed successful. In modifying my validation code of the import files, I deleted the data (through the crm browser interface) and tried to re-import. Unfortunately now it throws and a duplicate key error. </p> <p>Why is this error being thrown? Does the Crm interface delete the record, or does it still exist but hidden from user's eyes? Is there a way to ensure that a deleted record is permanently deleted and the Guid becomes free? In a live environment, these Guids would never have existed, but during my development I need these imports to be successful.</p> <p>By the way, considering I'm having this issue, does this imply that statically setting Guids is not a recommended practice?</p> http://stackoverflow.com/questions/948642/are-required-fields-forced-when-updating-while-consuming-crmservice 1 Are required fields forced when updating while consuming CrmService? Luke Baulch 2009-06-04T04:46:45Z 2009-06-13T00:57:01Z <p>MSCRM 4.0</p> <p>When writing plugins, I have assumed that the required fields will always exist either in the Target image or the PreImage image. But recently when coding an external application that consumes the CrmService, I realised that the service will allow a business entity (or dynamic entity) to be created using the 'Create' method, even if the required fields do not exist or contain a value.</p> <p>Is this the case? Is there a way to force required fields when calling the Update method of the service? Does anyone know why this may not be the case? Can anyone shed some light on the issue? Will I have to manage these required fields myself?</p> http://stackoverflow.com/questions/1523464/importxmlwithprogress-not-updating-result-attribute-of-importjob/1531561#1531561 Comment by Luke Baulch on ImportXmlWithProgress not updating result attribute of importjob Luke Baulch 2009-10-08T02:31:02Z 2009-10-08T02:31:02Z The compressed import file itself is only 1.5 meg. At present, we have resorted to importing about 10-20 entities using the CRM Web UI. Not our ideal, nor final, solution. The XPath is not the issue, as during debugging I have observed no changes in the data in 'job.data'. I have also read that article and attempted it as a solution. Using the ImportCompressedAllXmlRequest, is there a way to monitor progress, or failures? Considering this import can take 10-20 mins to import? How do you know whether all the entities have been imported correctly? http://stackoverflow.com/questions/1175618/how-to-bind-selectionstart-property-of-text-box/1176259#1176259 Comment by Luke Baulch on How to bind SelectionStart Property of Text Box? Luke Baulch 2009-07-31T02:34:28Z 2009-07-31T02:34:28Z Is there a way to find out which properties on a given control are DependencyProperties and which are not? http://stackoverflow.com/questions/1210075/how-do-you-handle-the-fetchxml-result-data/1210254#1210254 Comment by Luke Baulch on How do you handle the fetchxml result data? Luke Baulch 2009-07-31T02:29:09Z 2009-07-31T02:29:09Z Yes, you can define joins, but I'm fairly sure you can't return attributes from a joined entity. http://stackoverflow.com/questions/1210075/how-do-you-handle-the-fetchxml-result-data/1210254#1210254 Comment by Luke Baulch on How do you handle the fetchxml result data? Luke Baulch 2009-07-31T01:52:37Z 2009-07-31T01:52:37Z Yeah, I have been mostly using RetrieveMultiple, but in this case I need to retrieve some attributes and add some conditions based on joined entities, which fetchXml will allow me to do, and the QueryExpression object will not allow. http://stackoverflow.com/questions/1037160/does-mscrm-web-service-support-database-transactions/1039368#1039368 Comment by Luke Baulch on Does MSCRM web-service support database transactions? Luke Baulch 2009-06-25T05:01:15Z 2009-06-25T05:01:15Z Thanks. Although I think its a shame that this fair standard feature wasn't incorperated into microsofts CRM implementation.