Page 1 of 1

Some bugs

Posted: Wed Oct 24, 2018 3:19 pm
by wilbert2940
Hello,

1- TabControl:SetActiveTab does not work correctly and it does not make any changes.

2-Many of the properties associated with the edit object are not working correctly. like : font color, multiline, border. (Of course when designing)

3-Access to GlobalFunction codes is not possible.

4-Application:WindowHandle does not work correctly.

5-For image object : Why the image opacity is complete on the zero number? and why when the slider toward the larger numbers we see Image opacity disappears? is not reverse?

6-In the toolbox : After combobox object when we stop with the mouse on other objects icon tooltip does not show for name of the objects.

Re: Some bugs

Posted: Thu Oct 25, 2018 8:01 pm
by Serkan
Thanks for the reports

1- in progress
2- that is fixed ,same effect occurs for some other controls and they will be fixed in next version
3- global events (application events) were not active in current version , they will work in next update
4- Application:WindowHandle was an experimental function and will be removed , there will be a new function

Code: Select all

Application:GetMainWindow()
that will return a window object
And then you will use return value of that function like below

Code: Select all

local AppWnd = Application:GetMainWindow();
if(AppWnd ~= nil) then
    local hWnd = AppWnd:GetHandle();
    -- or
    local hWnd = Window:GetHandle(AppWnd);
    -- or
     local hWnd = Window.GetHandle(AppWnd);
end
5- Image object there for some pre-tests , it will be combined with Graphics class that's why there are no functions for Image object yet
And its properties might be changed ,

Re: Some bugs

Posted: Fri Oct 26, 2018 2:15 pm
by wilbert2940
Thanks.
a question !
Why the speed of development and production of this project is low? Are you a group or company ? or [a programmer person] ?