Go Back   Wiki NewForum | Latest Entertainment News > Career Forum & Tips > Tech Forum & Tutorial > HTML Forum & Tutorial


Displaying local HTML files using the THTML component or other browser


Reply
Views: 2866  
Thread Tools Rate Thread
  #1  
Old 08-09-2010, 12:40 PM
bholas bholas is offline
Award Winner
 
Join Date: Apr 2010
Posts: 4,977
Default Displaying local HTML files using the THTML component or other browser

Looking for a way to display local HTML files using the THTML component or other browser? This is possible, but be sure to format the URL to your local files correctly. You may want to display local HTML files if you're using HTML files to provide help for your program or if you wish to ship a snap-shot of your web site with your programs.
URLs to local files should be formatted as: file:///
For example: c:\my_pages\home.htm should be specified as:
file:///c|/my_pages/home.htm
To display a file on a network such as \\server_name\c_drive\my_pages\home.htm
file://server_name/c_drive/my_pages/home.htm
If you're using a browser or some other program that can accept standard URLs, simply pass the correctly formatted local file path as demonstrated above.
To display a local file using a THTML component named HTML1:
HTML1.RequestDoc( 'file:///c|/my_pages/home.htm' );
Listing #1 : Delphi code. Download url_demo (0.19 KB).


If you're using C++Builder's THTML component:
HTML1->RequestDoc( "file:///c|/my_pages/home.htm" );
Listing #2 : C/C++ code. Download url_demo (0.19 KB).

Reply With Quote
Reply

Tags
programming tips

New topics in HTML Forum & Tutorial





Powered by vBulletin® Version 3.8.10
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
WikiNewForum)