Beta FNX
Beta FNX
When trying to use the beta version I find that I can only use the "Help" button once and then only when I first start. If I type anything or even look at "Help" when I start I cannot go back to it if I need to refer to it. Has anyone else had this problem. If so is there a work-around.
Mel...
Mel...
Beta FNX
Hi Papi, I was looking into this last night (for me, I am GMT-5), and I had it work right for a few times.? I have looked at the sorcre code for the editior, but I am afraid that I can`t figure out what is happening.? API calls are still a great mystery to me.? Maybe Marco can give us some help when he has the time.
Mel....
Mel....
Beta FNX
Hi, I think i found a solution for it,
put this code somewhere at the top of the program:
Declare HtmlHelp as "HtmlHelpA" of "hhctrl.ocx"
hwnd As Long
pszFile As String
uCommand As Long
dwData As Long
end declare
If that is don replace the sub help with this:
sub help
htmlhelp.hwnd=f.hwnd
htmlhelp.pszfile="fnxbasichelp.chm"
htmlhelp.execute
end sub
This is an api function special to open help files.
I hope this will help
best regards
put this code somewhere at the top of the program:
Declare HtmlHelp as "HtmlHelpA" of "hhctrl.ocx"
hwnd As Long
pszFile As String
uCommand As Long
dwData As Long
end declare
If that is don replace the sub help with this:
sub help
htmlhelp.hwnd=f.hwnd
htmlhelp.pszfile="fnxbasichelp.chm"
htmlhelp.execute
end sub
This is an api function special to open help files.
I hope this will help
best regards
Beta FNX
This will work if the Editor and Examples folder is in
the same dir. as your compiler :
Declare HtmlHelp as "HtmlHelpA" of "hhctrl.ocx"
hwnd As Long
pszFile As String
uCommand As Long
dwData As Long
end declare
` replace your sub help with this:
sub help
htmlhelp.hwnd=f.hwnd
if htmlhelp.pszfile="..fnxbasichelp.chm" then
htmlhelp.execute
else htmlhelp.pszfile=".fnxbasichelp.chm"
htmlhelp.execute
end if
end sub
:-*
the same dir. as your compiler :
Declare HtmlHelp as "HtmlHelpA" of "hhctrl.ocx"
hwnd As Long
pszFile As String
uCommand As Long
dwData As Long
end declare
` replace your sub help with this:
sub help
htmlhelp.hwnd=f.hwnd
if htmlhelp.pszfile="..fnxbasichelp.chm" then
htmlhelp.execute
else htmlhelp.pszfile=".fnxbasichelp.chm"
htmlhelp.execute
end if
end sub
:-*