Guest_imported
New member
- Jan 1, 1970
- 0
how i can connect crystal reports and visual c?
plz if any one have any snip of code, or any hint kindly reply me
Thanks
plz if any one have any snip of code, or any hint kindly reply me
Thanks
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
#import "Crystl32.tlb" no_implementation rename_namespace("CRPE")
#import "Crystl32.tlb" implementation_only rename_namespace("CRPE")
CoInitialize()
CoUninitialize()
try
{
CRPE::_Application spCrpeApp;
hr = spCrpeApp.CreateInstance(__uuidof(CRPE::Application));
if(FAILED(hr))
_com_issue_error(hr);
spCrpeApp->Login( ... );
}
catch(_com_error e)
{
_bstr_t str = e.Description()
if(str.length() == 0)
str = e.ErrorMessage();
}
[code]
GookLuck!
Marius Samoila
Brainbench MVP for Visual C++
[URL unfurl="true"]http://www.brainbench.com[/URL]