User amazedsaint - Stack Overflow most recent 30 from stackoverflow.com 2009-11-08T02:24:24Z http://stackoverflow.com/feeds/user/45956 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/365263/whats-your-favorite-c-open-source-project-of-the-year-2008 20 What's Your Favorite C# Open Source Project of the year 2008? amazedsaint 2008-12-13T14:34:27Z 2009-11-06T09:03:19Z <p><strong>C# Open Source Project Of The Year Award 2008</strong></p> <p>Let us decide which project should receive the honor, from the Stack Overflow community. And as the best programming community, I think the community opinion matters. </p> <p><hr /></p> <p>What's the best Open Source Project you've found, and loved in 2008? List it here, and let the community vote for the same. And in the end, we'll have a great list of interesting open source projects. Your entry should have a brief description, and a link to download the source code. You might consider entries from sites like Codeplex, Sourceforge.net, Codeproject etc. </p> <p><hr /></p> <p><strong>Important</strong>: Please look in the existing list before posting your entry, if it is already there, just vote.</p> http://stackoverflow.com/questions/1283698/what-are-the-challenges-in-porting-your-existing-applications-to-microsoft-azure 7 What are the challenges in porting your existing applications to Microsoft Azure? amazedsaint 2009-08-16T07:39:33Z 2009-11-04T03:14:47Z <p>What are the challenges in porting your existing applications to Azure? </p> <p>Here are few points I'm already aware about.</p> <p>1) No Support for Session Affinity (Azure is Stateless) - I'm aware that Azure load balancing doesn't support Session Affinity - hence if the existing web application should be changed if it has session affinity. </p> <p>2) Interfacing with COM - Presently I think there is no support for deploying COM components to the cloud to interface with them - if my current applications need to access some legacy components.</p> <p>3) Interfacing with other systems from the cloud using non-http protocols</p> <p>Other than the above mentioned points, what are other significant limitations/considerations that you are aware off?</p> http://stackoverflow.com/questions/565264/parsing-html-generated-from-legacy-asp-application-to-create-asp-net-2-0-pages 0 Parsing HTML generated from Legacy ASP Application to create ASP.NET 2.0 Pages amazedsaint 2009-02-19T13:19:03Z 2009-11-03T00:13:31Z <p>One of my friends is working on having a good solution to generate aspx pages, out of html pages generated from a legacy asp application.</p> <p>The idea is to run the legacy app, capture html output, clean the html using some tool (say HtmlTidy) and parse it/transform it to aspx, (using Xslt or a custom tool) so that existing html elements, divs, images, styles etc gets converted neatly to an aspx page (too much ;) ).</p> <p>Any existing tools/scripts/utilities to do the same?</p> http://stackoverflow.com/questions/1005497/improving-wpf-application-speed-over-remote-desktop 1 Improving WPF application speed over remote desktop? amazedsaint 2009-06-17T07:04:38Z 2009-10-25T12:00:02Z <p>In our scenario, we have a wpf application that is used by users over remote desktop, and we found the user experience is very slow.</p> <p>Any suggestions for improving the user experience in this scenario? One point might be to disable any animation/storyboards, and avoid using gradients in the UI. More thoughts are appreciated.</p> http://stackoverflow.com/questions/1531165/how-can-i-specify-t4-text-templates-to-use-c-4-0-in-vs2010 0 How can I specify T4 (Text Templates) to use C# 4.0, in VS2010? amazedsaint 2009-10-07T11:52:46Z 2009-10-24T08:04:35Z <p>I need to specify my T4 to use C# 4.0, to render my tt files? I tried using</p> <pre><code>&lt;#@ template language="C#v4.0" debug="true" #&gt; </code></pre> <p>But when I use a dynamic variable, like this</p> <pre><code>dynamic x=10; Write(x.ToString()); </code></pre> <p>I'm getting these errors </p> <pre><code>Error 2 Compiling transformation: Predefined type 'Microsoft.CSharp.RuntimeBinder.CSharpSetMemberBinder' is not defined or imported e:\projects\DynamicModel\DynamicModel\ModelGenerator.tt 1 1 Error 3 Compiling transformation: Missing compiler required member 'Microsoft.CSharp.RuntimeBinder.CSharpInvokeMemberBinder..ctor' e:\projects\DynamicModel\DynamicModel\ModelGenerator.tt 1 1 Error 4 Compiling transformation: Missing compiler required member 'System.Runtime.CompilerServices.CallSite.Create' e:\projects\DynamicModel\DynamicModel\ModelGenerator.tt 1 1 Error 5 Compiling transformation: One or more types required to compile a dynamic expression cannot be found. Are you missing references to Microsoft.CSharp.dll and System.Core.dll? e:\Projects\DynamicModel\DynamicModel\ModelGenerator.tt 7 8 Error 6 A namespace cannot directly contain members such as fields or methods e:\projects\DynamicModel\DynamicModel\ModelGenerator.cs 1 1 DynamicModel </code></pre> <p>Also, please note that I'm using TextTemplatingFileGenerator and <strong><em>Not</em></strong> pre-processor templates</p> http://stackoverflow.com/questions/1531165/how-can-i-specify-t4-text-templates-to-use-c-4-0-in-vs2010/1531404#1531404 1 Answer by amazedsaint for How can I specify T4 (Text Templates) to use C# 4.0, in VS2010? amazedsaint 2009-10-07T12:43:48Z 2009-10-24T08:04:35Z <p>Found that you should specify the correct assemblies as well. </p> <p>Adding this will ensure you are using c# 4.0.</p> <pre><code>&lt;#@ template language="C#" debug="true" #&gt; &lt;#@ output extension=".txt" #&gt; &lt;#@ Assembly Name="System.Core, Version=4.0.0.0, Culture=neutral" #&gt; &lt;#@ Assembly Name="Microsoft.CSharp, Version=4.0.0.0, Culture=neutral" #&gt; </code></pre> <p>How ever, for some reason, during the time of t4 transformation, the dynamic dispatching is still not working from T4, wondering why. From T4 it throws a runtime error, the same code does good directly from a cs file.</p> http://stackoverflow.com/questions/527761/cache-with-sql-dependency 0 Cache with SQL dependency? amazedsaint 2009-02-09T11:17:29Z 2009-10-19T21:44:46Z <p>I know that <a href="http://www.alachisoft.com/ncache/" rel="nofollow">NCache</a> provides SQL dependency for <a href="http://en.wikipedia.org/wiki/Microsoft%5FSQL%5FServer" rel="nofollow">Microsoft SQL Server</a> and <a href="http://en.wikipedia.org/wiki/Oracle%5FDatabase" rel="nofollow">Oracle</a> (10G R4 onwards). I am interested to know what other caching solutions are available, that comes with dependency on Oracle?</p> <p>Does <a href="http://en.wikipedia.org/wiki/Microsoft%5Fcodename%5F%22Velocity%22" rel="nofollow">Velocity</a>, <a href="http://en.wikipedia.org/wiki/Memcached" rel="nofollow">memcached</a>, etc. support SQL dependency to receive notifications/update the cache automatically, when something changes in the database?</p> http://stackoverflow.com/questions/1281509/google-wave-for-net/1551336#1551336 2 Answer by amazedsaint for Google Wave for .Net amazedsaint 2009-10-11T18:14:35Z 2009-10-11T18:14:35Z <p>I've done a quick implementation using BING Apis and Skeet's API - <a href="http://amazedsaint.blogspot.com/2009/09/bingybot-google-wave-bot-written-in.html" rel="nofollow">http://amazedsaint.blogspot.com/2009/09/bingybot-google-wave-bot-written-in.html</a></p> http://stackoverflow.com/questions/86333/what-design-pattern-do-you-use-the-most/1422728#1422728 1 Answer by amazedsaint for What design pattern do you use the most? amazedsaint 2009-09-14T16:55:30Z 2009-09-14T16:55:30Z <p>I'm not really sure whether your question is specific to GOF patterns or regarding <em>all</em> - including Enterprise application related patterns.</p> <p>There is no silver bullet - It depends on the design problem you are trying to solve, and hence some what related to the domain you are working.</p> <p>Normally the thought process is like</p> <ul> <li>How you identify the entities in your system, </li> <li>How you identify the design problems, and </li> <li>How you apply patterns to address your design specifications.</li> </ul> <p>Again, the frameworks/platforms you use for development may have already implemented patterns as part of their architecture - so you'll be using them anyway.</p> <p>For me, the most common ones are observer, decorator, singleton, chain of responsibility and facade.</p> <p>You might want to go through this article on "Applying Design Patterns" - <a href="http://amazedsaint.blogspot.com/2009/06/software-design-patterns-for-everyone.html" rel="nofollow">http://amazedsaint.blogspot.com/2009/06/software-design-patterns-for-everyone.html</a></p> http://stackoverflow.com/questions/380819/common-programming-mistakes-for-net-developers-to-avoid 166 Common programming mistakes for .NET developers to avoid? amazedsaint 2008-12-19T12:14:35Z 2009-09-04T08:19:04Z <p>What are some common mistakes made by .NET developers, and how can we avoid them? </p> <p>For example, trying to open a file without checking whether or not it exists, or catching an error unnecessarily.</p> <p>Please look in to the list before posting new</p> <p><hr /></p> <p><strong>Please justify your answer as well, if applicable and give examples.</strong></p> http://stackoverflow.com/questions/1336883/what-are-the-limitations-of-wpf-web-browser-control 0 what are the limitations of wpf web browser control? amazedsaint 2009-08-26T19:15:26Z 2009-08-26T19:53:43Z <p>What are the limitations of WPF web browser control? Is it good enough for a real-life browser implementation? And is it a fully managed implementation?</p> http://stackoverflow.com/questions/1300408/how-to-get-the-selected-index-of-mvvm-bound-radiobuttons/1300943#1300943 0 Answer by amazedsaint for How to get the selected index of MVVM-bound radiobuttons? amazedsaint 2009-08-19T15:59:46Z 2009-08-19T15:59:46Z <p>This is how I solved this problem. I wrote an EnumToBool converter for this, like</p> <pre><code> public class EnumToBoolConverter : IValueConverter { #region IValueConverter Members public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture) { if (parameter.Equals(value)) return true; else return false; } public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture) { return parameter; } #endregion } </code></pre> <p>And I've the following enumeration</p> <pre><code> public enum CompanyTypes { Type1Comp, Type2Comp, Type3Comp } </code></pre> <p>Now, in my Xaml, I'm passing the types as the converter parameter.</p> <pre><code>&lt;Window x:Class="WpfTestRadioButtons.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="clr-namespace:WpfTestRadioButtons" Title="Window1" Height="300" Width="300"&gt; &lt;Window.Resources&gt; &lt;local:EnumToBoolConverter x:Key="EBConverter"/&gt; &lt;/Window.Resources&gt; &lt;Grid&gt; &lt;StackPanel&gt; &lt;RadioButton IsChecked="{Binding Path=Type, Converter={StaticResource EBConverter}, ConverterParameter={x:Static local:CompanyTypes.Type1Comp}}" Content="Type1"/&gt; &lt;RadioButton IsChecked="{Binding Path=Type, Converter={StaticResource EBConverter}, ConverterParameter={x:Static local:CompanyTypes.Type2Comp}}" Content="Type2"/&gt; &lt;/StackPanel&gt; &lt;/Grid&gt; &lt;/Window&gt; </code></pre> <p>Now, in your view model, you should have a property (in this case Type), which is of that Enum type.</p> <p>Like, </p> <pre><code>public CompanyTypes Type { get { return _type; } set { _type = value; if (PropertyChanged != null) PropertyChanged(this, new PropertyChangedEventArgs("Type")); } } </code></pre> <p>In this example, you might have noticed that Radiobuttons are static. In your case, as you are listing the radio buttons inside an Item control, you need to bind your ConverterParameter of your RadioButton as well, to the correct type.</p> http://stackoverflow.com/questions/1300336/tabbing-or-deselecting-cell-not-committing-data/1300786#1300786 1 Answer by amazedsaint for Tabbing or Deselecting Cell not Committing Data amazedsaint 2009-08-19T15:37:04Z 2009-08-19T15:37:04Z <p>Try changing the UpdateSourceTrigger parameter of your control's Binding to PropertyChanged instead of the default LostFocus. </p> <p>Eg</p> <pre><code> &lt;TextBox Width="75" VerticalAlignment="Top" Margin="10" Text="{Binding Source={StaticResource data}, Path=Age, UpdateSourceTrigger=PropertyChanged, ValidatesOnDataErrors=True, ValidatesOnExceptions=True}" Style="{StaticResource textBoxInError}" /&gt; </code></pre> http://stackoverflow.com/questions/1298240/good-datamodelling-software/1298304#1298304 0 Answer by amazedsaint for Good datamodelling software amazedsaint 2009-08-19T07:27:16Z 2009-08-19T07:27:16Z <p>I like the Toad Data Modeller</p> <p><a href="http://www.toadsoft.com/toaddm/toad%5Fdata%5Fmodeler.htm" rel="nofollow">http://www.toadsoft.com/toaddm/toad%5Fdata%5Fmodeler.htm</a></p> http://stackoverflow.com/questions/1267255/visual-studio-sdk-getting-notified-when-a-project-item-in-your-packages-vsx-pr 0 Visual Studio SDK - Getting notified when a project item in your package's vsx project has undergone undo checkout? amazedsaint 2009-08-12T16:27:39Z 2009-08-12T16:27:39Z <p>We are working with Visual Studio SDK, creating a package. We need to get notified when a file (projectitem) gets undo checkout from TFS.</p> <p>Any solutions/pointers are appreciated.</p> http://stackoverflow.com/questions/1244173/a-good-document-management-software-with-some-extensibility 2 A Good Document Management software with some extensibility? amazedsaint 2009-08-07T11:07:34Z 2009-08-09T11:57:23Z <p>We are looking forward for some good document management suits/applications, with some extensibility.</p> <p>The customers will submit various documents, and this need to be stored using the system for later review and verification. Customers can come back any time to view/modify these documents.</p> <p>We need to integrate this with the existing .NET product stack, so some APIs for uploading/retrieving documents are expected, along with some out of the box functionality to edit the documents online.</p> <p>Expected document support include pdf, doc etc.</p> <p>Added - We are also considering cloud based services. Any comments on Azure SharePoint services?</p> <p>Thanks</p> http://stackoverflow.com/questions/1244638/investing-in-competency-building-for-microsoft-azure-and-related-technologies 1 Investing in competency building for Microsoft Azure and related technologies? amazedsaint 2009-08-07T13:13:45Z 2009-08-08T17:47:17Z <p>A couple of questions around investing about competency building for Windows Azure.</p> <ul> <li>How glorious and revolutionary the platform is. </li> <li>How partners can add value to customers by using Azure.</li> </ul> <p>Expanding a little further on my question, there are 2 players in enabling a cloud model for an application</p> <ul> <li>The hosting services provider (Microsoft)</li> <li>The application services provider (The rest of us)</li> </ul> <p>My question is, what are the key value adds and sustainable competitive advantages that we, as application service providers, can take to market? Sustainable is the key word. What are the key advantages in investing in competency building for azure? </p> <p>The entry barrier on Azure seems very low to me with my current understanding of the technology. Will it become like another .Net in just a few months with millions of players with nothing to distinguish one from the other?</p> <p>What are the high technology content areas of azure to focus on, for a competency building exercise? Like share point services, live mesh etc?</p> <p>Please share your views</p> http://stackoverflow.com/questions/1239875/arcgis-crash-on-memory-allocation-in-c/1239983#1239983 0 Answer by amazedsaint for ArcGIS crash on memory allocation in C# amazedsaint 2009-08-06T16:19:17Z 2009-08-06T16:19:17Z <p>We had a similar mysterious crash issue with Arc GIS long time back. We eventually found that the disk quota was enabled in the server side, for the Arc GIS account. Removing the quota solved the issue.</p> <p>Probably you can try that if anything else is not working.</p> http://stackoverflow.com/questions/1236877/entity-framework-and-temporary-objects/1236905#1236905 0 Answer by amazedsaint for Entity Framework and Temporary Objects amazedsaint 2009-08-06T04:04:26Z 2009-08-06T04:04:26Z <p>If you want to have a temporary instance of an entity that'll never be connected to the EF again, use this <a href="http://msmvps.com/blogs/matthieu/archive/2008/05/31/entity-cloner.aspx" rel="nofollow">Entity Cloner</a> for cloning the entity</p> <p>If you are trying to disconnect an entity, send it over the wire some where (let us say pass it over to the client over a service, to modify it, and then again get it back), and again merge back the changes to the EF - right now this is not directly supported. How ever, you can try these solutions</p> <p><a href="http://blogs.msdn.com/dsimmons/archive/2008/01/28/entitybag-wrap-up-and-future-directions.aspx" rel="nofollow">Entity Bag:</a> </p> <p><a href="http://www.codeplex.com/efcontrib" rel="nofollow">EFContrib (you need PostSharp4EF)</a> </p> http://stackoverflow.com/questions/1225983/how-can-i-use-a-debuggerdisplay-attribute-on-an-indexer-class/1226042#1226042 0 Answer by amazedsaint for How can I use a DebuggerDisplay attribute on an indexer class... amazedsaint 2009-08-04T07:09:10Z 2009-08-04T07:09:10Z <p>Try </p> <pre><code>Debug: {Items[{index}]} </code></pre> http://stackoverflow.com/questions/1225945/how-to-release-a-handle-through-c/1225989#1225989 0 Answer by amazedsaint for How to release a handle through C#? amazedsaint 2009-08-04T06:53:18Z 2009-08-04T06:53:18Z <p>What exactly you are trying to do? If you want to load an assembly to do some stuff with that, and then unload it completely, you need to rely on creating a new app domain.</p> <pre><code>public static void Main(string[] args) { AppDomain appDomain = AppDomain.CreateDomain("NewAppDomain"); appDomain.DoCallBack(new CrossAppDomainDelegate(AsmLoad)); // At this point, your assembly is locked, you can't delete AppDomain.Unload(appDomain); Console.WriteLine("AppDomain unloaded"); //You've completely unloaded your assembly. Now if you want, you can delete the same } public static void AsmLoad() { Assembly assembly = Assembly.LoadFrom(@"c:\Yourassembly.dll"); //Loaded to the new app domain. You can do some stuff here Console.WriteLine("Assembly loaded in {0}",AppDomain.CurrentDomain.FriendlyName); } </code></pre> <p>Have a look at this post for more, <a href="http://blogs.msdn.com/suzcook/archive/2003/07/08/57211.aspx" rel="nofollow">http://blogs.msdn.com/suzcook/archive/2003/07/08/57211.aspx</a></p> <blockquote> <p>Or, if you're only worried about keeping the file locked, you could use shadow copying. That will make a copy of the file on disk and load it from the new location. The original file will not be locked by that load. To do that, set AppDomainSetup.ShadowCopyFiles to "true" when creating the AppDomain or set AppDomain.ShadowCopyFiles to true after it's already been created.</p> </blockquote> http://stackoverflow.com/questions/1119910/silverlight-and-prism-lazy-loading-a-dll-outside-a-xap-file 0 Silverlight And Prism - Lazy loading a dll outside a xap file? amazedsaint 2009-07-13T14:49:12Z 2009-07-23T22:39:37Z <p>In the modularity quick start (<a href="http://msdn.microsoft.com/en-us/library/dd490828.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/dd490828.aspx</a>) there is enough details on delay loading a type from an assembly in a xap file.</p> <p>Is there any way an assembly can be delay loaded using Prism for Silverlight, if it is not embedded in the xap?</p> http://stackoverflow.com/questions/389588/freely-downloadable-e-books-for-net 5 Freely downloadable e-books for .NET? amazedsaint 2008-12-23T17:54:49Z 2009-07-22T17:24:21Z <p>Trying to amass a collection of freely downloadable e-books/pdf books for .NET. If you've any good resources, please list them here.</p> http://stackoverflow.com/questions/1096682/what-kind-of-c-is-an-operating-system-written-in/1096727#1096727 10 Answer by amazedsaint for What kind of C is an operating system written in? amazedsaint 2009-07-08T08:07:18Z 2009-07-20T03:43:49Z <p>C is a very low level language, and you can do a lot of things directly. Any of the C library methods (like malloc, printf, crlscr etc) need to be implemented first, to invoke them from C (Have a look at libc concepts for example). I'll give an example below.</p> <p>Let us see how the C library methods are implemented under the hood. We'll go with a clrscr example. When you implement such methods, you'll access system devices directly. For ex, for clrscr (clearing the screen) we know that the video memory is resident at 0xB8000. Hence, to write to screen or to clear it, we start by assigning a pointer to that location.</p> <p>In video.c</p> <pre><code>void clrscr() { unsigned char *vidmem = (unsigned char *)0xB8000; const long size = 80*25; long loop; for (loop=0; loop&lt;size; loop++) { *vidmem++ = 0; *vidmem++ = 0xF; } } </code></pre> <p>Let us write our mini kernel now. This will clear the screen when the control is handed over to our 'kernel' from the boot loader. In main.c</p> <pre><code>void main() { clrscr(); for(;;); } </code></pre> <p>To compile our 'kernel', you might use gcc to compile it to a pure bin format.</p> <pre><code>gcc -ffreestanding -c main.c -o main.o gcc -c video.c -o video.o ld -e _main -Ttext 0x1000 -o kernel.o main.o video.o ld -i -e _main -Ttext 0x1000 -o kernel.o main.o video.o objcopy -R .note -R .comment -S -O binary kernel.o kernel.bin </code></pre> <p>If you noticed the ld parameters above, you see that we are specifying the default load location of your Kernel as 0x1000. Now, you need to create a boot loader. From your boot loader logic, you might want to pass control to your Kernel, like</p> <pre><code>jump 08h:01000h </code></pre> <p>You normally write your boot loader logic in Asm. Even before that, you may need to have a look at how a PC Boots - <a href="http://en.wikipedia.org/wiki/Booting" rel="nofollow">Click Here</a>. </p> <p>Better start with a tinier Operating system to explore. See this Roll Your Own OS Tutorial</p> <p><a href="http://www.acm.uiuc.edu/sigops/roll_your_own/" rel="nofollow">http://www.acm.uiuc.edu/sigops/roll_your_own/</a></p> http://stackoverflow.com/questions/1136399/how-to-update-textbox-on-gui-from-another-thread-in-c/1136410#1136410 6 Answer by amazedsaint for How to update textbox on GUI from another thread in c# amazedsaint 2009-07-16T09:24:35Z 2009-07-16T09:44:22Z <p>Use Invoke method</p> <pre><code>// Updates the textbox text. private void UpdateText(string text) { // Set the textbox text. yourTextBox.Text = text; } </code></pre> <p>Now, create a delegate that has the same signature as the method that was previously defined:</p> <pre><code>public delegate void UpdateTextCallback(string text); </code></pre> <p>In your thread, you can call the Invoke method on yourTextBox, passing the delegate to call, as well as the parameters.</p> <pre><code>yourTextBox.Invoke(new UpdateTextCallback(this.UpdateText), new object[]{”Text generated on non-UI thread.”}); </code></pre> http://stackoverflow.com/questions/1136409/ways-to-extract-selected-node-values-from-this-xml-markup/1136467#1136467 0 Answer by amazedsaint for Way(s) to extract selected node values from this XML Markup amazedsaint 2009-07-16T09:37:02Z 2009-07-16T09:37:02Z <p>I wrote a quick prog with your sample, this should do the trick.</p> <pre><code>class Program { //I just copied your stuff to Test.xml static void Main(string[] args) { XDocument doc = XDocument.Load("Test.xml"); var verbs=new Dictionary&lt;string,string&gt;(); //Add the values to replace ehre verbs.Add("@@value3@@", "mango"); verbs.Add("@@value1@@", "potato"); ReplaceStuff(verbs, doc.Root.Elements()); doc.Save("Test2.xml"); } //A simple replace class static void ReplaceStuff(Dictionary&lt;string,string&gt; verbs,IEnumerable&lt;XElement&gt; elements) { foreach (var e in elements) { if (e.Elements().Count() &gt; 0) ReplaceStuff(verbs, e.Elements() ); else { if (verbs.ContainsKey(e.Value.Trim())) e.Value = verbs[e.Value]; } } } } </code></pre> http://stackoverflow.com/questions/1119256/how-do-i-prevent-a-form-from-being-resized-by-the-user/1119260#1119260 0 Answer by amazedsaint for how do i prevent a form from being resized by the user? amazedsaint 2009-07-13T12:52:01Z 2009-07-13T13:05:16Z <p>To prevent users from resizing, set the FormBoderStyle to Fixed3D or FixedDialog from properties window or from code</p> <pre><code>frmYour.BorderStyle = System.WinForms.FormBorderStyle.Fixed3D </code></pre> <p>And set the WindowState property to Maximized, set the MaximizeBox and MinimizeBox properties to false.</p> <p>To prevent the user from moving around, override WndProc</p> <pre><code>Protected Overrides Sub WndProc(ByRef m As Message) Const WM_NCLBUTTONDOWN As Integer = 161 Const WM_SYSCOMMAND As Integer = 274 Const HTCAPTION As Integer = 2 Const SC_MOVE As Integer = 61456 If (m.Msg = WM_SYSCOMMAND) And (m.WParam.ToInt32() = SC_MOVE) Then Return End If If (m.Msg = WM_NCLBUTTONDOWN) And (m.WParam.ToInt32() = HTCAPTION) Then Return End If MyBase.WndProc(m) End Sub </code></pre> http://stackoverflow.com/questions/369504/microsoft-visual-studio-sdk-dsl-tools-any-serious-takers 4 Microsoft Visual Studio SDK DSL Tools - Any serious takers? amazedsaint 2008-12-15T19:53:51Z 2009-07-12T03:32:03Z <p>We are considering Microsoft DSL toolkit for creating some abstract designers. I already did some POCs, but would like to get some opinions on the same.</p> <p>Any one here to share their experiences working with Microsoft DSL Toolkit and T4? Also, any pointers to open source DSL projects will help - Eg. Microsoft Service Factory modeling edition is heavily relying on DSL toolkit.</p> <p>As OSLO/Quadrant will take some time to get released, I think the only option we have is to rely on Microsoft DSL designer. (<a href="http://blogs.msdn.com/keith_short/archive/2008/11/06/oslo-and-the-dsl-toolkit.aspx" rel="nofollow">See Kieth's blog on the same</a>)</p> <p>Also, here is some information I already have on DSL:</p> <p>1 - <a href="http://code.msdn.microsoft.com/DSLToolsLab" rel="nofollow">A Nice Lab in MSDN on DSL tools</a></p> <p>2 - <a href="http://www.codeplex.com/site/search?ProjectSearchText=DSL" rel="nofollow">A List of Projects in Codeplex using DSL toolkit</a></p> http://stackoverflow.com/questions/1091976/how-to-make-add-a-fade-in-fade-out-animation-based-on-viewmodel-property-value/1092000#1092000 2 Answer by amazedsaint for How to make add a fade-in/fade-out animation based on ViewModel property value? amazedsaint 2009-07-07T12:23:18Z 2009-07-07T12:23:18Z <p>You can put the BeginStoryboard inside your DataTrigger.EnterActions</p> <pre><code> &lt;DataTrigger Binding="{Binding PageToolBarVisible}" Value="false" &gt; &lt;DataTrigger.EnterActions&gt; &lt;BeginStoryboard&gt; &lt;Storyboard&gt; &lt;DoubleAnimation Storyboard.TargetName="PageToolBar" Storyboard.TargetProperty="(TextBlock.Opacity)" From="0.0" To="1.0" Duration="0:0:3"/&gt; &lt;/Storyboard&gt; &lt;/BeginStoryboard&gt; &lt;/DataTrigger.EnterActions&gt; &lt;DataTrigger.ExitActions&gt; &lt;Storyboard&gt; &lt;DoubleAnimation Storyboard.TargetName="PageToolBar" Storyboard.TargetProperty="(TextBlock.Opacity)" From="1.0" To="0.0" Duration="0:0:3"/&gt; &lt;/Storyboard&gt; &lt;/DataTrigger.ExitActions&gt; &lt;/DataTrigger&gt; </code></pre> http://stackoverflow.com/questions/1081325/c-how-to-xml-deserialize-object-itself/1081355#1081355 3 Answer by amazedsaint for C# - How to xml deserialize object itself? amazedsaint 2009-07-04T02:30:07Z 2009-07-07T11:14:44Z <p>This will work if your Options type is a struct, as you can a alter a struct itself.</p> <p>If Options is a class (reference type), you can't assign to the current instance of a reference type with in that instance. Suggesting you to write a helper class, and put your Read and Save methods there, like this</p> <pre><code> public class XmlSerializerHelper&lt;T&gt; { public Type _type; public XmlSerializerHelper() { _type = typeof(T); } public void Save(string path, object obj) { using (TextWriter textWriter = new StreamWriter(path)) { XmlSerializer serializer = new XmlSerializer(_type); serializer.Serialize(textWriter, obj); } } public T Read(string path) { T result; using (TextReader textReader = new StreamReader(path)) { XmlSerializer deserializer = new XmlSerializer(_type); result = (T)deserializer.Deserialize(textReader); } return result; } } </code></pre> <p>And then consume it from your caller, to read and save objects, instead of trying it from the class.</p> <pre><code>//In the caller var helper=new XmlSerializerHelper&lt;Options&gt;(); var obj=new Options(); //Write and read helper.Save("yourpath",obj); obj=helper.Read("yourpath"); </code></pre> <p>And put the XmlSerializerHelper in your Util's namespace, it is reusable and will work with any type.</p> http://stackoverflow.com/questions/710329/load-external-xaml-file-using-loadcomponent/1468524#1468524 Comment by amazedsaint on Load external XAML file using LoadComponent amazedsaint 2009-10-30T06:13:30Z 2009-10-30T06:13:30Z Unfortunately, XamlReader.Load will work only for xaml files with out events in it http://stackoverflow.com/questions/1531165/how-can-i-specify-t4-text-templates-to-use-c-4-0-in-vs2010/1531404#1531404 Comment by amazedsaint on How can I specify T4 (Text Templates) to use C# 4.0, in VS2010? amazedsaint 2009-10-24T12:03:03Z 2009-10-24T12:03:03Z And FYI I'm using a custom template host, not directly running t4 from VS :) http://stackoverflow.com/questions/1531165/how-can-i-specify-t4-text-templates-to-use-c-4-0-in-vs2010/1531404#1531404 Comment by amazedsaint on How can I specify T4 (Text Templates) to use C# 4.0, in VS2010? amazedsaint 2009-10-24T12:02:16Z 2009-10-24T12:02:16Z infact I got it right, thanks http://stackoverflow.com/questions/1531165/how-can-i-specify-t4-text-templates-to-use-c-4-0-in-vs2010 Comment by amazedsaint on How can I specify T4 (Text Templates) to use C# 4.0, in VS2010? amazedsaint 2009-10-07T12:35:32Z 2009-10-07T12:35:32Z Yep, it goes well as long as you don't use a dynamic variable http://stackoverflow.com/questions/1298240/good-datamodelling-software/1298304#1298304 Comment by amazedsaint on Good datamodelling software amazedsaint 2009-08-19T15:31:47Z 2009-08-19T15:31:47Z It is pretty neat, and based on your db, download the version of Toad - so that you'll get some kind of reverse engineering feature as well. http://stackoverflow.com/questions/1244173/a-good-document-management-software-with-some-extensibility/1244208#1244208 Comment by amazedsaint on A Good Document Management software with some extensibility? amazedsaint 2009-08-07T12:39:32Z 2009-08-07T12:39:32Z Thanks for the comment. One key problem area is - it doesn't offer online editing for docs http://stackoverflow.com/questions/1239875/arcgis-crash-on-memory-allocation-in-c/1239983#1239983 Comment by amazedsaint on ArcGIS crash on memory allocation in C# amazedsaint 2009-08-07T06:35:26Z 2009-08-07T06:35:26Z Yep, the Arc GIS server http://stackoverflow.com/questions/1224303/why-isnt-my-exception-being-caught Comment by amazedsaint on Why isn't my exception being caught amazedsaint 2009-08-04T07:13:30Z 2009-08-04T07:13:30Z Who throwed that exception? If John Skeet did, you can't catch it man ;) http://stackoverflow.com/questions/1136409/ways-to-extract-selected-node-values-from-this-xml-markup Comment by amazedsaint on Way(s) to extract selected node values from this XML Markup amazedsaint 2009-07-16T09:42:39Z 2009-07-16T09:42:39Z You just want to fetch tokens, or need to replace them? http://stackoverflow.com/questions/1136399/how-to-update-textbox-on-gui-from-another-thread-in-c/1136406#1136406 Comment by amazedsaint on How to update textbox on GUI from another thread in c# amazedsaint 2009-07-16T09:38:46Z 2009-07-16T09:38:46Z Yea, I know. When John Skeet write an example, the language will self adjust to accommodate that. http://stackoverflow.com/questions/1136399/how-to-update-textbox-on-gui-from-another-thread-in-c/1136406#1136406 Comment by amazedsaint on How to update textbox on GUI from another thread in c# amazedsaint 2009-07-16T09:25:37Z 2009-07-16T09:25:37Z already posted an eg :) http://stackoverflow.com/questions/1119256/how-do-i-prevent-a-form-from-being-resized-by-the-user/1119260#1119260 Comment by amazedsaint on how do i prevent a form from being resized by the user? amazedsaint 2009-07-13T13:27:31Z 2009-07-13T13:27:31Z constants for passing to windows api - each integer represents a Windows Message command and corresponding parameter http://stackoverflow.com/questions/1119256/how-do-i-prevent-a-form-from-being-resized-by-the-user/1119260#1119260 Comment by amazedsaint on how do i prevent a form from being resized by the user? amazedsaint 2009-07-13T13:06:28Z 2009-07-13T13:06:28Z I havn't completed. See the code above. http://stackoverflow.com/questions/1081325/c-how-to-xml-deserialize-object-itself/1081355#1081355 Comment by amazedsaint on C# - How to xml deserialize object itself? amazedsaint 2009-07-07T11:43:17Z 2009-07-07T11:43:17Z Yep, now I've wrote that in the IDE and made sure it is compiling, lol;) http://stackoverflow.com/questions/1081610/how-to-ease-the-transition-from-winforms-to-wpf/1081638#1081638 Comment by amazedsaint on How to ease the transition from WinForms to WPF amazedsaint 2009-07-04T06:20:06Z 2009-07-04T06:20:06Z Link is Repaired