User Bermo - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T03:55:43Z http://stackoverflow.com/feeds/user/5110 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1733761/how-can-i-able-to-get-all-the-extensions-in-a-directory/1733909#1733909 0 Answer by Bermo for How can I able to get all the extensions in a Directory.? Bermo 2009-11-14T10:34:25Z 2009-11-14T10:34:25Z <p>I'd use a LINQ query with the VB.NET <em>Group By Into</em> syntax:</p> <pre><code>Dim extensions = From file In New DirectoryInfo(path).GetFiles() _ Group file By file.Extension Into Group </code></pre> <p>You can then iterate through them like so:</p> <pre><code>For Each extension In extensions Console.WriteLine(extension.Extension) Next </code></pre> http://stackoverflow.com/questions/858938/wpf-toolkit-datagrid-custom-tabbing/1707920#1707920 0 Answer by Bermo for WPF Toolkit Datagrid - Custom Tabbing Bermo 2009-11-10T13:18:21Z 2009-11-10T13:18:21Z <p>It is possible to turn off tabbing on the first two columns by using IsTabStop property on the individual DataGridCell items. Unfortunately this isn't as easy to access as some of the other WPF controls so you have to set it via the CellStyle:</p> <pre><code>&lt;/dg:DataGridTextColumn&gt; &lt;dg:DataGridTextColumn.CellStyle&gt; &lt;Style TargetType={x:Type dg:DataGridCell}"&gt; &lt;Setter Property="IsTabStop" Value="False" /&gt; &lt;/Style&gt; &lt;/dg:DataGridTextColumn.CellStyle&gt; &lt;/dg:DataGridTextColumn&gt; </code></pre> http://stackoverflow.com/questions/1700866/control-over-wcf-proxy-class-name-generated-using-svcutil-exe 0 Control over wcf proxy class name generated using svcutil.exe Bermo 2009-11-09T13:03:55Z 2009-11-09T13:09:49Z <p>Is there a simple command line switch or a trick to renaming the generated class name when running svcutil.exe to generate a client proxy?</p> http://stackoverflow.com/questions/1700066/performance-implications-of-turning-mtom-on-for-a-wcf-service 0 Performance implications of turning MTOM on for a WCF service Bermo 2009-11-09T09:56:38Z 2009-11-09T10:18:24Z <p>Would there be any noticeable performance hit if MTOM is turned on for a WCF service that isn't actually transferring any binary over the wire?</p> http://stackoverflow.com/questions/1692717/how-to-install-net-dll/1692770#1692770 1 Answer by Bermo for How to install .net dll? Bermo 2009-11-07T11:33:31Z 2009-11-07T11:33:31Z <p>You either need to make sure your dll is located in the Visual Studio public assemblies folder, or that its folder location is known by some specific Visual Studio registry keys. For further information, and the specific locations of folder and settings refer to the following url: </p> <p><a href="http://msdn.microsoft.com/en-us/library/wkze6zky%28VS.80%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/wkze6zky(VS.80).aspx</a></p> <p>The reason that Visual Studio needs to know specifically where all dlls live is probably to try and improve the performance of the very slow Add References dialog box. </p> http://stackoverflow.com/questions/1692679/windows-service-setup-project-run-service-as-administrator/1692730#1692730 1 Answer by Bermo for Windows Service setup project - run service as administrator Bermo 2009-11-07T11:16:48Z 2009-11-07T11:16:48Z <p>You should be able to add a new <strong>ServiceProcessInstaller</strong> in the <strong>InitializeComponent()</strong> method of your installer. This class will allow you to set account type, username, and password that you want the service to run as. For example:</p> <pre><code>this.Installers.Add( new System.ServiceProcess.ServiceProcessInstaller() { Account = ServiceAccount.User, Username = @"domain\username", Password = "password" }); </code></pre> <p>If you don't want to hardcode a password into your setup project, then leave it blank and a popup dialog should appear asking for this during install.</p> http://stackoverflow.com/questions/1678417/inserting-a-tab-into-a-wpf-richtextbox-when-allowtab-is-set-to-false 0 Inserting a tab into a WPF RichTextBox when AllowTab is set to false Bermo 2009-11-05T04:51:10Z 2009-11-05T11:38:42Z <p>I am trying to work out how to insert a tab character into a WPF RichTextBox when the AllowTab attribute is set to false. </p> <p>Is there a shortcut key that allows this? I would rather not have to resort to adding a special button to the toolbar or telling users that they must copy and paste one in ...</p> http://stackoverflow.com/questions/1678417/inserting-a-tab-into-a-wpf-richtextbox-when-allowtab-is-set-to-false/1680015#1680015 0 Answer by Bermo for Inserting a tab into a WPF RichTextBox when AllowTab is set to false Bermo 2009-11-05T11:38:42Z 2009-11-05T11:38:42Z <p>Okay, the best I can come up with so far is intercepting the keydown event in the code behind:</p> <pre><code>private void RichTextBox_KeyDown(object sender, KeyEventArgs e) { if (e.Key != Key.Tab || (Keyboard.Modifiers &amp; ModifierKeys.Control) != ModifierKeys.Control) return; var richTextBox = sender as RichTextBox; if (richTextBox == null) return; if (richTextBox.Selection.Text != string.Empty) richTextBox.Selection.Text = string.Empty; var caretPosition = richTextBox.CaretPosition.GetPositionAtOffset(0, LogicalDirection.Forward); richTextBox.CaretPosition.InsertTextInRun("\t"); richTextBox.CaretPosition = caretPosition; e.Handled = true; } </code></pre> http://stackoverflow.com/questions/103575/wpf-validation-not-firing-on-first-lostfocus-of-the-textbox/1347399#1347399 0 Answer by Bermo for WPF Validation Not Firing on First LostFocus of the TextBox Bermo 2009-08-28T14:33:23Z 2009-08-28T14:33:23Z <p>If you're not adverse to putting a bit of logic in your code behind, you can handle the actual <em>LostFocus</em> event with something like this:</p> <p><strong>.xaml</strong></p> <pre><code>&lt;TextBox LostFocus="TextBox_LostFocus" .... </code></pre> <p><hr /></p> <p><strong>.xaml.cs</strong></p> <pre><code>private void TextBox_LostFocus(object sender, RoutedEventArgs e) { ((Control)sender).GetBindingExpression(TextBox.TextProperty).UpdateSource(); } </code></pre> http://stackoverflow.com/questions/300664/how-do-i-integration-testing-to-my-code-written-using-the-asp-net-provider-model/751243#751243 0 Answer by Bermo for How do I integration testing to my code written using the ASP.NET Provider Model? Bermo 2009-04-15T11:22:00Z 2009-04-15T11:22:00Z <p>Instead of a "web.config" file in your unit test project, you'll need a "MySite.Test.dll.config" file instead where you can enter the correct configuration for the testing. Note, using this method you could use a different provider to connect to an in-memory database instead if you wanted.</p> http://stackoverflow.com/questions/49066/renaming-the-containing-project-folder-in-vs-net-under-tfs 4 Renaming the containing project folder in VS.net under TFS. Bermo 2008-09-08T02:45:54Z 2009-03-22T18:34:05Z <p>I have a vs.net project, and after some refactoring, have modified the name of the project. How can I easily rename the underlying windows folder name to match this new project name under a TFS controlled project and solution?<br /> Note, I used to be able to do by fiddling with things in the background using SourceSafe ... </p> http://stackoverflow.com/questions/53479/asp-net-mvc-vs-web-client-software-factory-wcsf 5 ASP.NET MVC vs. Web client software factory (WCSF) Bermo 2008-09-10T05:37:26Z 2009-02-04T10:01:39Z <p>I have recently been doing a bit of investigation into the different types of Model View architectures, and need to decide which one to pursue for future in-house development. As I'm currently working in a Microsoft shop that has ASP.NET skills, it seems my options are between ASP.NET MVC and WCSF (Monorail is probably out of the as it wouldn't be supported by Microsoft).</p> <p>After reading <a href="http://blogs.msdn.com/simonince/archive/2007/11/22/the-asp-net-mvc-framework-using-the-wcsf-as-a-yardstick.aspx" rel="nofollow">the ASP.NET MVC framework, using the WCSF as a yardstick</a>, I picked up the following points: </p> <ul> <li>ASP.NET MVC cannot use web controls that rely on postbacks, whereas WCSF can.</li> <li>You have more control over the urls in an ASP.NET MVC site as opposed to a WCSF site.</li> <li>An ASP.NET MVC site will probably be easier to test than an equivalent WCSF version.</li> <li>It seems that the WCSF still uses the code behind to control UI events under some circumstances, but ASP.NET MVC doesn't allow this. </li> </ul> <p>What are some of the other considerations?<br/> What have I misunderstood?<br/> Is there anybody out there who has used both frameworks and has advice either way?</p> http://stackoverflow.com/questions/56147/what-is-your-favorite-regex-editor/56196#56196 3 Answer by Bermo for What is your favorite regex editor? Bermo 2008-09-11T10:10:08Z 2008-09-11T10:10:08Z <p>This has already been asked - <a href="http://beta.stackoverflow.com/questions/32282/regex-testing-tools#32365" rel="nofollow">Regex Testing Tools</a></p> http://stackoverflow.com/questions/53652/datatable-to-readable-text-string/53662#53662 0 Answer by Bermo for DataTable to readable text string Bermo 2008-09-10T09:02:09Z 2008-09-10T09:02:09Z <p>Loop through the datatable and send it as HTML email - <a href="http://forums.asp.net/t/1046932.aspx" rel="nofollow">generating html table from datatable &amp; sending it as body of email</a>.</p> http://stackoverflow.com/questions/50684/other-ways-to-encrypt-wcf-connections/50693#50693 0 Answer by Bermo for Other ways to encrypt WCF Connections Bermo 2008-09-08T21:07:40Z 2008-09-08T21:07:40Z <p>If you are using a http endpoint, you can use a secure transport such as https.</p> http://stackoverflow.com/questions/50315/how-do-you-allow-multiple-file-uploads-on-an-internal-windows-authentication-intr/50657#50657 1 Answer by Bermo for How do you allow multiple file uploads on an internal windows-authentication intranet? Bermo 2008-09-08T20:54:06Z 2008-09-08T20:54:06Z <p>You could try <a href="http://www.swfupload.org/" rel="nofollow">SWFUpload</a> as well - it would fit in your Flash Uploader "category".</p> http://stackoverflow.com/questions/17975/can-you-recommend-a-good-free-code-generator/49449#49449 0 Answer by Bermo for Can you recommend a good free code generator? Bermo 2008-09-08T10:49:34Z 2008-09-08T10:49:34Z <p>I'd expect CodeSmith version <a href="http://www.codesmithtools.com/freeware.aspx" rel="nofollow">2.6</a> to always be free. I've found the later versions do not provide much added value. One limitation of 2.6 out-of-the-box is that it uses the framework 1.1 - however the app.config can be easily modified so it runs under a later version (2.0 at least).</p> http://stackoverflow.com/questions/46283/can-a-service-have-multiple-endpoints/49436#49436 0 Answer by Bermo for Can a service have multiple endpoints? Bermo 2008-09-08T10:36:12Z 2008-09-08T10:36:12Z <p>You will need to create an entire new host if you are currently using IIS as your host - IIS only supports HTTP and not TCP bindings. If however you are using WAS or a windows service, then you'll be able to get away with simply creating a new net.tcp endpoint.</p> http://stackoverflow.com/questions/1709/how-to-pass-enumerated-values-to-a-web-service/48885#48885 0 Answer by Bermo for How to pass enumerated values to a web service Bermo 2008-09-07T23:21:15Z 2008-09-07T23:21:15Z <p>I've noticed that when using "Add Service Reference" as opposed to "Add Web Reference" from VS.net, the actual enum values come across as well as the enum names. This is really annoying as I need to support both 2.0 and 3.5 clients. I end up having to go into the 2.0 generated web service proxy code and manually adding the enum values every time I make a change!</p> http://stackoverflow.com/questions/1700066/performance-implications-of-turning-mtom-on-for-a-wcf-service/1700159#1700159 Comment by Bermo on Performance implications of turning MTOM on for a WCF service Bermo 2009-11-09T10:27:11Z 2009-11-09T10:27:11Z I'm trying to find out whether &quot;packing the data into a MIME-document&quot; would be close to negligible considering the standard overheads of a service call ... http://stackoverflow.com/questions/1692679/windows-service-setup-project-run-service-as-administrator/1692730#1692730 Comment by Bermo on Windows Service setup project - run service as administrator Bermo 2009-11-07T11:58:54Z 2009-11-07T11:58:54Z No sorry, never had to do that before. I'd add it as another question if I was you. http://stackoverflow.com/questions/257587/bring-a-window-to-the-front-in-wpf/383708#383708 Comment by Bermo on Bring a window to the front in WPF Bermo 2009-08-26T04:54:32Z 2009-08-26T04:54:32Z I was simply using myWindow.Show() and sometimes it wasn't on top. I placed a call to myWindow.Activate() immediately afterwards and it worked. http://stackoverflow.com/questions/1211308/why-would-my-visual-studio-2008-close-everytime-i-open-a-xaml-file/1213184#1213184 Comment by Bermo on Why would my Visual Studio 2008 close everytime I open a .xaml file? Bermo 2009-08-18T07:31:04Z 2009-08-18T07:31:04Z Yep, PowerCommands was my problem.