I was wondering if any one has experiance a similar behaviour running Delphi
Apps in Citrix environment and cna shed some light on this. For some
strange reason, no icon gets displayed on the Task Bar for any Delphi Apps
when you run them. Has any one seen this behaviour? Is there anything
special that needs to be done for delphi apps to show up on the task bar?
Any help, comments, suggestions will be greatly aprreciated. Thanks.
is actually else where.
"Sohel Mohammad" <sohel.m...@integic.com> wrote in message
news:3ebb...@newsgroups.borland.com...
(e-mail from Citrix)
> I was able to repro your issue and resolve it by doing the following:
> a)Run Regedt32
> b)Go to HKLM/System/CurrentControlSet/Control/Citrix/wfshell/TWI
> c)Highlight the TWI Key, then from the Edit Menu select "Add Key"
> d)Type, TfrmTopGun for the Key Name, and leave the Class: blank.
> e)Highlight the newly created TfrmTopGun Subkey.
> f)From the Edit Menu, select "Add Value"
> g)Type, ClassName for the Value Name.
> h)Select, REG_SZ for the Data Type.
> i)Type, TfrmTopGun for the "String" value.
> j)From the Edit Menu, select "Add Value" (again)
> k)Type the word "Type" for the Value Name.
> l)Select, REG_DWORD for the Data Type.
> m)Type, <Hex 40 or Decimal 64 for Exception Flag> for the Hex Value.
>
> Setting this value to a window class forces the seamless engine to
> intentionally use the GetParent API to get the parent window on the
> specified window classname.
> Basically I used SPYxx.exe to get the Window Class Name of the main
> form, then made the above registry entry. I also tried to repro this
> problem with a generic VB6 and MFC app and could not. It seems Delphi
> does things a little differently.
>
> If I set the value to hex 41 (decimal 65), I get both the icon on the
> task bar and the fix for the modal window problem.
Dennis Passmore
Ultimate Software, Inc
"If you cannot conceive the idea you
will never achieve the desired results"
"Sohel Mohammad" <sohel.m...@integic.com> wrote in message
news:3ebb...@newsgroups.borland.com...