Hello everyone,
sometimes it happens that when I change the application main form's
title by

this.Text = "A new title";

it does not get changed on the "button" in the taskbar. However,
usually
it works fine...

Does anyone have any idea what might cause it?

Thanks in advance.

nvx

Re: Application title in taskbar does not change (C#2.0) by Collin

Collin
Sun Jun 29 08:10:05 CDT 2008

On Jun 27, 5:07=A0pm, nvx <nvx2...@hotmail.com> wrote:
> Hello everyone,
> sometimes it happens that when I change the application main form's
> title by
>
> this.Text =3D "A new title";
>
> it does not get changed on the "button" in the taskbar. However,
> usually
> it works fine...
>
> Does anyone have any idea what might cause it?
>
> Thanks in advance.
>
> nvx

Quick question. Is your application multi-threaded? Are you updating
the main title bar from a thread you create?

Re: Application title in taskbar does not change (C#2.0) by nvx

nvx
Fri Jul 04 14:56:34 CDT 2008

Dear Collin,
thank you for your reply and I'm sorry for that delay. I was out of
the civilization... ;)

No, it is single-threaded, which, I believe, causes the trouble. When
the thread is busy, the GUI probably does not get updated. I think
making the application multi-threaded might help, but this would be a
time-consuming task... I'm afraid I will have to let it be as it is.

Anyway, thanks for your interest.

Best regards,
nvx


On 29 =C8en, 15:10, Collin <blackfr...@gmail.com> wrote:
> On Jun 27, 5:07=A0pm, nvx <nvx2...@hotmail.com> wrote:
>
> > Hello everyone,
> > sometimes it happens that when I change the application main form's
> > title by
>
> > this.Text =3D "A new title";
>
> > it does not get changed on the "button" in the taskbar. However,
> > usually
> > it works fine...
>
> > Does anyone have any idea what might cause it?
>
> > Thanks in advance.
>
> > nvx
>
> Quick question. =A0Is your application multi-threaded? =A0Are you updatin=
g
> the main title bar from a thread you create?