WHOOPS!!!!
Sorry Robert!!!!!!!! i was sooooo gunna put you in my suggestions but didn't, Long day, Was Very tired! lol
Quote: "FYI Guys....I've been a member a long time but I'm still using DBC and I'm still a rookie. I appreciate the suggestions which were I'm afraid above my skill level."
Well Yes maybe the dll stuff is but really if you want your own GUI then it's all about pasting images and stuff. if you want a real windows look then i would suggest first checking out out to use buttons, Here is a example of just a little button.
Sync on
Sync rate 0
Rem Create The Unpressed Button image.
Rem It has a White border on the Left and Top
Rem and Black border on right and bottom.
Rem this makes it look like it's 3D
rem Make the background Gray color for the button.
ink rgb(192,192,192),0
Box 0,0,75,20
rem Put the top and left borders on
ink rgb(255,255,255),0
Box 0,0,75,0
Box 0,0,0,20
Rem Put the Right and Bottom Borders on
ink rgb(0,0,0),0
Box 75,0,75,20
Box 0,20,75,20
Rem Get The image
Get Image 1,0,0,76,21
Rem Create the Pressed Button image
Rem It has a Black Border on the Left and Top
Rem And White Border on right and Bottom
Rem This Flips the colors so it looks like it's In-dented.
rem Make the background Gray color for the button.
ink rgb(192,192,192),0
Box 0,0,75,20
rem Put the top and left borders on
ink rgb(0,0,0),0
Box 0,0,75,0
Box 0,0,0,20
Rem Put the Right and Bottom Borders on
ink rgb(255,255,255),0
Box 75,0,75,20
Box 0,20,75,20
Rem Get The Image
Get Image 2,0,0,76,21
Image = 1
Do
Rem Check For Mouse Click
if Mouseclick()
MX = MouseX() : MY = MouseY()
if MX > 100 and MX < 175 and MY > 100 and MY < 120
Rem Get Old State
State = Image
Rem Change Button State.
if Image = 1 : image = 2 : Else : Image = 1 : endif
Rem Update Button
Paste Image Image,100,100
Rem Wait Until Mouseclick is = 0
Repeat : Sync : Until Mouseclick() = 0
Rem Update Button State
Image = State
endif
endif
rem Update Button
Paste image Image,100,100
sync
Rem Clear the Screen With a blue background.
cls rgb(0,0,255)
loop
Really Simple But i Just whipped it up in like 2 minutes lol
Really GUI isn't hard it's just working out speed issues that's the hardest.
New Site! Check it out \/