Am 22.11.2010, 22:03 Uhr, schrieb m0n0 <ole@monochrom.net>:there could be a lib for simple implementation of dialogs without need ofa rsc, etc.There is already an library for runtime dialog creation... based on windom.http://windom.free.fr/dfrm/Interesting, but it requires C-Programming, I thought of something where you only write the xml, and some tool generates the complete code for you (form and evaluation).
Or use a C-struct as imput:
e.g.:
struct xy{
int var1 /* text for dialog */, var2 /* text for dialog */;
float f1 /**/, f2 /**/;
struct xyz{
...
};
...
}
So you can use your real code and don't have to write and maintain two
files.
-- Helmut Karlowski