Winform rendering pretty slow


Author
Message
Edhy Rijo
E
StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)
Group: StrataFrame Users
Posts: 2.4K, Visits: 23K
Hi,

I am working on my first SF application, and testing outside the VS debugger, I noticed some slowness on the winforms when loading.

I prepared a small sample video so you can see what I mean.

http://www.progytech.com/videos/SF_Sample.html

Please let me know if there is any settings I need to do in order to adjust this unwanted effect.

The computer where this is being test is running Vista 64bits with 8gb ram.

Edhy Rijo

Edhy Rijo
E
StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)
Group: StrataFrame Users
Posts: 2.4K, Visits: 23K
I forgot to mention that I am loading the forms using Trent's technique in this message:

http://forum.strataframe.net/FindPost5199.aspx

Edhy Rijo

Trent Taylor
Trent Taylor
StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)
Group: StrataFrame Developers
Posts: 6.6K, Visits: 6.9K
This question is always like asking, "How long is a string?"  There are hundreds of little things that you can do to drastically improve performance.  Sometimes this requires that you get a code analyzer to see where all of your trouble spots are, but I can already tell from your video that you are fighting two things:
  1. You are putting all of your load logic in the New or Load of form without threading anything.  When you place all of your load logic in the New or Load, you are obviously going to slow instantiation.  There are many different things that you can do here.  First, you can use the SF ThreadManager control to help you in thread management if you are not adept at creating and managing threads.  You can perform the loading of the data from the server on the thread while the UI is on the main thread, thus impoving the rendering and instantiation.  You also want to optimize your queries and make as few trips to the server as possible when loading.  For example, if you are loading data into more than one business object, you can make a single trip to the server by using the FillMultipleDataTables method (version 1.6.5 or later, you can refer to the docs and samples on this new method). 
  2. Reduce the number of gradients and transparent requirements of the dialog.  You can have a very attractive themed interface by using a themed panel that has the RenderAsSolidBackground property set to True.  Then the ThemedGroupBoxes TransParent property to False, FillBody to False, ThemeSupport to ColorsOnly, and the HeaderStyle to WindowsStyle (or whichever style you prefer).  When you then place the labels and textboxes within the group box it will render more quickly. 

I could talk for hours on this very topic (and actually will in the July class) Smile  Past this, it will be more of a consultation type of thing for me to look at your specific application and tell you how to speed things up...but there are a lot of little things that add up to a lot.

Recently I was talking with someone who had a process that was taking 45 minutes....after talking he got this down to less than 30 seconds.  So many times it is just a matter of taking a different approach to improve performance.

But as we all know, this is nothing new to WinForms development! Smile Give me a Cray and I can probably find a way to slow it down BigGrin

Edhy Rijo
E
StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)
Group: StrataFrame Users
Posts: 2.4K, Visits: 23K
Hi Trent,

I will try all your suggestions but, all these forms and very simple lookup maintenance forms with less than 30 records each, here is the code in the form's class:

Public Class frmProducer

     Private Sub ProducerBO1_ParentFormLoading() Handles ProducerBO1.ParentFormLoading

          Me.ProducerBO1.FillAllRecords()

     End Sub

End Class

Here is the code in the ProducerBO.vb:

Public Sub FillAllRecords()

     Me.FillDataTable("SELECT * FROM Producer")

End Sub

 

Protected Overrides Function GetCustomBindablePropertyDescriptors() As FieldPropertyDescriptor()

     ' Create and return a new array of FieldPropertyDescriptor objects that contains

     ' the ReflectionPropertyDescriptor for the Custom Fields.

     Return New FieldPropertyDescriptor() _

     {New ReflectionPropertyDescriptor("ProducerFullAddress", GetType(ProducerBO))}

End Function

''' <summary>

''' This property will return the Producer Full Address

''' </summary>

''' <value></value>

''' <returns></returns>

''' <remarks></remarks>

<Browsable(False), _

BusinessFieldDisplayInEditor(), _

Description("Producer Full Address"), _

DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)> _

Public ReadOnly Property [ProducerFullAddress]() As System.String

     Get

          ' Format the Full Address string

          Dim cFullAddress As StringBuilder = New StringBuilder

          cFullAddress.AppendLine(Me.ProducerName)

          cFullAddress.Append(Me.Street)

          cFullAddress.Append(" " & Me.City)

          cFullAddress.Append(" " & Me.State)

          cFullAddress.AppendLine(" " & Me.Zip)

          cFullAddress.AppendLine(" Phone " & Me.Phone & " Fax " & Me.Fax)

          cFullAddress.Append(Me.EmailAddress)

          Return cFullAddress.ToString

     End Get

End Property

As you can see this is a very basic simple stuff, I used the same coding in all these maintenance forms and they all show the slow rendering when running from the .EXE outisde the VS IDE.

Once I made the changes you suggested and re-test, will let you know if there is any improvement. 

