I am using the Marquee in the UltraStatusBar and the text is just sitting there. (Not Scrolling)
The code I am using is verbatim from the sample code with the exception of the actual text and the width:
this.ultraStatusBar1.Panels.Add("Marquee", PanelStyle.Marquee);
this.ultraStatusBar1.Panels["Marquee"].Width = 902;
this.ultraStatusBar1.Panels["Marquee"].Text = "To view the User's Manual, select 'Help' on the Main Menu";
this.ultraStatusBar1.Panels["Marquee"].MarqueeInfo.MarqueeStyle = MarqueeStyle.Scrolling;
this.ultraStatusBar1.Panels["Marquee"].MarqueeInfo.IsActive = true;
this.ultraStatusBar1.Panels["Marquee"].MarqueeInfo.Start();
Please Advise. Thanks
Hello Adam,
I followed the steps you suggested and was unable to reproduce the behavior you are describing. In the form_load event handler I used exactly the same code you provided and when I run the application, the text in the panel starts scrolling.
I have attached the sample project I used to test this. Please test this project on your PC; whether or not it works correctly may help indicate the nature of this problem.
If the project does not work correctly, this indicates either a problem possibly specific to your environment, or a difference in the DLL versions we are using. My test was performed using version 2016.2.20162.2040 in NetAdvantage for Windows Forms 2016 Volume 2.
If the project does show the product feature working correctly, this indicates a possible problem in the code of your application. It will help if you can provide a small, isolated sample application that demonstrates the behavior you are seeing.
Or, if this sample project is not an accurate demonstration of what you're trying to do, please feel free to modify it and send it back, or send a small sample project of your own if you have one.
Please let me know if I can provide any further assistance.
I don't see an attachment
Hi Adam,
I am resending the sample.
Sample works fine. It is something to do with the way I am displaying the form. If I do a form.Show() on a different event (other than Load) it seems to work fine.
Thanks much for the help