Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

display swf shockwave file in bcb form

Status
Not open for further replies.

ALInux

Programmer
Oct 28, 2005
17
0
0
NG
Hi
Is there a component or method to display a swf file in my cbuilder form ?
Thanks for any suggestions
 
Why don't you use the Webbrowser component from the internet palette.
Create a html document in the temp directory and:

Code:
    wchar_t url[1024];
    AnsiString as = "file://c:/temp/swf.html";
    as.WideChar( url, 1024 );
    CppWebBrowser1->Navigate(url);
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top