Talk:Building a VCL Forms Web Browser Application

From RAD Studio
Jump to: navigation, search

Two example codes are little obsoleted. Unicode RTL/VCL doesn't need to explicit cast to WideString. "WideString" should be removed from the following code fragment.

WebBrowser1.Navigate(WideString(Memo1.Text));
WebBrowser1->Navigate( WideString( Memo1->Text ) );

to

WebBrowser1.Navigate(Memo1.Text);
WebBrowser1->Navigate(Memo1->Text);

It would be nice to add the cross references to other platform's web-browser application information.


--Tarisawa (talk) 15:37, 4 February 2014 (PST)


Response

We have incorporated your comment.

Many thanks!

KrisHouser (talk) 14:39, 11 February 2014 (PST)

RS-47479