Mar 30, 2006 #1 ALInux Programmer Oct 28, 2005 17 NG Hi Is there a component or method to display a swf file in my cbuilder form ? Thanks for any suggestions
Hi Is there a component or method to display a swf file in my cbuilder form ? Thanks for any suggestions
Mar 31, 2006 #2 hennep Programmer Dec 10, 2000 429 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); Upvote 0 Downvote
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);