LoadFile Method

WRAPPER_API void LoadFile(const BmgChar *fileName)

 

WRAPPER_API void LoadFile()

 

Description

Load the view from a specified file.

Example

void DataView_LoadFile()

{

GEOCALCPBW_NAMESPACE::DataView data;

_towchar filename("c:\\bmg\\geocalcpbw\\data\\geodata.xvw");

if(! data.LoadFile(filename.c_str()))

{

AfxMessageBox("DataView::LoadFile failed");

}

}