Jump to content

Help File


botanic
 Share

Recommended Posts

This is what I made: Give credit to Me! It took me a long time to make it:

CODE

#include <GUIConstants.au3>

#include <IE.au3>

FileDelete(@ScriptDir&"\HelpTest.html")

Filewrite(@ScriptDir&"\HelpTest.html", "Yeah! It works good!!!")

$FirstFile = @ScriptDir&"\HelpTest.html"

$Form1 = GUICreate("Program Help File", 636, 415, 193, 115)

$Obj1 = ObjCreate("Shell.Explorer.2")

$Obj1_ctrl = GUICtrlCreateObj($Obj1, 216, 0, 418, 412)

$ListView1 = GUICtrlCreateListView("Help File Index", 0, 0, 210, 406)

$List1 = GUICtrlCreateListViewItem("Help!",$ListView1)

GUISetState(@SW_SHOW)

While 1

$nMsg = GUIGetMsg()

Switch $nMsg

Case $GUI_EVENT_CLOSE

Exit

Case $List1

_IENavigate($Obj1, $FirstFile)

EndSwitch

WEnd

Link to comment
Share on other sites

It is very unnessecery to make a helpfile with AutoIt while others are free and looking professional. Most of the program's helpfile are made with one of those freeware. Making one in AutoIt is a waste of time except you want lots of special features in it which interacts with your program.

Link to comment
Share on other sites

  • Developers

How can I make a helpfile for my program like the one in scite ect?

I use Frontpage to created the Webpages and microsofts freeware utility "HTML Help Workshop" to generate the Helpfile.

Jos

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...