Directdraw and MS SDk for java 4

Howdy folks,

I cannot figure out for the life of me how to set up my frame for exclusive mode, I can only get it to work in windowed mode. Here’s how I aprox. have it set up:

public Game extends Frame implements DirectXConstants
{
public Game()
{
setSize(800, 600);
show();
dd = new DirectDraw();
dd.setCooperativeLevel(this, DDSCL_FULLSCREEN) <-------ERROR!! only accepts DDSCL_NORMAL

If anyone knows what I’m doing wrong please let me know.

thanks,
dave h