Some bugs

Forum to report bugs for SDStudio Design Environment
Post Reply
wilbert2940
Registered User
Posts: 58
Joined: Fri Feb 02, 2018 7:44 am

Some bugs

Post 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.
Last edited by wilbert2940 on Sun Feb 24, 2019 6:59 am, edited 1 time in total.
English is not my native language.
User avatar
Serkan
Developer
Developer
Posts: 214
Joined: Thu Jul 04, 2013 8:44 pm
Location: Windows.h
Contact:

Post 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 ,
wilbert2940
Registered User
Posts: 58
Joined: Fri Feb 02, 2018 7:44 am

Post 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] ?
English is not my native language.
Post Reply