beautypg.com

Teledyne LeCroy SATracer 3G Verification Script Engine manual User Manual

Page 56

background image

LeCroy Corporation

Verification Script Engine Reference Manual

Version 1.01

Internet Explorer is registered to open files with extensions *.htm and the file handle passed to
ShowInBrowser() function belongs to a file with such an extension,this file will be opened in the
Internet Explorer.

Format :

ShowInBrowser ( file_handle )



Parameters:

file_handle - the file “handle”.


Example:

set html_file = 0;

html_file = OpenFile( “D:\\Log.htm” );

WriteString( html_file, “LOG” );

WriteString( html_file, “” );

WriteString( html_file, “” );

ShowInBrowser( html_file ); # opens the file in Internet Explorer

CloseFile( html_file );

51