User Bryan Roth - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T13:11:58Z http://stackoverflow.com/feeds/user/299 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/28377/iif-vs-if 4 IIf() vs. If Bryan Roth 2008-08-26T15:29:45Z 2009-12-21T14:28:56Z <p>In Visual Basic, is there a performance difference when using the <strong>IIf</strong> function instead of the <strong>If</strong> statement?</p> http://stackoverflow.com/questions/11311/formatting-text-in-winform-label 5 Formatting text in WinForm Label Bryan Roth 2008-08-14T16:43:03Z 2009-10-21T16:58:53Z <p>Is it possible to format certain text in a WinForm Label instead of breaking the text into multiple labels? Please disregard the HTML tags within the label's text; it's only used to get my point out.</p> <p>For example:</p> <pre><code>Dim myLabel As New Label myLabel.Text = "This is &lt;b&gt;bold&lt;/b&gt; text. This is &lt;i&gt;italicized&lt;/i&gt; text." </code></pre> <p>Which would produce the text in the label as:</p> <blockquote> <p>This is <strong>bold</strong> text. This is <em>italicized</em> text.</p> </blockquote> http://stackoverflow.com/questions/1106038/how-can-i-turn-these-linq-joins-into-left-outer-joins/1106283#1106283 1 Answer by Bryan Roth for How can I turn these LINQ joins into LEFT OUTER joins? Bryan Roth 2009-07-09T20:31:47Z 2009-07-09T20:38:44Z <p>Below is some code that can get you started.</p> <pre><code>var auditAgencyRecords = ( from ag in db.Agencies group join ara in db.AuditRuleAccounts on ag.Agency_Id equals ara.AgencyID into AgAra = group from w in AgAra.DefaultIfEmpty() group join arr in db.AuditRuleResults on ara.AuditRuleAccountID equals arr.AuditRuleAccountID into AraArr = group from x in AraArr.DefaultIfEmpty() group join are in db.AuditRuleEnterprises on arr.AuditRuleEnterpriseID equals are.AuditRuleEnterpriseID into ArrAre = group from y in ArrAre.DefaultIfEmpty() where (rules.Select(r =&gt; r.EnterpriseID).Contains(arr.AuditRuleEnterpriseID)) select new { AgencyID = w.Agency_Id, AgencyName = w.Agency_Name, AuditRuleEnterpriseID = y.AuditRuleEnterpriseID, AuditRuleEnterpriseName = y.OverrideDisplayName, CorrectedDate = w.CorrectedDate, NbrDaysToCorrect = w.NbrDaysToCorrect, }); </code></pre> http://stackoverflow.com/questions/267488/linq-to-sql-multiple-left-outer-joins 5 Linq to Sql: Multiple left outer joins Bryan Roth 2008-11-06T02:34:00Z 2009-03-27T12:50:53Z <p>I'm having some trouble figuring out how to use more than one left outer join using LINQ to SQL. I understand how to use one left outer join. I'm using VB.NET. Below is my SQL syntax.</p> <p><strong>T-SQL</strong></p> <pre><code>SELECT o.OrderNumber, v.VendorName, s.StatusName FROM Orders o LEFT OUTER JOIN Vendors v ON v.Id = o.VendorId LEFT OUTER JOIN Status s ON s.Id = o.StatusId WHERE o.OrderNumber &gt;= 100000 AND o.OrderNumber &lt;= 200000 </code></pre> http://stackoverflow.com/questions/429877/winforms-reportviewer-slow-initial-rendering 0 WinForms ReportViewer: slow initial rendering Bryan Roth 2009-01-09T21:49:05Z 2009-03-17T15:26:19Z <p><strong>UPDATE 3.16.2009</strong></p> <p>I have done profiling and it's not the SQL that is making the ReportViewer render slowly on the first call. On the first call, the ReportViewer control locks up the UI thread and makes the program unresponsive. After about 5 seconds the ReportViewer will unlock the UI thread and display "Report is being generated" and then finally show the report. I know 5 seconds is not much but this shouldn't be happening. My coworker does the same thing in a program of his and the ReportViewer immediately displays the "Report is being generated" upon any request.</p> <p>The only difference is that the reporting server is on one server and the data is on another server. However, when I am developing the reports within SSRS, there is no delay.</p> <p><hr></p> <p><strong>UPDATE</strong></p> <p>I have noticed that only the first load of the ReportViewer takes a long time; each subsequent load of the same or different reports loads fast.</p> <p><hr></p> <p>I have a <strong>WinForms</strong> ReportViewer that I'm using in <strong>Remote</strong> processing mode that can take up to 30 seconds to render when the ReportViewer.RefreshReport() method is called. However, the report itself runs fast.</p> <p>This is the code to setup my ReportViewer:</p> <pre><code>rvReport.ProcessingMode = ProcessingMode.Remote rvReport.ShowParameterPrompts = False rvReport.ServerReport.ReportServerUrl = New Uri(_reportServerURL) rvReport.ServerReport.ReportPath = _reportPath </code></pre> <p>This is where the ReportViewer can take up to 30 seconds to render:</p> <pre><code>rvReport.RefreshReport() </code></pre> http://stackoverflow.com/questions/59479/optimize-windows-form-load-time 2 Optimize Windows Form Load Time Bryan Roth 2008-09-12T16:44:29Z 2009-03-14T15:31:39Z <p>I have a Windows Form that takes quite a bit of time to load initially. However, each subsequent request to load the Form doesn't take as long. Is there a way to optimize a Form's load time?</p> http://stackoverflow.com/questions/128277/linq-custom-column-names 4 LINQ: custom column names Bryan Roth 2008-09-24T16:41:39Z 2009-01-28T01:09:53Z <p><strong>UPDATE</strong></p> <p>I'm basically binding the query to a WinForms DataGridView. I want the column headers to be appropriate and have spaces when needed. For example, I would want a column header to be <strong>First Name</strong> instead of <strong>FirstName</strong>.</p> <p><hr></p> <p>How do you create your own custom column names in LINQ? </p> <p>For example:</p> <pre><code>Dim query = From u In db.Users _ Select u.FirstName AS 'First Name' </code></pre> http://stackoverflow.com/questions/128277/linq-custom-column-names/443471#443471 0 Answer by Bryan Roth for LINQ: custom column names Bryan Roth 2009-01-14T15:55:53Z 2009-01-14T15:55:53Z <p>I solved my own problem but all of your answers were very helpful and pointed me in the right direction.</p> <p>In my LINQ query, if a column name had more than one word I would separate the words with an underscore:</p> <pre><code>Dim query = From u In Users _ Select First_Name = u.FirstName </code></pre> <p>Then, within the <strong>Paint</strong> method of the DataGridView, I replaced all underscores within the header with a space:</p> <pre><code>Private Sub DataGridView1_Paint(ByVal sender As Object, ByVal e As System.Windows.Forms.PaintEventArgs) Handles DataGridView1.Paint For Each c As DataGridViewColumn In DataGridView1.Columns c.HeaderText = c.HeaderText.Replace("_", " ") Next End Sub </code></pre> http://stackoverflow.com/questions/429877/winforms-reportviewer-slow-initial-rendering/443380#443380 0 Answer by Bryan Roth for WinForms ReportViewer: slow initial rendering Bryan Roth 2009-01-14T15:34:17Z 2009-01-14T15:34:17Z <p><strong>UPDATE</strong></p> <p>I have noticed that only the first load of the ReportViewer takes a long time; each subsequent load of the same or different reports loads fast.</p> http://stackoverflow.com/questions/429076/marquee-progressbar-unresponsive-with-backgroundworker 2 Marquee ProgressBar unresponsive with BackgroundWorker Bryan Roth 2009-01-09T18:05:51Z 2009-01-09T20:04:51Z <p>In my code, when a button is clicked the progress bar is set to marquee and then my BackgroundWorker is called but when the BackgroundWorker is called the progress bar freezes or disappears. I use the BackgroundWorker to seperate the RefreshReport method of the ReportViewer from the UI thread. Any help is appreciated. Thanks!</p> <pre><code> Private Sub btnOtherReport_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnOtherReport.Click rvReport.ProcessingMode = ProcessingMode.Remote rvReport.ShowParameterPrompts = False rvReport.ServerReport.ReportServerUrl = New Uri("REPORT_SERVER_URL") rvReport.ServerReport.ReportPath = "REPORT_PATH" rvReport.BackColor = Color.White BackgroundWorker1.RunWorkerAsync() End Sub Private Sub BackgroundWorker1_DoWork(ByVal sender As Object, ByVal e As System.ComponentModel.DoWorkEventArgs) Handles BackgroundWorker1.DoWork RefreshReport() End Sub Private Sub BackgroundWorker1_RunWorkerCompleted(ByVal sender As Object, ByVal e As System.ComponentModel.RunWorkerCompletedEventArgs) Handles BackgroundWorker1.RunWorkerCompleted pbReports.Style = ProgressBarStyle.Blocks pbReports.Value = 100 End Sub Public Sub RefreshReport() rvReport.BeginInvoke(New MethodInvoker(AddressOf rvReport.RefreshReport)) End Sub </code></pre> http://stackoverflow.com/questions/425226/progressbar-freezes-when-using-multithreading 0 ProgressBar freezes when using multithreading Bryan Roth 2009-01-08T17:53:54Z 2009-01-08T18:17:41Z <p>Hi,</p> <p>I have a ProgressBar that uses the marquee style when a report is being generated. The reason I am doing this is because the ReportViewer control I use takes some time to generate the report thus making the form unresponsive. I generate the report using a thread so the ProgressBar can show that the program is working. However, when I start the thread the ProgressBar freezes. I have already tried the BackgroundWorker but that didn't work so I used my own threading.</p> <p>The reason I use the Invoke() method is because I can't make changes to the ReportViewer control on the thread I created because it was created on the UI thread.</p> <p>The method that takes the most time processing is the RefreshReport() method of the ReportViewer control which is why I'm trying to do that on its own thread instead of the UI thread.</p> <p>Any help would be appreciated. Thanks.</p> <p>Here is the code for my thread variable:</p> <pre><code>Private t As New Thread(New ParameterizedThreadStart(AddressOf GenerateReport)) </code></pre> <p>Here is the code for the button that generates the report:</p> <pre><code>Private Sub btnGenerateReport_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnGenerateReport.Click pbReports.Style = ProgressBarStyle.Marquee If t.ThreadState = ThreadState.Unstarted Then t.IsBackground = True t.Start(ReportType.Roads) ElseIf t.ThreadState = ThreadState.Stopped Then t = Nothing t = New Thread(New ParameterizedThreadStart(AddressOf GenerateReport)) t.IsBackground = True t.Start(ReportType.Roads) End If End Sub </code></pre> <p>Here is the code that generates the report:</p> <pre><code>Public Sub GenerateReport(ByVal rt As ReportType) If rvReport.InvokeRequired Then Dim d As New GenerateReportCallBack(AddressOf GenerateReport) Me.Invoke(d, New Object() {rt}) Else rvReport.ProcessingMode = ProcessingMode.Remote rvReport.ShowParameterPrompts = False rvReport.ServerReport.ReportServerUrl = New Uri("My_Report_Server_URL") rvReport.ServerReport.ReportPath = "My_Report_Path" rvReport.BackColor = Color.White rvReport.RefreshReport() End If If pbReports.InvokeRequired Then Dim d As New StopProgressBarCallBack(AddressOf StopProgressBar) Me.Invoke(d) Else StopProgressBar() End If End Sub </code></pre> http://stackoverflow.com/questions/267488/linq-to-sql-multiple-left-outer-joins/268991#268991 3 Answer by Bryan Roth for Linq to Sql: Multiple left outer joins Bryan Roth 2008-11-06T15:01:05Z 2008-11-06T15:01:05Z <p>I figured out how to use multiple left outer joins in VB.NET using LINQ to SQL:</p> <pre><code>Dim db As New ContractDataContext() Dim query = From o In db.Orders _ Group Join v In db.Vendors On v.VendorNumber Equals o.VendorNumber Into ov = Group _ From x In ov.DefaultIfEmpty() _ Group Join s In db.Status On s.Id Equals o.StatusId Into os = Group _ From y In os.DefaultIfEmpty() _ Where o.OrderNumber &gt;= 100000 And o.OrderNumber &lt;= 200000 _ Select Vendor_Name = x.Name, _ Order_Number = o.OrderNumber, _ Status_Name = y.StatusName </code></pre> http://stackoverflow.com/questions/59942/what-is-the-purpose-of-a-data-access-layer 3 What is the purpose of a Data Access Layer? Bryan Roth 2008-09-12T20:59:42Z 2008-10-24T15:52:25Z <p>I started a project a long time ago and created a <strong>Data Access Layer</strong> project in my solution but have never developed anything in it. What is the purpose of a data access layer? Are there any good sources that I could learn more about the Data Access Layer?</p> http://stackoverflow.com/questions/63291/sql-select-columns-with-null-values-only 2 SQL: Select columns with NULL values only Bryan Roth 2008-09-15T14:16:41Z 2008-10-08T22:16:45Z <p>How do I select all the columns in a table that only contain NULL values for all the rows? I'm using <strong>MS SQL Server 2005</strong>. I'm trying to find out which columns are not used in the table so I can delete them.</p> http://stackoverflow.com/questions/128277/linq-custom-column-names/128740#128740 0 Answer by Bryan Roth for LINQ: custom column names Bryan Roth 2008-09-24T17:59:27Z 2008-09-24T17:59:27Z <p>Sorry for not elaborating on what I'm trying to achieve by this. I'm basically binding the <strong>query</strong> to a <strong>GridView</strong>. I want the column headers to be appropriate and have spaces when needed. For example, I would want a column header to be <strong>First Name</strong> instead of <strong>FirstName</strong>.</p> http://stackoverflow.com/questions/117508/create-custom-code-snippet-in-visual-studio-2008 7 Create custom code snippet in Visual Studio 2008 Bryan Roth 2008-09-22T20:43:55Z 2008-09-22T20:52:42Z <p>Like the title says, how do you create custom code snippets in Visual Studio 2008?</p> http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/84609#84609 579 Answer by Bryan Roth for What's your favorite "programmer" cartoon? Bryan Roth 2008-09-17T15:38:35Z 2008-09-21T19:22:42Z <p><img src="http://blog.pengoworks.com/enclosures/wtfm_cf7237e5-a580-4e22-a42a-f8597dd6c60b.jpg" alt="The only valid measurement of code quality: WTFs/minute" /></p> http://stackoverflow.com/questions/103688/reportviewer-displaying-black-background-in-print-layout-mode 3 ReportViewer displaying black background in Print Layout mode Bryan Roth 2008-09-19T16:58:49Z 2008-09-19T19:19:52Z <p>In my ReportViewer control, when I click on Print Layout, the background turns black on the report. This must be a bug. Is there a workaround?</p> http://stackoverflow.com/questions/87821/sql-if-clause-within-where-clause 4 SQL: IF clause within WHERE clause Bryan Roth 2008-09-17T21:24:49Z 2008-09-18T02:30:02Z <p>Is it possible to use an <strong>IF</strong> clause within a <strong>WHERE</strong> clause in MS SQL?</p> <p>Example:</p> <pre><code>WHERE IF IsNumeric(@OrderNumber) = 1 OrderNumber = @OrderNumber ELSE OrderNumber LIKE '%' + @OrderNumber + '%' </code></pre> http://stackoverflow.com/questions/84332/what-can-prevent-an-ms-access-2000-form-from-closing/84462#84462 0 Answer by Bryan Roth for What can prevent an MS Access 2000 form from closing? Bryan Roth 2008-09-17T15:26:17Z 2008-09-17T15:26:17Z <p>There is a possibility that the message box that asks if you want to save changes is being displayed behind the form. I believe that this message box is modal so you must click yes or no before you can do anything with the form which is why you can't close it.</p> http://stackoverflow.com/questions/76812/dosomethingtothingthing-n-vs-thing-dosomething/76835#76835 0 Answer by Bryan Roth for DoSomethingToThing(Thing n) vs Thing.DoSomething() Bryan Roth 2008-09-16T20:44:09Z 2008-09-16T20:44:09Z <p>DoSomethingToThing(Thing n) would be more of a functional approach whereas Thing.DoSomething() would be more of an object oriented approach.</p> http://stackoverflow.com/questions/28478/if-iif-and-if 4 If, IIf() and If() Bryan Roth 2008-08-26T16:03:37Z 2008-09-15T14:23:50Z <p>I recently asked a question about <a href="http://beta.stackoverflow.com/questions/28377/iif-vs-if" rel="nofollow">IIf vs. If</a> and found out that there is another function in VB called <strong>If</strong> which basically does the same thing as <strong>IIf</strong> but is a short-circuit.</p> <p>Does this <strong>If</strong> function perform better than the <strong>IIf</strong> function? Does the <strong>If</strong> statement trump the <strong>If</strong> and <strong>IIf</strong> functions?</p> http://stackoverflow.com/questions/11199/net-framework-dependency 3 .NET Framework dependency Bryan Roth 2008-08-14T15:25:44Z 2008-09-12T16:47:45Z <p>When developing a desktop application in .NET, is it possible to not require the .NET Framework? Is developing software in .NET a preferred way to develop desktop applications? What is the most used programming language that software companies use to develop desktop applications?</p> <p>Is the requirement of the .NET Framework just assumed based on the Windows OS you have installed hence why they list Windows OS version requirements?</p> http://stackoverflow.com/questions/59418/clean-up-designer-vb-file-in-visual-studio-2008 1 Clean up Designer.vb file in Visual Studio 2008 Bryan Roth 2008-09-12T16:15:27Z 2008-09-12T16:28:03Z <p>I noticed that my Designer.vb file of one of my forms has <strong>a lot</strong> of controls that aren't even used or visible on my form. This is probably from copying controls from my other forms. Is there a way to clean up the Designer.vb file and get rid of all the unused controls?</p> <p>**UPDATE: This is for a Windows Form project.</p> http://stackoverflow.com/questions/50565/context-menu-resets-comboboxs-selectedindex 0 Context Menu Resets ComboBox's SelectedIndex Bryan Roth 2008-09-08T20:15:09Z 2008-09-08T20:48:39Z <p>I have a ContextMenu that is displayed after a user right clicks on a ComboBox. When the user selects an item in the context menu, a form is brought up using the ShowDialog() method. </p> <pre><code> If frmOptions.ShowDialog() = Windows.Forms.DialogResult.Cancel Then LoadComboBoxes() End If </code></pre> <p>When that form is closed, I refresh all the data in the ComboBoxes on the parent form. However, when this happens the ComboBox that opened the ContextMenu is reset to have a selected index of -1 but the other selected indexes of the other ComboBoxes remain the same. </p> <p>How do I prevent the ComboBox that opened the context menu from being reset?</p> http://stackoverflow.com/questions/50565/context-menu-resets-comboboxs-selectedindex/50644#50644 0 Answer by Bryan Roth for Context Menu Resets ComboBox's SelectedIndex Bryan Roth 2008-09-08T20:48:39Z 2008-09-08T20:48:39Z <p>I figured it out.</p> <p>I created a method that passed the <strong>ContextMenu.SourceControl()</strong> property by reference so I could manipulate the control that called the ContextMenu. In the beginning of the method, I got the <strong>SelectedValue</strong> of the ComboBox and the reloaded the data in the ComboBoxes. I then set the <strong>SelectedValue</strong> to the value I had got in the beginning of the method.</p> <p>Thank you DaveK for pointing me in the right direction.</p> http://stackoverflow.com/questions/28377/iif-vs-if/28457#28457 0 Answer by Bryan Roth for IIf() vs. If Bryan Roth 2008-08-26T15:54:14Z 2008-08-26T15:54:14Z <p>@Konrad: Interesting, I never knew VB had that kind of If statement.</p> http://stackoverflow.com/questions/26863/how-do-i-really-reset-the-visual-studio-window-layout/26868#26868 3 Answer by Bryan Roth for How do I REALLY reset the Visual Studio window layout? Bryan Roth 2008-08-25T20:55:13Z 2008-08-25T20:55:13Z <p>Have you tried this? In Visual Studio go to <strong>Tools</strong> > <strong>Import and Export Settings</strong> > <strong>Reset all settings</strong></p> http://stackoverflow.com/questions/26721/how-can-i-make-sure-scrollbars-dont-overlap-content/26782#26782 0 Answer by Bryan Roth for How can I make sure scrollbars don't overlap content? Bryan Roth 2008-08-25T20:25:20Z 2008-08-25T20:25:20Z <p>If your controls are inside a panel, try setting the AutoScroll property of the Panel to False. This will hide the scrollbars. I hope this points you in the right direction.</p> <pre><code>myPanel.AutoScroll = False </code></pre> http://stackoverflow.com/questions/22417/sql-query-help-scoring-multiple-choice-tests/22421#22421 1 Answer by Bryan Roth for SQL Query Help - Scoring Multiple Choice Tests Bryan Roth 2008-08-22T13:58:59Z 2008-08-22T13:58:59Z <p>I would probably leave it up to your application to perform the scoring. Check out <a href="http://www.codinghorror.com/blog/archives/001152.html" rel="nofollow">Maybe Normalizing Isn't Normal</a> by Jeff Atwood.</p> http://stackoverflow.com/questions/1628704/jqgrid-call-asp-net-mvc-controller-action-lost-web-application-name/1628888#1628888 Comment by Bryan Roth on jqGrid call ASP.NET MVC controller action lost web application name Bryan Roth 2009-10-29T02:58:57Z 2009-10-29T02:58:57Z This actually solved my problem! Thanks Alexander! http://stackoverflow.com/questions/429877/winforms-reportviewer-slow-initial-rendering/453805#453805 Comment by Bryan Roth on WinForms ReportViewer: slow initial rendering Bryan Roth 2009-03-10T18:24:27Z 2009-03-10T18:24:27Z I tried using the server's IP and it still takes are 30 seconds to load initially. http://stackoverflow.com/questions/429076/marquee-progressbar-unresponsive-with-backgroundworker/429393#429393 Comment by Bryan Roth on Marquee ProgressBar unresponsive with BackgroundWorker Bryan Roth 2009-01-09T20:17:03Z 2009-01-09T20:17:03Z I guess it comes down to the fact that when I call the RefreshReport() method of the ReportViewer, it takes a long time to generate the report and makes the form unresponsive. I have done testing and it has nothing to do with the report but is in fact a problem with the ReportViewer. http://stackoverflow.com/questions/429076/marquee-progressbar-unresponsive-with-backgroundworker/429393#429393 Comment by Bryan Roth on Marquee ProgressBar unresponsive with BackgroundWorker Bryan Roth 2009-01-09T19:53:27Z 2009-01-09T19:53:27Z When I call rvReport.RefreshReport() from the DoWork() method, I get an exception: Cross-thread operation not valid: Control 'winRSviewer' accessed from a thread other than the thread it was created on. http://stackoverflow.com/questions/87821/sql-if-clause-within-where-clause/87992#87992 Comment by Bryan Roth on SQL: IF clause within WHERE clause Bryan Roth 2008-09-18T02:31:06Z 2008-09-18T02:31:06Z Very interesting. I never thought of it this way. http://stackoverflow.com/questions/59942/what-is-the-purpose-of-a-data-access-layer/59975#59975 Comment by Bryan Roth on What is the purpose of a Data Access Layer? Bryan Roth 2008-09-16T14:24:57Z 2008-09-16T14:24:57Z LMAO, I meant BLL (Business Logic Layer). http://stackoverflow.com/questions/63291/sql-select-columns-with-null-values-only/63412#63412 Comment by Bryan Roth on SQL: Select columns with NULL values only Bryan Roth 2008-09-15T14:32:59Z 2008-09-15T14:32:59Z Exactly. I'm trying to find all the columns that contain NULL values in every row in the table. http://stackoverflow.com/questions/59942/what-is-the-purpose-of-a-data-access-layer/59953#59953 Comment by Bryan Roth on What is the purpose of a Data Access Layer? Bryan Roth 2008-09-12T21:14:31Z 2008-09-12T21:14:31Z What if I put my data access in my BAL? http://stackoverflow.com/questions/59942/what-is-the-purpose-of-a-data-access-layer/59975#59975 Comment by Bryan Roth on What is the purpose of a Data Access Layer? Bryan Roth 2008-09-12T21:13:13Z 2008-09-12T21:13:13Z What I did was implement the data access in my BAL. http://stackoverflow.com/questions/59942/what-is-the-purpose-of-a-data-access-layer Comment by Bryan Roth on What is the purpose of a Data Access Layer? Bryan Roth 2008-09-12T21:07:38Z 2008-09-12T21:07:38Z I knew these types of comments would turn up if I posted this. I just wanted to see what the Stack Overflow community thought about this question. http://stackoverflow.com/questions/59479/optimize-windows-form-load-time/59558#59558 Comment by Bryan Roth on Optimize Windows Form Load Time Bryan Roth 2008-09-12T19:53:38Z 2008-09-12T19:53:38Z This is very true. Do you have any methods of finding potential bottlenecks? http://stackoverflow.com/questions/59418/clean-up-designer-vb-file-in-visual-studio-2008/59440#59440 Comment by Bryan Roth on Clean up Designer.vb file in Visual Studio 2008 Bryan Roth 2008-09-12T19:42:49Z 2008-09-12T19:42:49Z Thanks! That was a good idea!