Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1210
Shaking Windows(!?!)
posted

Hi Guys,

 

Here is the scenario, i'm using NetAdvantage_NET_20082_CLR20_Bundle.

I have 2 simple forms, on each one i have added UltraToolBarsManager and set the FormDisplayStyle to RoundedSizeable.

From the main form i'm doing ShowDialog() to the second one.

    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void ultraButton1_Click(object sender, EventArgs e)
        {
            (new Dialog()).ShowDialog();
        }
    }

 

Things are as simple as above - i've created a clean project and implemented the above.

When the Dialog form is shown the main form (maxmized) SHAKES! (??! :-() ).

I can't seem to get rid of this....

I though this is something in my code - but on a totally clean project and on more than one computer - this keeps happaning...

PLEASE HELP :(

Thanx,

Gili