Hello,
One customer using Windows 10 in Japanese reported a problem with the TeeTree which we have never faced before:
The TeeTree should look like this:
But for this customer it looks like this:
The texts are not visible and the icons are like shrinked on each other.
Have you ever faced such a situation or have any idea about what could produce such a problem ?
We are using TeeTree v2.0.
Thank you if you have any feedback.
Strange visual behaviour with Windows in Japanese
Re: Strange visual behaviour with Windows in Japanese
Hello,
I'm trying to reproduce the problem with this simple example:
But it seems to work fine for me here:
Could you please modify the code above or arrange a simple example project we can run as-is to reproduce the problem here?
Thanks in advance.
I'm trying to reproduce the problem with this simple example:
Code: Select all
procedure TForm1.FormCreate(Sender: TObject);
var i, j: Integer;
begin
for i:=1 to 2 do
with Tree1.AddRoot('ルート ' + IntToStr(i)) do
begin
Expanded:=True;
Border.Hide;
for j:=1 to 4 do
begin
with AddChild('子供 ' + IntToStr(j)) do
begin
ImageIndex:=tiChecked;
Border.Hide;
with AddChild('サブチャイルド 0') do
begin
ImageIndex:=tiChecked;
Border.Hide;
end;
end;
end;
end;
end;
Thanks in advance.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Strange visual behaviour with Windows in Japanese
Hello Yeray,
Thank you for your answer.
We think we have found the problem: our user told us the TeeTree was working, he installed MS Office 2013 and the Tree was not working anymore. After some researches it appears that some Microsoft users have experienced problems with treeview components in MS Office 2013.
We have suggested our user to uninstall Office 2013 to check if it was the cause of the problem, but we didn't have any feedback since.
For the moment we can consider that the problem is not linked with TeeTree component but with MS Office 2013.
Thank you for your answer.
We think we have found the problem: our user told us the TeeTree was working, he installed MS Office 2013 and the Tree was not working anymore. After some researches it appears that some Microsoft users have experienced problems with treeview components in MS Office 2013.
We have suggested our user to uninstall Office 2013 to check if it was the cause of the problem, but we didn't have any feedback since.
For the moment we can consider that the problem is not linked with TeeTree component but with MS Office 2013.
Re: Strange visual behaviour with Windows in Japanese
Hello,
Thanks for the feedback.
Don't hesitate to let us know if you (or the user) still have problems with it.
Thanks for the feedback.
Don't hesitate to let us know if you (or the user) still have problems with it.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |