User Bryan Roth - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T13:11:58Zhttp://stackoverflow.com/feeds/user/299http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/28377/iif-vs-if4IIf() vs. IfBryan Roth2008-08-26T15:29:45Z2009-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-label5Formatting text in WinForm LabelBryan Roth2008-08-14T16:43:03Z2009-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 <b>bold</b> text. This is <i>italicized</i> 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#11062831Answer by Bryan Roth for How can I turn these LINQ joins into LEFT OUTER joins?Bryan Roth2009-07-09T20:31:47Z2009-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 => 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-joins5Linq to Sql: Multiple left outer joinsBryan Roth2008-11-06T02:34:00Z2009-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 >= 100000 AND
o.OrderNumber <= 200000
</code></pre>
http://stackoverflow.com/questions/429877/winforms-reportviewer-slow-initial-rendering0WinForms ReportViewer: slow initial renderingBryan Roth2009-01-09T21:49:05Z2009-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-time2Optimize Windows Form Load TimeBryan Roth2008-09-12T16:44:29Z2009-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-names4LINQ: custom column namesBryan Roth2008-09-24T16:41:39Z2009-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#4434710Answer by Bryan Roth for LINQ: custom column namesBryan Roth2009-01-14T15:55:53Z2009-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#4433800Answer by Bryan Roth for WinForms ReportViewer: slow initial renderingBryan Roth2009-01-14T15:34:17Z2009-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-backgroundworker2Marquee ProgressBar unresponsive with BackgroundWorkerBryan Roth2009-01-09T18:05:51Z2009-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-multithreading0ProgressBar freezes when using multithreadingBryan Roth2009-01-08T17:53:54Z2009-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#2689913Answer by Bryan Roth for Linq to Sql: Multiple left outer joinsBryan Roth2008-11-06T15:01:05Z2008-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 >= 100000 And o.OrderNumber <= 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-layer3What is the purpose of a Data Access Layer?Bryan Roth2008-09-12T20:59:42Z2008-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-only2SQL: Select columns with NULL values onlyBryan Roth2008-09-15T14:16:41Z2008-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#1287400Answer by Bryan Roth for LINQ: custom column namesBryan Roth2008-09-24T17:59:27Z2008-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-20087Create custom code snippet in Visual Studio 2008Bryan Roth2008-09-22T20:43:55Z2008-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#84609579Answer by Bryan Roth for What's your favorite "programmer" cartoon?Bryan Roth2008-09-17T15:38:35Z2008-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-mode3ReportViewer displaying black background in Print Layout modeBryan Roth2008-09-19T16:58:49Z2008-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-clause4SQL: IF clause within WHERE clauseBryan Roth2008-09-17T21:24:49Z2008-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#844620Answer by Bryan Roth for What can prevent an MS Access 2000 form from closing?Bryan Roth2008-09-17T15:26:17Z2008-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#768350Answer by Bryan Roth for DoSomethingToThing(Thing n) vs Thing.DoSomething()Bryan Roth2008-09-16T20:44:09Z2008-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-if4If, IIf() and If()Bryan Roth2008-08-26T16:03:37Z2008-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-dependency3.NET Framework dependencyBryan Roth2008-08-14T15:25:44Z2008-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-20081Clean up Designer.vb file in Visual Studio 2008Bryan Roth2008-09-12T16:15:27Z2008-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-selectedindex0Context Menu Resets ComboBox's SelectedIndexBryan Roth2008-09-08T20:15:09Z2008-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#506440Answer by Bryan Roth for Context Menu Resets ComboBox's SelectedIndexBryan Roth2008-09-08T20:48:39Z2008-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#284570Answer by Bryan Roth for IIf() vs. IfBryan Roth2008-08-26T15:54:14Z2008-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#268683Answer by Bryan Roth for How do I REALLY reset the Visual Studio window layout?Bryan Roth2008-08-25T20:55:13Z2008-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#267820Answer by Bryan Roth for How can I make sure scrollbars don't overlap content?Bryan Roth2008-08-25T20:25:20Z2008-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#224211Answer by Bryan Roth for SQL Query Help - Scoring Multiple Choice TestsBryan Roth2008-08-22T13:58:59Z2008-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#1628888Comment by Bryan Roth on jqGrid call ASP.NET MVC controller action lost web application nameBryan Roth2009-10-29T02:58:57Z2009-10-29T02:58:57ZThis actually solved my problem! Thanks Alexander!http://stackoverflow.com/questions/429877/winforms-reportviewer-slow-initial-rendering/453805#453805Comment by Bryan Roth on WinForms ReportViewer: slow initial renderingBryan Roth2009-03-10T18:24:27Z2009-03-10T18:24:27ZI 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#429393Comment by Bryan Roth on Marquee ProgressBar unresponsive with BackgroundWorkerBryan Roth2009-01-09T20:17:03Z2009-01-09T20:17:03ZI 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#429393Comment by Bryan Roth on Marquee ProgressBar unresponsive with BackgroundWorkerBryan Roth2009-01-09T19:53:27Z2009-01-09T19:53:27ZWhen 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#87992Comment by Bryan Roth on SQL: IF clause within WHERE clauseBryan Roth2008-09-18T02:31:06Z2008-09-18T02:31:06ZVery interesting. I never thought of it this way.http://stackoverflow.com/questions/59942/what-is-the-purpose-of-a-data-access-layer/59975#59975Comment by Bryan Roth on What is the purpose of a Data Access Layer?Bryan Roth2008-09-16T14:24:57Z2008-09-16T14:24:57ZLMAO, I meant BLL (Business Logic Layer).http://stackoverflow.com/questions/63291/sql-select-columns-with-null-values-only/63412#63412Comment by Bryan Roth on SQL: Select columns with NULL values onlyBryan Roth2008-09-15T14:32:59Z2008-09-15T14:32:59ZExactly. 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#59953Comment by Bryan Roth on What is the purpose of a Data Access Layer?Bryan Roth2008-09-12T21:14:31Z2008-09-12T21:14:31ZWhat if I put my data access in my BAL?http://stackoverflow.com/questions/59942/what-is-the-purpose-of-a-data-access-layer/59975#59975Comment by Bryan Roth on What is the purpose of a Data Access Layer?Bryan Roth2008-09-12T21:13:13Z2008-09-12T21:13:13ZWhat I did was implement the data access in my BAL.http://stackoverflow.com/questions/59942/what-is-the-purpose-of-a-data-access-layerComment by Bryan Roth on What is the purpose of a Data Access Layer?Bryan Roth2008-09-12T21:07:38Z2008-09-12T21:07:38ZI 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#59558Comment by Bryan Roth on Optimize Windows Form Load TimeBryan Roth2008-09-12T19:53:38Z2008-09-12T19:53:38ZThis 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#59440Comment by Bryan Roth on Clean up Designer.vb file in Visual Studio 2008Bryan Roth2008-09-12T19:42:49Z2008-09-12T19:42:49ZThanks! That was a good idea!