gGadgets
Steven,
typedef struct box {
int x;
int y;
int w;
int h;
} BOX, *BOX_PTR;
BOX ebox = { 4, 0, 615, 348 };
DrawBevelBox(editor_window->RPort, ebox.x, ebox.y, ebox.w, ebox.h,
GT_VisualInfo, vi, TAG_DONE);
-sja