User Noffie - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T14:09:35Z http://stackoverflow.com/feeds/user/18524 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/858001/get-data-being-bound-to-listview-on-databound-event/1272699#1272699 1 Answer by Noffie for Get data being bound to ListView on DataBound event Noffie 2009-08-13T15:25:52Z 2009-11-19T22:39:42Z <h1>C# Solution</h1> <pre><code>protected void listView_ItemDataBound(object sender, ListViewItemEventArgs e) { if (e.Item.ItemType == ListViewItemType.DataItem) { ListViewDataItem dataItem = (ListViewDataItem)e.Item; // you would use your actual data item type here, not "object" object o = (object)dataItem.DataItem; } } </code></pre> <p>Why they made this so different for ListView still sort of puzzles me. There must be a reason though.</p> http://stackoverflow.com/questions/779405/how-do-i-restart-my-c-winform-application 1 How do I restart my C# WinForm Application? Noffie 2009-04-22T21:52:20Z 2009-09-09T20:11:09Z <p>Developing a C# .NET 2.0 WinForm Application. Need the application to close and restart itself.</p> <pre><code>Application.Restart(); </code></pre> <p>The above method has <a href="http://stackoverflow.com/questions/95098/why-is-application-restart-not-reliable">proven to be unreliable</a>.</p> <p>What is a better way to restart the application?</p> http://stackoverflow.com/questions/722805/how-do-i-work-with-dial-up-ras-connections-in-windows-using-c-net 1 How do I work with dial-up (RAS) connections in Windows using C#/.NET? Noffie 2009-04-06T19:28:46Z 2009-07-26T00:17:45Z <p>I need to be able to connect, disconnect, and re-connect a dial-up networking connection in a C# .NET Framework application. Creating the connection in the phone-book might also be useful/necessary.</p> <p>Are there any classes or libraries written for C# or .NET out there that wrap all this functionality nicely for me? Anyone have some code they would be willing to share?</p> <p><strong>Note</strong>: Application is <em>unattended</em>, like a Kiosk, and thus requiring user action is unacceptable.</p> http://stackoverflow.com/questions/779405/how-do-i-restart-my-c-winform-application/779411#779411 1 Answer by Noffie for How do I restart my C# WinForm Application? Noffie 2009-04-22T21:54:06Z 2009-04-30T13:51:15Z <h2>Start/Exit Method</h2> <pre><code>// Get the parameters/arguments passed to program if any string arguments = string.Empty; string[] args = Environment.GetCommandLineArgs(); for (int i = 1; i &lt; args.Length; i++) // args[0] is always exe path/filename arguments += args[i] + " "; // Restart current application, with same arguments/parameters Application.Exit(); System.Diagnostics.Process.Start(Application.ExecutablePath, arguments); </code></pre> <p>This seems to work better than Application.Restart(); </p> <p>Not sure how this handles if your program protects against multiple instance. My guess is you would be better off launching a second .exe which pauses and then starts your main application for you.</p> http://stackoverflow.com/questions/95098/why-is-application-restart-not-reliable/779152#779152 0 Answer by Noffie for Why is Application.Restart() not reliable? Noffie 2009-04-22T20:46:00Z 2009-04-23T16:51:31Z <h2>Start/Exit Method</h2> <pre><code>// Get the parameters/arguments passed to program if any string arguments = string.Empty; string[] args = Environment.GetCommandLineArgs(); for (int i = 1; i &lt; args.Length; i++) // args[0] is always exe path/filename arguments += args[i] + " "; // Restart current application, with same arguments/parameters Application.Exit(); System.Diagnostics.Process.Start(Application.ExecutablePath, arguments); </code></pre> <p>This seems to work better than Application.Restart(); </p> <p>Not sure how this handles if your program protects against multiple instance. Perhaps this change to the second part would handle that case?:</p> <pre><code>Application.Exit(); System.Threading.Thread.Sleep(5000); System.Diagnostics.Process.Start(Application.ExecutablePath, arguments); </code></pre> <p>My guess is you would be better off launching a second .exe which pauses and then starts your main application for you.</p> http://stackoverflow.com/questions/773768/activex-flash-component-in-c-net-2-0-application-causes-memory-leak 1 ActiveX Flash component in C# .NET 2.0 Application causes memory leak? Noffie 2009-04-21T17:47:12Z 2009-04-22T20:58:24Z <p>We have a C#/.NET 2.0 WinForm with an ActiveX ShockwaveFlashObject control on it. The program loops through a schedule of content and displays it over and over on the control, fullscreen, like this:</p> <pre><code>axFlash.BringToFront(); axFlash.Movie = scheduleItem.FilePath; axFlash.Show(); axFlash.Play(); </code></pre> <p>This works great, but after a couple of days running, the form on which the Flash ActiveX control resides will throw an exception like this:</p> <pre><code>System.Runtime.InteropServices.SEHException: External component has thrown an exception. at System.Windows.Forms.UnsafeNativeMethods.CallWindowProc(IntPtr wndProc, IntPtr hWnd, Int32 msg, IntPtr wParam, IntPtr lParam) at System.Windows.Forms.NativeWindow.DefWndProc(Message&amp; m) at System.Windows.Forms.Control.DefWndProc(Message&amp; m) at System.Windows.Forms.Control.WndProc(Message&amp; m) at System.Windows.Forms.AxHost.WndProc(Message&amp; m) at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message&amp; m) at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message&amp; m) at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam) </code></pre> <p>Looking at the taskmanager, I see that our program has allocated virtually all of the available memory on the machine. (~500MB)</p> <ul> <li>Are ActiveX (COM) components unmanaged by Garbage Collection?</li> <li>Is there some known memory leak in Flash9.ocx or Flash10.ocx?</li> <li>Any ideas how I can get an external component (Flash ActiveX in this case) to release resources back without restarting the program? Could periodically re-creating the ShockwaveFlashObject with a "new" fix things?</li> <li>Maybe restarting the program periodically is the only good option?</li> </ul> http://stackoverflow.com/questions/106509/disable-button-on-form-submission/612630#612630 3 Answer by Noffie for Disable button on form submission Noffie 2009-03-04T21:54:06Z 2009-03-04T21:54:06Z <p>I'm not a huge fan of writing all that javascript in the code-behind. Here is what my final solution looks like.</p> <p>Button:</p> <pre><code>&lt;asp:Button ID="btnSubmit" runat="server" Text="Submit" OnClick="btnSubmit_Click" OnClientClick="doSubmit(this)" /&gt; </code></pre> <p>Javascript:</p> <pre><code>&lt;script type="text/javascript"&gt;&lt;!-- function doSubmit(btnSubmit) { if (typeof(Page_ClientValidate) == 'function' &amp;&amp; Page_ClientValidate() == false) { return false; } btnSubmit.disabled = 'disabled'; btnSubmit.value = 'Processing. This may take several minutes...'; &lt;%= ClientScript.GetPostBackEventReference(btnSubmit, string.Empty) %&gt;; } //--&gt; &lt;/script&gt; </code></pre> http://stackoverflow.com/questions/204733/how-do-you-add-arguments-to-an-asp-button-postbackurl/204917#204917 3 Answer by Noffie for How do you add arguments to an ASP button PostBackUrl? Noffie 2008-10-15T14:26:22Z 2008-10-15T14:26:22Z <p>If you have the PostBackUrl set on your button, then the search box field on your first page, and any other form fields on that page, are already being posted to your search page. The trick is getting access to them in the code-behind for your search.aspx page.</p> <pre><code>if (Page.PreviousPage != null) { TextBox SourceTextBox = (TextBox)Page.PreviousPage.FindControl("TextBox1"); if (SourceTextBox != null) { Label1.Text = SourceTextBox.Text; } } </code></pre> <p>That is one way. There are some shortcuts too, such as using the PreviousPageType directive at the top of your search.aspx page:</p> <pre><code>&lt;%@ PreviousPageType VirtualPath="~/SourcePage.aspx" %&gt; </code></pre> <p>More details on how to use that, as well as the first method, can be found here:</p> <p><a href="http://msdn.microsoft.com/en-us/library/ms178139.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms178139.aspx</a></p> http://stackoverflow.com/questions/190030/should-i-create-a-business-for-the-side-work-consultancy-work-i-am-getting 4 Should I create a business for the side work / consultancy work I am getting? Noffie 2008-10-10T03:34:17Z 2008-10-10T08:53:56Z <p>I'm getting some rather serious consulting work on the side of my main job. Serious in that I'm filling out NDAs and service agreements for the small-ish company I'm being contracted by. The guy I'm getting the work from wanted to know if I had a business to associate the work/payments/contract with, and when I said no he somewhat recommended it - but with no real reason.</p> <p>So, should I start a business for my consultancy work? What are the advantages/disadvantages of that? Corporation, LLC, what? How much paperwork, time, and money is it to start a business? (I'm in the USA)</p> http://stackoverflow.com/questions/779405/how-do-i-restart-my-c-winform-application/1397391#1397391 Comment by Noffie on How do I restart my C# WinForm Application? Noffie 2009-09-29T19:30:23Z 2009-09-29T19:30:23Z I agree with HiredMind, and I actually went with the same &quot;Watchdog program&quot; implementation myself shortly after writing the answer. Sorry, should have come back here and updated. I wouldn't think it should feel <i>too</i> horribly ugly/yucky/dirty. The Watchdog program pattern is pretty widely used. http://stackoverflow.com/questions/722805/how-do-i-work-with-dial-up-ras-connections-in-windows-using-c-net/1183165#1183165 Comment by Noffie on How do I work with dial-up (RAS) connections in Windows using C#/.NET? Noffie 2009-08-11T17:15:19Z 2009-08-11T17:15:19Z LOL @ Connect() method body: // TODO http://stackoverflow.com/questions/873403/net-impl-of-bcrypt/873414#873414 Comment by Noffie on .net impl of bcrypt Noffie 2009-06-13T16:02:22Z 2009-06-13T16:02:22Z Roger that. That article is the same reason I gooogled bcrypt for .NET and came to this question on stackoverflow. Specifically, from the article, you shouldn't use SHA256 or SHA512 because those are both optimized for SPEED, and a password generating hash should be SLOW, or TAKE A LONG TIME. http://stackoverflow.com/questions/338050/subsonic-version-fails-due-to-missing-dependencies/341820#341820 Comment by Noffie on SubSonic "Version" fails due to missing dependencies Noffie 2009-05-15T17:37:40Z 2009-05-15T17:37:40Z I wonder, if you recompile with SqlServer 2008 version of Management.Smo dlls, will your program (for instance, SubSonic) still work with SQL Server 2005? http://stackoverflow.com/questions/779405/how-do-i-restart-my-c-winform-application Comment by Noffie on How do I restart my C# WinForm Application? Noffie 2009-04-30T17:23:58Z 2009-04-30T17:23:58Z Our particular circumstance - a media player application which is supposed to run through some images and flash content in a loop. Should run for days and days without a machine restart, and there is no keyboard/mouse so no user interaction. If the program crashes (unhandled exception), need to restart the program, not exit out or display an error. <a href="http://stackoverflow.com/questions/773768/activex-flash-component-in-c-net-2-0-application-causes-memory-leak" rel="nofollow" title="activex flash component in c net 2 0 application causes memory leak">stackoverflow.com/questions/773768/&hellip;</a> See that for why the program keeps having exceptions I can't prevent. :( http://stackoverflow.com/questions/779405/how-do-i-restart-my-c-winform-application/779411#779411 Comment by Noffie on How do I restart my C# WinForm Application? Noffie 2009-04-27T21:07:08Z 2009-04-27T21:07:08Z Yah, I have a feeling calling Application.Exit() only causes some message to be added to a queue somewhere that needs to be pumped, so the second bit of code here in my answer probably would indeed not work. http://stackoverflow.com/questions/779405/how-do-i-restart-my-c-winform-application/779411#779411 Comment by Noffie on How do I restart my C# WinForm Application? Noffie 2009-04-23T15:23:39Z 2009-04-23T15:23:39Z @majkinetor - Noted in updated answer to question. http://stackoverflow.com/questions/779405/how-do-i-restart-my-c-winform-application/780330#780330 Comment by Noffie on How do I restart my C# WinForm Application? Noffie 2009-04-23T15:13:03Z 2009-04-23T15:13:03Z I updated my answer to address this issue. http://stackoverflow.com/questions/773768/activex-flash-component-in-c-net-2-0-application-causes-memory-leak/773829#773829 Comment by Noffie on ActiveX Flash component in C# .NET 2.0 Application causes memory leak? Noffie 2009-04-22T18:07:10Z 2009-04-22T18:07:10Z Well, the application itself shouldn't be leaking, it is Garbage Collected. So that leaves the only ActiveX (unmanaged probably) code in the application, the Flash component, as the only culprit. This makes sense too, since the Flash is what was obviously causing the biggest problem when this was a Delphi/Win32 program - you would actually see the Flash stop loading shortly before &quot;the end.&quot; http://stackoverflow.com/questions/773768/activex-flash-component-in-c-net-2-0-application-causes-memory-leak/773792#773792 Comment by Noffie on ActiveX Flash component in C# .NET 2.0 Application causes memory leak? Noffie 2009-04-22T18:03:20Z 2009-04-22T18:03:20Z Hmm... some stuff might be difficult to port to AIR. Besides this, changing the platform/language AGAIN (this was originally written in Delphi/Win32) might increase the number of problems, not necessarily reduce it. And who is to say AIR isn't going to have all the same problems that Flash's OCX will - I mean, they are both by Macromedia/Adobe. http://stackoverflow.com/questions/773768/activex-flash-component-in-c-net-2-0-application-causes-memory-leak/773835#773835 Comment by Noffie on ActiveX Flash component in C# .NET 2.0 Application causes memory leak? Noffie 2009-04-22T18:01:12Z 2009-04-22T18:01:12Z The problem there is that the program will never be DONE using it. It is a constantly running Media Player for Digital Signage. Perhaps you mean to imply that calling .Dispose() on it occasionally and then re-creating the instance with &quot;new ShockwaveFlashObject()&quot; would be useful? http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/406965#406965 Comment by Noffie on What's your most controversial programming opinion? Noffie 2009-04-09T18:04:51Z 2009-04-09T18:04:51Z &quot;Code or Code&quot;? Did you mean &quot;Schema or Code&quot; perhaps? http://stackoverflow.com/questions/722805/how-do-i-work-with-dial-up-ras-connections-in-windows-using-c-net/722891#722891 Comment by Noffie on How do I work with dial-up (RAS) connections in Windows using C#/.NET? Noffie 2009-04-08T20:14:48Z 2009-04-08T20:14:48Z Hmm... I think the problem with using WinInet is that it uses the Internet Connection settings stuff, and thus will cause a dialog box to pop up prompting for phone #, username/password, etc. http://stackoverflow.com/questions/106509/disable-button-on-form-submission/106958#106958 Comment by Noffie on Disable button on form submission Noffie 2009-03-04T21:55:16Z 2009-03-04T21:55:16Z Seems to take Validation into account to me Brownie.