Follow this
http://www.originlab.com/doc/OriginC/guide/first-HTML-dialog
and download the sample, and in HelloWorldDlg1.cpp, you see
void hello()
{
HelloWorldDlg dlg;
//prevent reading last dialog position and size from registry
DWORD dwFlags = DLG_NO_LOAD_TOP_LEFT | DLG_NO_LOAD_WIDTH_HEIGHT;
dlg.DoModalEx(GetWindow(), dwFlags);
}
CP