User Stan R. - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T18:27:03Z http://stackoverflow.com/feeds/user/119929 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1821488/c-determine-property-type-at-runtime/1821534#1821534 1 Answer by Stan R. for C# - Determine property type at runtime Stan R. 2009-11-30T18:30:34Z 2009-11-30T18:30:34Z <p>Seems like instead of working around this you should consider a different design. For instance creating a separate class all together for everything that is going to be WebContext and implementing a common interface.</p> http://stackoverflow.com/questions/1799843/how-to-left-right-truncate-numbers-without-strings-euler-37/1799914#1799914 1 Answer by Stan R. for How to left/right truncate numbers without strings (Euler #37) Stan R. 2009-11-25T21:01:15Z 2009-11-25T21:01:15Z <pre><code>var numbers = GetNumbers(3797); public static IEnumerable&lt;int&gt; GetNumbers(int val) { int ba = 1; int result = 1; while(result &gt; 0) { ba *= 10; result = val / ba; if(result &gt; 0) yield return result; } } </code></pre> <p>will produce</p> <blockquote> <p>379 37 3</p> </blockquote> http://stackoverflow.com/questions/1799055/trying-to-convert-xml-to-a-dictionary/1799117#1799117 2 Answer by Stan R. for Trying to convert xml to a dictionary Stan R. 2009-11-25T18:44:33Z 2009-11-25T18:44:33Z <p>Specify what you want for Key and what for Value.</p> <pre><code>var myDict = myXmlDoc.Elements() .ToDictionary( key =&gt; key.Name, val =&gt; val.Value); </code></pre> http://stackoverflow.com/questions/1792503/how-to-merge-2-or-more-lists-implementing-same-interface/1792550#1792550 0 Answer by Stan R. for How to merge 2 or more Lists implementing same interface Stan R. 2009-11-24T19:58:42Z 2009-11-24T19:58:42Z <p>What Blindy means is unless you do</p> <pre><code>public List&lt;IBaseRecord&gt; TypeARecords {get; set;} public List&lt;IBaseRecord&gt; TypeBRecords {get; set;} </code></pre> <p>Then you can do something like</p> <pre><code>public IEnumerable&lt;IBaseRecord&gt; AllRecords { get { return Enumerable.Concat(TypeARecords, TypeBRecords); } } </code></pre> http://stackoverflow.com/questions/1792101/generic-method-with-actiont-parameter/1792161#1792161 0 Answer by Stan R. for Generic method with Action<T> parameter Stan R. 2009-11-24T18:56:38Z 2009-11-24T18:56:38Z <p>Try this.</p> <pre><code> Orangutan orangutan = new Orangutan(); Action&lt;IAnimal&gt; castedAction = action as Action&lt;IAnimal&gt;; castedAction(orangutan); </code></pre> http://stackoverflow.com/questions/1791153/difference-between-arrays-single-dimensional-arrays-in-c/1791182#1791182 7 Answer by Stan R. for Difference between Arrays & Single-Dimensional Arrays in c# Stan R. 2009-11-24T16:25:46Z 2009-11-24T16:25:46Z <p>What exactly is your question? Please specify. For now here are the different types of <a href="http://msdn.microsoft.com/en-us/library/aa288453%28VS.71%29.aspx" rel="nofollow">Arrays in C#</a>.</p> <p>Single-dimensional arrays:</p> <pre><code>int[] numbers; </code></pre> <p>Multidimensional arrays:</p> <pre><code>string[,] names; </code></pre> <p>Array-of-arrays (jagged):</p> <pre><code>byte[][] scores; </code></pre> http://stackoverflow.com/questions/1772224/passing-by-reference-not-working/1772265#1772265 1 Answer by Stan R. for passing by reference not working Stan R. 2009-11-20T18:00:01Z 2009-11-20T18:00:01Z <p>You are changing a reference to an object you created in another method and you are pointing your IEntity instance to that object.</p> http://stackoverflow.com/questions/1771813/lock-before-reading-a-global-string/1771861#1771861 1 Answer by Stan R. for Lock before reading a global string? Stan R. 2009-11-20T17:02:51Z 2009-11-20T17:02:51Z <p>If you are not doing any writing or modifying any shared variables then you don't need to use lock.</p> http://stackoverflow.com/questions/1690369/get-program-title-from-process-name-in-c/1690431#1690431 2 Answer by Stan R. for Get program title from process name in C# Stan R. 2009-11-06T21:03:55Z 2009-11-06T21:09:20Z <p>Check out <a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.fileversioninfo.aspx" rel="nofollow">FileVersionInfo</a> class might be helpful for you.</p> <pre><code> var info = Process.GetProcessesByName("devenv").FirstOrDefault(); if (info != null) { Console.WriteLine(info.MainModule.FileVersionInfo.ProductName); Console.WriteLine(info.MainModule.FileVersionInfo.FileDescription); } </code></pre> http://stackoverflow.com/questions/1690220/c-typecast-basic-querry/1690292#1690292 0 Answer by Stan R. for C# Typecast Basic querry Stan R. 2009-11-06T20:44:24Z 2009-11-06T20:44:24Z <p>First, please clarify your code since it doesn't make any sense.</p> <p>Second, ask yourself why are you using a struct? are you certain you need a struct? and not a class? look at other questions on StackOverflow that get into that topic.</p> <p>Third</p> <pre><code>(Package)strquery.strvalue </code></pre> <p>Is not valid code. strquery is a <strong>string</strong> and cannot be casted into <strong>Package</strong> struct. These are not objects related to each other at any level. (except that they both derive from <strong>object</strong> class)</p> <p>Fourth if I were to assume you have a collection of Package based on your "question"</p> <blockquote> <p>I want to take the value of intvalues of the Package whose name is strquery.</p> </blockquote> <p>You want something like this</p> <pre><code>int[] foundValues; foreach(Package pack in packageCollection) { if( pack.strvalue == strquery) { foundValues = pack.intvalues; break; } } </code></pre> http://stackoverflow.com/questions/1669456/windows-file-security-removing-an-access-rule/1669619#1669619 1 Answer by Stan R. for Windows File security, removing an access rule Stan R. 2009-11-03T19:28:58Z 2009-11-03T19:28:58Z <p>Take a look at <a href="http://msdn.microsoft.com/en-us/library/system.security.accesscontrol.objectsecurity.setaccessruleprotection.aspx" rel="nofollow">SetAccessRuleProtection</a> on <code>DirectorySecurity</code> class, from reading it..I would think you'd need..</p> <pre><code>ds.RemoveAccessRule(ar); ds.SetAccessRuleProtection(true,false); </code></pre> <p>play around with it.</p> http://stackoverflow.com/questions/1650604/linqtosql-query-that-spans-a-many-to-many-relation/1650659#1650659 0 Answer by Stan R. for LinqToSql query that spans a many-to-many relation? Stan R. 2009-10-30T15:55:44Z 2009-10-30T15:55:44Z <p>Something like this perhaps</p> <pre><code>var contentIds = from c in Content join tc in TagContent on c.Id equals tc.ContentId join t in Tag on tc.TagId equals t.Id where t.Name == "Test" select new { ContentId = c.Id }; </code></pre> http://stackoverflow.com/questions/1633535/an-efficient-solution-to-a-string-replace-problem/1633634#1633634 0 Answer by Stan R. for An efficient solution to a String.Replace problem? Stan R. 2009-10-27T20:57:50Z 2009-10-27T21:03:46Z <p>This should do less string manipulation by selecting the values</p> <pre><code> String[] strings = new String[1024]; KeyValuePair&lt;String, String&gt;[] pairs = new KeyValuePair&lt;String, String&gt;[ 50 ]; String[] replaced = strings.Select(x =&gt; pairs.Any( y =&gt; y.Key == x ) ? pairs.Where( z =&gt; z.Key == x).Select( val =&gt; val.Value).First() : x ) .ToArray(); </code></pre> http://stackoverflow.com/questions/1632078/split-string-in-512-char-chunks-c/1632223#1632223 1 Answer by Stan R. for Split string in 512 char chunks [C#] Stan R. 2009-10-27T16:54:45Z 2009-10-27T17:11:12Z <p>using Jon's implementation and the <strong>yield</strong> keyword.</p> <pre><code>IEnumerable&lt;string&gt; Chunks(string strText, int chunkSize) { for (int offset = 0; offset &lt; text.Length; offset += size) { int size = Math.Min(chunkSize, text.Length - offset); yield return text.Substring(offset, size); } yield break; } </code></pre> http://stackoverflow.com/questions/1631926/find-which-account-a-service-is-set-to-log-on-as/1632126#1632126 1 Answer by Stan R. for Find which account a service is set to "Log On As" Stan R. 2009-10-27T16:39:53Z 2009-10-27T16:39:53Z <p>This is the only way I know of, I found it looking around and tested it, it works. Make sure you use the Service Name not it's Display Name, you will also need to add a reference to <strong>System.Management</strong></p> <pre><code>string serviceName = "aspnet_state"; SelectQuery query = new System.Management.SelectQuery(string.Format("select name, startname from Win32_Service where name = '{0}'", serviceName)); using (ManagementObjectSearcher searcher = new System.Management.ManagementObjectSearcher(query)) { foreach (ManagementObject service in searcher.Get()) { Console.WriteLine(string.Format("Name: {0} - Logon : {1} ", service["Name"], service["startname"])); } } </code></pre> http://stackoverflow.com/questions/1631754/c-using-a-generic-to-create-a-pointer-array/1631841#1631841 0 Answer by Stan R. for C#: Using a generic to create a pointer array Stan R. 2009-10-27T16:00:40Z 2009-10-27T16:00:40Z <p>From MSDN</p> <blockquote> <p>Even when used with the unsafe keyword, taking the address of a managed object, getting the size of a managed object, or declaring a pointer to a managed type is not allowed. For more information, see <a href="http://msdn.microsoft.com/en-us/library/t2yzs44b%28VS.80%29.aspx" rel="nofollow">Unsafe Code and Pointers (C# Programming Guide).</a></p> </blockquote> <p>Also I don't know if you are, but make sure you're using <a href="http://msdn.microsoft.com/en-us/library/f58wzh21%28VS.80%29.aspx" rel="nofollow">fixed keyword</a> in your code.</p> http://stackoverflow.com/questions/1625892/initialize-properties-at-the-load-event-or-in-the-constructor/1625915#1625915 0 Answer by Stan R. for Initialize properties at the load event or in the constructor? Stan R. 2009-10-26T16:54:26Z 2009-10-26T16:54:26Z <p>Constructor should be responsible for initialization, unless you have specific need or dependency to initialize your variable on Form Load, such as initializing it to something that is dependent on something else.</p> http://stackoverflow.com/questions/1625377/is-this-a-good-factory-method-implementation/1625441#1625441 1 Answer by Stan R. for Is this a good factory method implementation? Stan R. 2009-10-26T15:19:59Z 2009-10-26T15:19:59Z <p>Technically this is fine, however most times when I see a factory it usually returns the same type interface, for instance something like <code>IProvider</code> rather than <code>IFooProvider</code> or <code>IBarProvider</code> which to me doesn't make sense. If you are going to have FooProvider and BarProvider then why have different interfaces for them. I would use one interface <code>IProvider</code> and have <code>FooProvider</code> and <code>BarProvider</code> implement that.</p> http://stackoverflow.com/questions/1615762/interface-alternative-approach/1615794#1615794 0 Answer by Stan R. for Interface :- Alternative Approach Stan R. 2009-10-23T20:47:41Z 2009-10-23T20:52:53Z <p>you can use Action class to achieve this using delegates if you like </p> <pre><code>class Test { static void Main() { List&lt;Action&gt; word = new List&lt;Action&gt;(); word.Add(new GroupOne().ExpressWords()); word.Add(new GroupTwo().ExpressWords()); foreach (Action del in word) { del(); } Console.ReadKey(true); } } </code></pre> <p>if you want to use Delegates then you have to declare a Delegate type</p> <pre><code>delegate void SomeMethod(); class Test { static void Main() { List&lt;SomeMethod&gt; word = new List&lt;SomeMethod&gt;(); word.Add(new GroupOne().ExpressWords()); word.Add(new GroupTwo().ExpressWords()); foreach (SomeMethod del in word) { del(); } Console.ReadKey(true); } } </code></pre> http://stackoverflow.com/questions/1610051/complex-string-matching-with-linq-to-entity-framework/1610276#1610276 2 Answer by Stan R. for Complex string matching with LINQ to Entity Framework Stan R. 2009-10-22T22:09:21Z 2009-10-22T22:15:22Z <p>instead of using <strong>Equals</strong> try using <strong>Contains</strong> this should take your wild cards because internally LINQ uses <strong>LIKE</strong> when you use <strong>Contains</strong></p> <pre><code>var results = from a in mycontainer.users where a.fullname.Contains(newString) select a.fullname; </code></pre> http://stackoverflow.com/questions/1609701/empty-sequence-in-linq/1609733#1609733 3 Answer by Stan R. for Empty Sequence in LINQ Stan R. 2009-10-22T20:22:35Z 2009-10-22T20:22:35Z <p>You can use this when you want to quickly create an <code>IEnumerable&lt;T&gt;</code> this way you don't have to create a reference to a new <code>List&lt;T&gt;</code> and take advantage of the <strong>yield</strong> keyword. </p> <pre><code>List&lt;string[]&gt; namesList = new List&lt;string[]&gt; { names1, names2, names3 }; // Only include arrays that have four or more elements IEnumerable&lt;string&gt; allNames = namesList.Aggregate(Enumerable.Empty&lt;string&gt;(), (current, next) =&gt; next.Length &gt; 3 ? current.Union(next) : current); </code></pre> <p>Note the use of <strong>Union</strong> because it is not a <strong>List</strong> you can not call <strong>Add</strong> method, but you could call <strong>Union</strong> on an <code>IEnumerable</code></p> http://stackoverflow.com/questions/1608317/how-do-i-pass-the-query-or-results-of-a-linq-to-sql-query-to-the-next-method/1608344#1608344 0 Answer by Stan R. for How do I pass the query or results of a Linq to SQL query to the next method Stan R. 2009-10-22T16:16:12Z 2009-10-22T16:16:12Z <p>You cannot pass anonymous types into a new method, what you need to do is create a class to hold the information</p> http://stackoverflow.com/questions/1607983/how-can-i-use-a-foreach-loop-to-delete-all-of-the-control-in-a-panel/1608014#1608014 8 Answer by Stan R. for How can I use a foreach loop to delete all of the control in a panel? Stan R. 2009-10-22T15:26:14Z 2009-10-22T15:26:14Z <p>I believe you are changing the IEnumareble when you remove an item from it while iterating it.</p> <p>Try to use a simple for loop instead of a foreach.</p> http://stackoverflow.com/questions/1603599/array-of-string-with-unknown-size/1603604#1603604 6 Answer by Stan R. for array of string with unknown size Stan R. 2009-10-21T21:01:48Z 2009-10-21T21:13:24Z <p>Is there a specific reason why you need to use an array? If you don't know the size before hand you might want to use <code>List&lt;String&gt;</code></p> <pre><code>List&lt;String&gt; list = new List&lt;String&gt;(); list.Add("Hello"); list.Add("world"); list.Add("!"); Console.WriteLine(list[2]); </code></pre> <p>Will give you an output of </p> <pre><code>! </code></pre> <p><a href="http://msdn.microsoft.com/en-us/library/6sh2ey19.aspx" rel="nofollow">MSDN - List(T)</a> for more information</p> http://stackoverflow.com/questions/1602102/is-it-bad-to-use-nested-try-catch-blocks-like-this/1602121#1602121 5 Answer by Stan R. for Is it bad to use nested Try..Catch blocks like this? Stan R. 2009-10-21T16:51:25Z 2009-10-21T17:03:31Z <p>You should use SingleOrDefault, that way if a record doesn't exist it will return the default value for the class which is null.</p> <pre><code>MainsDataContext dx = null; try { dx = new MainsDataContext(); Main m = dx.Main.SingleOrDefault(s =&gt; s.Name == name); if ( m == null) { Guid g = Guid.NewGuid(); m = new Main { Name = name, ID = g }; dx.Mains.InsertOnSubmit(m); dx.SubmitChanges(); } return m.ID; } catch (Exception ex) { // handle this } finally { if(dx != null) dx.Dispose(); } </code></pre> <p>it is a good idea to use the <strong>using</strong> keyword when using a DataContext</p> <pre><code>using ( MainsDataContext dx = new MainsDataContext()) { Main m = dx.Main.SingleOrDefault(s =&gt; s.Name == name); if ( m == null) { Guid g = Guid.NewGuid(); m = new Main { Name = name, ID = g }; dx.Mains.InsertOnSubmit(m); dx.SubmitChanges(); } return m.ID; } </code></pre> http://stackoverflow.com/questions/1589638/possible-to-group-by-count-in-linq/1589689#1589689 0 Answer by Stan R. for Possible to group by Count in LINQ? Stan R. 2009-10-19T16:23:56Z 2009-10-19T16:23:56Z <p>you can do something like this...</p> <pre><code> List&lt;int&gt; integers = new List&lt;int&gt;() { 1, 2, 3, 4, 5, 6, 7, 8, 9 }; var p = integers.Select((x, index) =&gt; new { Num = index / 2, Val = x }) .GroupBy(y =&gt; y.Num); </code></pre> http://stackoverflow.com/questions/1579878/c-countdown-timer-using-numericupdown-as-interval/1585264#1585264 1 Answer by Stan R. for C# - Countdown Timer Using NumericUpDown as Interval Stan R. 2009-10-18T16:11:07Z 2009-10-18T16:11:07Z <p>Here is a quick example to what you are looking for. This should give you a basic idea on what you need to do</p> <pre><code> //class variable private int totNumOfSec; //set the event for the tick //and the interval each second timer1.Tick += new EventHandler(timer1_Tick); timer1.Interval = 1000; private void button1_Click(object sender, EventArgs e) { totNumOfSec = (int)this.numericUpDown1.Value; timer1.Start(); } void timer1_Tick(object sender, EventArgs e) { //check the timer tick totNumOfSec--; if (totNumOfSec == 0) { //do capture MessageBox.Show("Captured"); timer1.Stop(); } else label1.Text = "Caputring in " + totNumOfSec.ToString(); } </code></pre> http://stackoverflow.com/questions/1579085/how-the-transformation-is-possible/1579096#1579096 5 Answer by Stan R. for How the transformation is possible ? Stan R. 2009-10-16T16:37:37Z 2009-10-16T16:37:37Z <p>No. The string representations are just in the correct order that's all. There is no magic here.</p> <p>Look at the string array</p> <pre><code>strings[0] = "zero"; strings[1] = "one"; strings[2] = "two"; . . </code></pre> <p>the fact that its ordered correctly is why the mapping works.</p> http://stackoverflow.com/questions/1574260/maintaining-usercontrol-state-on-dynamically-added-usercontrols/1574277#1574277 1 Answer by Stan R. for Maintaining usercontrol state on dynamically added usercontrols Stan R. 2009-10-15T18:43:24Z 2009-10-15T18:43:24Z <p>Problem is you need to re-create the dynamic controls on each postback and recreate their viewstate. Take a look at this article <a href="http://aspnet.4guysfromrolla.com/articles/092904-1.aspx" rel="nofollow">Dynamic Web Controls, Postbacks, and View State</a> </p> http://stackoverflow.com/questions/1573505/how-to-get-a-custom-object-out-of-a-list-with-linq/1573515#1573515 6 Answer by Stan R. for How to get a custom object out of a List<> with LINQ? Stan R. 2009-10-15T16:26:31Z 2009-10-15T16:26:31Z <p><strong>Where</strong> returns an <em>IEnumerable</em> not a single result and using <strong>as</strong> doesn't throw an exception and just casts it to null, you need to use <strong>SingleOrDefault()</strong></p> <pre><code>return products.Where(p =&gt; p.ProductNumber == productNumber).SingleOrDefault(); </code></pre> http://stackoverflow.com/questions/1836109/is-this-a-proper-use-of-the-asynchronous-cababilities-of-the-socket-class Comment by Stan R. on Is this a proper use of the asynchronous cababilities of the Socket class? Stan R. 2009-12-02T22:09:59Z 2009-12-02T22:09:59Z You should single out issues which you think are of concern and formulate a generic question, that way we can answer it more generically and the answer maybe used over and over with whoever runs into a similar issue. http://stackoverflow.com/questions/1834524/c-wrapping-one-enum-inside-another-ie-mirroring-another-enum-copying-it/1834617#1834617 Comment by Stan R. on C#: Wrapping one Enum inside another (ie. mirroring another enum/copying it...) Stan R. 2009-12-02T17:59:16Z 2009-12-02T17:59:16Z this is more work than simply mapping out the Enum yourself...i don't necessarily think its worth it. http://stackoverflow.com/questions/1799767/easy-way-to-convert-a-dictionarystring-string-to-xml-and-visa-versa/1799792#1799792 Comment by Stan R. on Easy way to convert a Dictionary<string, string> to xml and visa versa Stan R. 2009-11-25T20:44:37Z 2009-11-25T20:44:37Z you can use ToDictionary... <i>rootElement.Elements().ToDictionary( key =&gt; key.Name, val =&gt; val.Value);</i> http://stackoverflow.com/questions/1799348/centering-a-string-against-another-string Comment by Stan R. on Centering a String against another string Stan R. 2009-11-25T19:22:38Z 2009-11-25T19:22:38Z what..the...? huh? http://stackoverflow.com/questions/1797667/c-switch-statement-refactoring/1797742#1797742 Comment by Stan R. on C# Switch Statement refactoring Stan R. 2009-11-25T16:04:22Z 2009-11-25T16:04:22Z @James 12AM = 0, 12PM = 12. This code checks for 12PM http://stackoverflow.com/questions/1792503/how-to-merge-2-or-more-lists-implementing-same-interface/1792552#1792552 Comment by Stan R. on How to merge 2 or more Lists implementing same interface Stan R. 2009-11-24T20:24:20Z 2009-11-24T20:24:20Z @Guffa, +1 thanks for this piece of code. I constantly forget the &quot;yield&quot; keyword, i think this is a great reminder of thinking outside the box. thanks. http://stackoverflow.com/questions/1792503/how-to-merge-2-or-more-lists-implementing-same-interface/1792549#1792549 Comment by Stan R. on How to merge 2 or more Lists implementing same interface Stan R. 2009-11-24T20:23:42Z 2009-11-24T20:23:42Z yes this is &quot;a solution&quot;, but I don't see how its better than the original questions code. http://stackoverflow.com/questions/1792503/how-to-merge-2-or-more-lists-implementing-same-interface/1792552#1792552 Comment by Stan R. on How to merge 2 or more Lists implementing same interface Stan R. 2009-11-24T20:23:04Z 2009-11-24T20:23:04Z @Michael D., you can use this code with .ToList() to create a copy to a list GetAllRecords.ToList() http://stackoverflow.com/questions/1791153/difference-between-arrays-single-dimensional-arrays-in-c/1791209#1791209 Comment by Stan R. on Difference between Arrays & Single-Dimensional Arrays in c# Stan R. 2009-11-24T16:31:00Z 2009-11-24T16:31:00Z :D ........hahahaa http://stackoverflow.com/questions/1790779/compare-two-list-in-linq Comment by Stan R. on compare two list in linq Stan R. 2009-11-24T16:13:01Z 2009-11-24T16:13:01Z you would've gotten an answer within minutes if you were just a little bit more descriptive. Help us help you ! http://stackoverflow.com/questions/1753021/how-can-i-communicate-with-my-cousin-when-she-can-only-move-her-eyes Comment by Stan R. on How can I communicate with my cousin when she can only move her eyes? Stan R. 2009-11-18T03:49:41Z 2009-11-18T03:49:41Z condolences..and good luck. http://stackoverflow.com/questions/1689957/using-c-api-in-c/1689985#1689985 Comment by Stan R. on Using C++ API in C# Stan R. 2009-11-06T19:59:11Z 2009-11-06T19:59:11Z +1 this is exactly what i've done in the past. it made my life that much easier, especially since managed C++ is not that difficult. http://stackoverflow.com/questions/1686023/the-ultimate-fffffuuuuuuuuu-programming-moment/1689092#1689092 Comment by Stan R. on The ultimate "FFFFFUUUUUUUUU" programming moment ? Stan R. 2009-11-06T18:04:26Z 2009-11-06T18:04:26Z hilarious... :-D http://stackoverflow.com/questions/1669456/windows-file-security-removing-an-access-rule Comment by Stan R. on Windows File security, removing an access rule Stan R. 2009-11-03T19:07:23Z 2009-11-03T19:07:23Z is there a parent folder that is enforcing the rule you are trying to remove? http://stackoverflow.com/questions/1657607/winform-not-rendering-control-alterations Comment by Stan R. on Winform not rendering control alterations Stan R. 2009-11-01T16:55:56Z 2009-11-01T16:55:56Z make sure your changes are being updated in the *.designer.cs file, without any code we can't really help you.