This is a program i made to acces windows gui using db Classic without enchansement pack , here is the link to the whole thing
[href]www.freewebs.com/dodica/Windows%20gui%20operator.zip[/href]
(you need to download it , and copy it to your project`s folder)
(
if the link doesn`t work , copy adress into adress bar and hit go or press enter)
-----------------------------------------------------------------
FOR NOW IT ONLY SUPPORTS ALERT BOX SHOWING (alert box is also known as message box)
, BUT I AM PLANNING (ALREADY DID) ON PUTTING INPUT BOX , And many stuff like that , YES OR NO PROMPT (WITH OPTION OF CODDING WHAT WILL HEPEN IF YES IS PRESSED AND WHAT IF NO IS PRESSED)
------------------------------------------------------------------
And here is the code you NEED to use it in your project :
`---------------------------------------------------
`---------------Engine Setup------------------------
`---------------------------------------------------
`---The title of alert box----------(MUST NOT BE EMPTY !)
title$="Title"
`---The text in the alert box--------(MUST NOT BE EMPTY !)
text$="Hey"
`----------------------------------------------------
`code (changing of below is NOT RECOMMENDED)
`-----------------------------------------------------
open to write 1,"Alert_boxtitle.script"
write string 1,title$
open to write 2,"Alert_boxtext.script"
write string 2,text$
`----------------------------------------------
`---PUT THIS WHERE/WHEN YOU WANT YOUR ALERTBOX TO SHOW
execute file "Dodic gui support.exe",a$,"",1
`----------------------------------------------
`-----------------------------------------------------
`----Your project below (whatever you want to make..)---------------------
do
loop
Change the title string to change window (message box) title , and text string to change the message .
Soon i`l make it more powerfull to be able to acces many more parts of windows gui ..