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

One question :)


trautmen
 Share

Recommended Posts

for transparent txtChat richtextbox use :in to modgamelogic copy:
```
Public Declare Function SetWindowLong Lib "user32" Alias "SetWindowLongA" (ByVal hwnd As Long, ByVal nIndex As Long, ByVal dwNewLong As Long) As Long
Public Const GWL_EXSTYLE = (-20)
Public Const WS_EX_TRANSPARENT = &H20&
```
and in to form_load copy:
```
Dim result As Long
result = SetWindowLong(txtChat.hwnd, GWL_EXSTYLE, WS_EX_TRANSPARENT)
```
I not created this code!!
btw: this is one problem..txtChat not see because is under map..help enyone?
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...