I’ve used the converter in Sybase’s powerbuilder 6.5 and it works fine, and now I’m trying to use it Visual Studio 6. Unfortunately, the documentation in visual C ( or in Borland C) in not big !
My problem is that Visual C does not understand the BindDefault() function.
Here is a portion of code that I use, but nothing happens :
IConverter Converter; // Create Converter Object
IWaveSettings WaveSettings;
//Converter.BindDefault(); // Bind to Object
Converter.abc();
CString s;
s = GetTreeFullPath(m_Tree.m_tree.GetCurrentItem());
Converter.AddFromFile(s);
Converter.SetToFolder("C:\\temp");
Converter.GoConversion("Wave",FALSE,TRUE,TRUE,FALS E);
Doctor, what should I do ?
My problem is that Visual C does not understand the BindDefault() function.
Here is a portion of code that I use, but nothing happens :
IConverter Converter; // Create Converter Object
IWaveSettings WaveSettings;
//Converter.BindDefault(); // Bind to Object
Converter.abc();
CString s;
s = GetTreeFullPath(m_Tree.m_tree.GetCurrentItem());
Converter.AddFromFile(s);
Converter.SetToFolder("C:\\temp");
Converter.GoConversion("Wave",FALSE,TRUE,TRUE,FALS E);
Doctor, what should I do ?
Comment