use of multicolor in form is possible?

jothis

Active Member
Licensed User
hai friends

i have a form i want to change the background color of the forms selected area is it possible without a panel?

i attached a picture

Please Help me

jothis
 

Attachments

  • untitled.JPG
    untitled.JPG
    8.6 KB · Views: 166

PepSoft

Member
Licensed User
Longtime User
You can use "Form.Polygon"



Sub Globals
'Declare the global variables here.
Dim PX(4)
Dim PY(4)
End Sub

Sub App_Start
Form1.Show
PX()=Array(20,200,200,20)
PY()=Array(20,20,110,110)
Form1.Polygon(PX(),0,PY(),0,4,cBlue,F)
PY()=Array(140,140,190,190)
Form1.Polygon(PX(),0,PY(),0,4,cRed,F)
End Sub

PepSoft
 
Top