Edhy Rijo

Trent Taylor
Trent Taylor
StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)
Group: StrataFrame Developers
Posts: 6.6K, Visits: 6.9K
OK...I see a few things that I would probably tweak a little, but you kindof missed my point.  There is more going on than what you just showed me in that code. 

Let me put it to you in another way, I have a form that I have been working on recently that pulls from a very large data set from more than 10 different tables...there are over 200 controls on these pages once all added up.  I have the form popping up with virtually no lag or delay...using the SF controls.  So it can totally be done, I promise!

However, you have a lot of other factors also.  I noticed that you are using either Infragistics or DevExpress ribbon bar.  I also noticed that something in your dialog is moving the controls after their initial render.  So you are fighting more than a data load issue.  When your form comes up and moves 10 pixels to the left and up then something else is going on.  I know that at one point you were considering inheriting from the XtraForm.  Did you do that?  Do you have any handlers in your form?  There is more going on than what you showed me.  Just changing the data load alone will more than likely not resolve your issue.  I would first figure out why your dialog is re-rendering at least twice on instantiation and then moving.  All of these things need to be figured out as well. 

You are right in that you are dealing with a simple form...but clearly you have something in the mix that is causing an issue that is outside of the norm.

Outside of looking at your code and debugging it the only thing I can tell you to do is to work backwards.  Copy your form over so you can get back to ground zero (or create a new form).  Then add one piece at a time until you can determine where the trouble spot is.  This is going to be the only way to diagnose where your issue is.

Trent Taylor
Trent Taylor
StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)
Group: StrataFrame Developers
Posts: 6.6K, Visits: 6.9K
One other thing I thought about that can improve performance is to preload your assemblies into the AppDoman.  This will improve the initial instantiation speed the first time.  An assembly reference won't be loaded into the AppDomain until it is first used.  So if you preload these it will speed up the performance the first time an assembly is used.  Just another idea.
Trent Taylor
Trent Taylor
StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)
Group: StrataFrame Developers
Posts: 6.6K, Visits: 6.9K
OK...a final, final thought BigGrin

I am working from home today and on a really slow machine (I totally need to rebuild my home computer).  I am also talking to a remote data source in another town via a cable modem VPN.  On top of that, I just installed a new version of Camtasia and I didn't adjust anything and when I ran the app with Camtasia running and it slowed my machine WAY down.  But even with all of that, the screens loaded pretty quickly.  When running in a normal environment there is no lag or delay at all.  I just though you might want to see what I was talking about.  I have attached a video here running a very small portion of our medical application.  So you can see this coming from a large scale real-world application.

Attachments
QuickSample.zip (146 views, 6.00 MB)
Trent Taylor
Trent Taylor
StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)
Group: StrataFrame Developers
Posts: 6.6K, Visits: 6.9K
Edhy,

I was testing something in the CRM sample and noticed a similar behavior to your video.  One thing that you can do to resolve this very easily is to lock the screen once a handle is created and then unlock it once it is shown:

Protected Overrides Sub OnHandleCreated(ByVal e As System.EventArgs)
    MyBase.OnHandleCreated(e)
    MicroFour.StrataFrame.Tools.LockScreen.Lock(Me)
End Sub

Protected Overrides Sub OnShown(ByVal e As System.EventArgs)
    MyBase.OnShown(e)
    MicroFour.StrataFrame.Tools.LockScreen.Unlock()
End Sub

I will play with is some more later to see what events are being raised and what the MDI client is doing, but this should give you a quick fix.

Note:  If you use this in conjunction with the non-transparent controls...it is instantanious!  No flicker at all!

Edhy Rijo
E
StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)
Group: StrataFrame Users
Posts: 2.4K, Visits: 23K
Hi Trent,

Sorry I could not get back to you earlier, I was out today the whole day.

Ok, I am not sure where to put this code, in the Main Form or in one of the maintenance forms?

Even thought I tried on both and the result was basically the same, the rendering is pretty slow.

Edhy Rijo

Trent Taylor
Trent Taylor
StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)
Group: StrataFrame Developers
Posts: 6.6K, Visits: 6.9K
Edhy,

I reproduced your problem through an MDI environment identically to you video...so you must be placing the code in the wrong places or have something else that is overriding the locks.

Ok, I am not sure where to put this code, in the Main Form or in one of the maintenance forms?

The maintenance form...NOT the main form!!!

Even thought I tried on both and the result was basically the same, the rendering is pretty slow.

I took the CRM Sample Application and reproduced the problem, took the Customer Maintenance Form and added the code above, I also changed the Themed controls to not render transparents and render with solid backgrounds and all issues that you were talking about...to the "T" went away.

GO

Merge Selected

Merge into selected topic...



Merge into merge target...



Merge into a specific topic ID...




Similar Topics

Reading This Topic

Login

Explore
Messages
Mentions
Search