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

Transparent RichTextBox


ryonn
 Share

Recommended Posts

Hi,

I have found a way to make my RTB to be transparent.
The thing is however, the picscreen always refreshes to be on top, hence my textbox is covered by picscreen.
How can I handle this?

Please help
Link to comment
Share on other sites

Store all the lines of text in a circular array, so you don't get a stupid amount of text in memory.

Have a simple rendering system which is based off a small integer value which can be control by a programmed "scroll bar".

```
For i = SCROLLBARVALUE to SCROLLBARVALUE + [max lines in chat]
    DrawText(textArray(i), x, y)
next
```
It's fairly simple, you just need to know how to edit the incoming message packets and have them stored in an array, instead of in an RTB.
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...