Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

ListBox DX8, How to select a Item


DarkDino
 Share

Recommended Posts

When asking people for help, you need to communicate better.

This typical response is what people who do not speak English frequently give, which is why I suggest if you want help you improve the clarity and context of what you are asking for.
Link to comment
Share on other sites

Loop through the each and every option and check whether the x and y is within the text area. Something like this

```
for i = 1 to 10
if (text is not empty) then
if x > textX and x < textx + textwidth then
if y > texty and y < texty + textheight then
drawselectionbox
end if
end if
end if
next

```
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...