René Nyffenegger's collection of things on the web
René Nyffenegger on Oracle - Most wanted - Feedback -
 

Simple List Box [Ming wrapper example]

This flash movie was created with the following program.
SimpleListBox.cpp
#include "ListBox.h"

int main() {
  Movie movie ("SimpleListBox.swf", 400, 400);

  ListBox listBox(200, 200);

  movie.Add(listBox);
  movie.NextFrame();

  return 0;
}
This is one of a series of examples that demonstrates the C++ ming wrapper classes. Other examples can be found here.