"#include <fltk/run.h>
#include <fltk/Window.h>
#include <fltk/Button.h>
#include <fltk/Input.h>
using namespace fltk;
int main(){
Window win(800, 500, "fl_pm v. 0.001");
win.begin();
for(short i = 1; i>20; i++){
a[i] = new Input(0, i*24, 266, 24);
b[i] = new Input(266, i*24, 266, 24);
c[i] = new Input(532, i*24, 268, 24);
}
win.end();
win.show();
return run();
}"
Code compiles, but there are no Inputs, only window.
_______________________________________________
fltk mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk