User Bermo - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T03:55:43Zhttp://stackoverflow.com/feeds/user/5110http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1733761/how-can-i-able-to-get-all-the-extensions-in-a-directory/1733909#17339090Answer by Bermo for How can I able to get all the extensions in a Directory.?Bermo2009-11-14T10:34:25Z2009-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#17079200Answer by Bermo for WPF Toolkit Datagrid - Custom TabbingBermo2009-11-10T13:18:21Z2009-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></dg:DataGridTextColumn>
<dg:DataGridTextColumn.CellStyle>
<Style TargetType={x:Type dg:DataGridCell}">
<Setter Property="IsTabStop" Value="False" />
</Style>
</dg:DataGridTextColumn.CellStyle>
</dg:DataGridTextColumn>
</code></pre>
http://stackoverflow.com/questions/1700866/control-over-wcf-proxy-class-name-generated-using-svcutil-exe0Control over wcf proxy class name generated using svcutil.exeBermo2009-11-09T13:03:55Z2009-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-service0Performance implications of turning MTOM on for a WCF serviceBermo2009-11-09T09:56:38Z2009-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#16927701Answer by Bermo for How to install .net dll?Bermo2009-11-07T11:33:31Z2009-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#16927301Answer by Bermo for Windows Service setup project - run service as administratorBermo2009-11-07T11:16:48Z2009-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-false0Inserting a tab into a WPF RichTextBox when AllowTab is set to falseBermo2009-11-05T04:51:10Z2009-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#16800150Answer by Bermo for Inserting a tab into a WPF RichTextBox when AllowTab is set to falseBermo2009-11-05T11:38:42Z2009-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 & 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#13473990Answer by Bermo for WPF Validation Not Firing on First LostFocus of the TextBoxBermo2009-08-28T14:33:23Z2009-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><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#7512430Answer by Bermo for How do I integration testing to my code written using the ASP.NET Provider Model?Bermo2009-04-15T11:22:00Z2009-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-tfs4Renaming the containing project folder in VS.net under TFS.Bermo2008-09-08T02:45:54Z2009-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-wcsf5ASP.NET MVC vs. Web client software factory (WCSF)Bermo2008-09-10T05:37:26Z2009-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#561963Answer by Bermo for What is your favorite regex editor?Bermo2008-09-11T10:10:08Z2008-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#536620Answer by Bermo for DataTable to readable text stringBermo2008-09-10T09:02:09Z2008-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 & sending it as body of email</a>.</p>
http://stackoverflow.com/questions/50684/other-ways-to-encrypt-wcf-connections/50693#506930Answer by Bermo for Other ways to encrypt WCF ConnectionsBermo2008-09-08T21:07:40Z2008-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#506571Answer by Bermo for How do you allow multiple file uploads on an internal windows-authentication intranet?Bermo2008-09-08T20:54:06Z2008-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#494490Answer by Bermo for Can you recommend a good free code generator?Bermo2008-09-08T10:49:34Z2008-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#494360Answer by Bermo for Can a service have multiple endpoints?Bermo2008-09-08T10:36:12Z2008-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#488850Answer by Bermo for How to pass enumerated values to a web serviceBermo2008-09-07T23:21:15Z2008-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#1700159Comment by Bermo on Performance implications of turning MTOM on for a WCF serviceBermo2009-11-09T10:27:11Z2009-11-09T10:27:11ZI'm trying to find out whether "packing the data into a MIME-document" 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#1692730Comment by Bermo on Windows Service setup project - run service as administratorBermo2009-11-07T11:58:54Z2009-11-07T11:58:54ZNo 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#383708Comment by Bermo on Bring a window to the front in WPFBermo2009-08-26T04:54:32Z2009-08-26T04:54:32ZI 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#1213184Comment by Bermo on Why would my Visual Studio 2008 close everytime I open a .xaml file?Bermo2009-08-18T07:31:04Z2009-08-18T07:31:04ZYep, PowerCommands was my problem.