I thought frames were supposed to be as simple as this:
Code: Select all
<html>
<head>
<meta name="author" content="PB">
</head>
<title>Instruction Manual</title>
<frameset cols="200,*">
<frame name="index" src="http://www.purebasic.com/" scrolling="auto">
<frame name="main" src="http://www.google.com/" scrolling="auto">
</frameset>
</html>
And my aim is NOT to load an external web page, but to load local files from
a "Data" sub-folder, like this:
Code: Select all
<frame name="index" src="Data\index.htm" scrolling="auto">



