home *** CD-ROM | disk | FTP | other *** search
- #include "colors.do"
- /*
- demonstrate the use of a picture within a GET field
- */
- w = currentWindow();
- clearGets(w);
- cls;
- a = "test";
- prompt = "Enter a value: ";
- say(w,5,5,prompt,len(prompt),7);
- f = new(Field,w,5,len(prompt)+5,"a",10,112);
- setPicture(f,"!!!!!!!!!!");
- read(w);
- ? "the value you entered was ",a;
-