We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BCTrackbarUpdown1Change execute bug
procedure TForm1.BCTrackbarUpdown1Change(Sender: TObject; AByUser: boolean); begin showmessage('1'); end;
process run execute -> messagebox call
The trackbar didn't move change
When the program is executed, it is executed unconditionally once
Isn't this a bug?
######## add in fo ########
BCTrackbarUpdown1.value = 0 -> process execute -> BCTrackbarUpdown1Change call
BCTrackbarUpdown1.value = 50 -> process execute -> BCTrackbarUpdown1Change no function call
what value 0 build -> execute change call
The text was updated successfully, but these errors were encountered:
Why is the initial value 50?
Isn't it more normal to have an initial code value of 0?
this is weird
Sorry, something went wrong.
No branches or pull requests
BCTrackbarUpdown1Change execute bug
procedure TForm1.BCTrackbarUpdown1Change(Sender: TObject; AByUser: boolean);
begin
showmessage('1');
end;
process run execute -> messagebox call
The trackbar didn't move change
When the program is executed, it is executed unconditionally once
Isn't this a bug?
######## add in fo ########
BCTrackbarUpdown1.value = 0 -> process execute -> BCTrackbarUpdown1Change call
BCTrackbarUpdown1.value = 50 -> process execute -> BCTrackbarUpdown1Change no function call
what value 0 build -> execute change call
The text was updated successfully, but these errors were encountered: