Simple windowed application: Difference between revisions

m
best place for omit from: tail or head? tail this time...
m (→‎{{header|Objective-C}}: number only to "Clicked N times" string)
m (best place for omit from: tail or head? tail this time...)
Line 771:
RapidQ has form designer that produces RapidQ Basic source code. You can get the same result by writing the code yourself with a text editor. Then compile it either from within IDE or by using the command line compiler.
 
<lang rapidq> DECLARE SUB buttonClick
CREATE form AS QForm
Line 796:
END SUB
form.ShowModal</lang>
 
=={{header|Tcl}}==
{{libheader|Tk}}
<lang tcl> pack [label .l -text "There have been no clicks yet."]
set count 0
pack [button .b -text " Click Me " -command upd]
proc upd {} {.l configure -text "Number of clicks: [incr ::count]."}</lang>
 
=={{header|Vedit macro language}}==
Line 821:
}
</pre>
 
{{Omit From|Metafont}}