I have a help file called "help.htm". It is located in
the \windows directory. The help.htm file uses some
picture files(pic1.2bp,pic2.2bp,...) which is also
located in \windows.

I can use file explorer to open the help.htm. But the
picture do not show up(blank space).

In my program, when I try to open the file by using
CreateProcess("peghelp.exe","help.htm",...), I got
error "can not find file in \windows\pic1.2bp,...".

But if my help file does not include the picture, I can
open the help file using CreateProcess(...).

What is the problem?

the help.htm code:
==================

<html>
<head>
<title>Step 1</title>
</head>
<body>
<p>Start the application by select</p>
<p><img src="pic1.2bp"></p>
<p><img src="pic2.2bp"></p>
</body>
</html>