User Ray Jezek - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T15:56:51Z http://stackoverflow.com/feeds/user/28309 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/212762/whats-the-best-way-to-square-an-image-in-net/212806#212806 0 Answer by Ray Jezek for What's the best way to "square" an image in .NET? Ray Jezek 2008-10-17T16:12:42Z 2008-10-19T04:10:39Z <p>** removed **</p> http://stackoverflow.com/questions/212254/how-can-i-troubleshoot-rendering-performance-issues-in-ie/212387#212387 2 Answer by Ray Jezek for How can I troubleshoot Rendering Performance issues in IE Ray Jezek 2008-10-17T14:31:14Z 2008-10-17T14:31:14Z <p>If it runs fast in FF or Chrome then it's a javascript issue for sure. IE7 is VERY slow in processing large amounts of script and complicated HTML. We had a sharepoint page that took 10 seconds to render in IE and sub 1 second in FF and Chrome. We benchmarked the page by adding a timer to the server-side processing and sending the output to the client via a Response.Write(). By doing this we could determine the server time to process the page and the client time to render the page (since you would see the timer results on the screen and then wait 10 seconds for the rest to render). The bottleneck was 100% IE on the client. This also explained why the speed was variable on different peoples machines, because depending on how fast the client machine was the page would render at some speed between 8-15 seconds. </p> <p>We even had MS look at the issue and they confirmed that IE has a "rich rendering" engine which is slower.... IE8 runs much faster but that is no help to anyone today.</p> http://stackoverflow.com/questions/212173/silverlight-2-development-using-just-visual-studio/212203#212203 5 Answer by Ray Jezek for Silverlight 2 development using just Visual Studio? Ray Jezek 2008-10-17T13:50:51Z 2008-10-17T13:50:51Z <p>You can do everything in Visual Studio. But then again you can do everything in Notepad as well... it all depends on how much the given tool will help you along in the process. Having Blend will be a great asset from a design point of view but wont really do much for you in terms of programming the application. Download the trial and see how it works... if it adds value and saves time then it's well worth the purchase.</p> http://stackoverflow.com/questions/210428/are-immutable-arrays-possible-in-net/210444#210444 12 Answer by Ray Jezek for Are immutable arrays possible in .NET? Ray Jezek 2008-10-16T21:53:32Z 2008-10-16T21:53:32Z <p>ReadOnlyCollection is probably what you are looking for. It doesnt have an Add() method.</p> <p><a href="http://msdn.microsoft.com/en-us/library/ms132474.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms132474.aspx</a></p> http://stackoverflow.com/questions/206323/how-to-execute-command-line-in-c-get-std-out-results/206347#206347 16 Answer by Ray Jezek for How To: Execute command line in C#, get STD OUT results Ray Jezek 2008-10-15T20:36:05Z 2008-10-15T20:36:05Z <pre><code>// Start the child process. Process p = new Process(); // Redirect the output stream of the child process. p.StartInfo.UseShellExecute = false; p.StartInfo.RedirectStandardOutput = true; p.StartInfo.FileName = "YOURBATCHFILE.bat"; p.Start(); // Do not wait for the child process to exit before // reading to the end of its redirected stream. // p.WaitForExit(); // Read the output stream first and then wait. string output = p.StandardOutput.ReadToEnd(); p.WaitForExit(); </code></pre> http://stackoverflow.com/questions/205958/how-do-i-move-files-from-one-machine-to-another-using-asp-net/205979#205979 2 Answer by Ray Jezek for How do I move files from one machine to another using ASP.NET? Ray Jezek 2008-10-15T19:00:11Z 2008-10-15T19:06:20Z <p>I have done this cross domain before. All you need is for the username and password to be the same and this will work, even if they are in different domains. The thing to make sure of is that your .NET application is running as this user. </p> <p>For instance:</p> <ul> <li>In domain XYZ have a user "filesynch" with a password "pass"</li> <li>In domain PDQ have a user "filesynch" with a password "pass"</li> <li>Make sure user PDQ\filesynch has access to share on machine in PDQ domain</li> <li>Run application on a machine in the XYZ domain as the XYZ\filesynch user</li> <li>Copy files over network</li> </ul> http://stackoverflow.com/questions/205794/how-to-move-scroll-bar-up-by-one-line-in-c-richtextbox/205832#205832 0 Answer by Ray Jezek for How to move scroll bar up by one line? (In C# RichTextBox) Ray Jezek 2008-10-15T18:17:01Z 2008-10-15T18:17:01Z <p>window.scrollBy(0,20); </p> <p>This will scroll the window. 20 is an approximate value I have used in the past that typically equals one line... but of course font size may impact how far one line really is.</p> http://stackoverflow.com/questions/205744/what-appear-to-be-the-more-lucrative-programming-skills-at-the-moment/205784#205784 2 Answer by Ray Jezek for What appear to be the more lucrative programming skills at the moment? Ray Jezek 2008-10-15T18:05:31Z 2008-10-15T18:05:31Z <p>I'd say anything that has to do with understanding and implementing automated RISK controls within financial institutions will be very lucrative.</p> http://stackoverflow.com/questions/205689/class-with-single-method-best-approach/205703#205703 4 Answer by Ray Jezek for Class with single method -- best approach? Ray Jezek 2008-10-15T17:46:11Z 2008-10-15T17:46:11Z <p>If there is no reason to have an instance of the class created in order to execute the function then use the static implementation. Why make the consumers of this class create an instance when one is not needed.</p> http://stackoverflow.com/questions/158256/what-is-the-best-free-ajax-net-system-web-extensions-3-5-compatible-rich-text/158293#158293 Comment by Ray Jezek on What is the best free, Ajax.NET (System.Web.Extensions 3.5) compatible Rich Text Box control? Ray Jezek 2008-10-17T19:58:43Z 2008-10-17T19:58:43Z The latest version of the FCKEditor works perfectly in an update panel. I just switched from the crappy RicherComponents RTB which did not work (same as the OP's situation).