Search found 32 matches: htmlhelp

Return to advanced search

error with chm files

... search on Internet If there are problems with new Windows and i found on a site this but I not understood [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\HTMLHelp] [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\HTMLHelp\1.x\ItssRestrictions] "UrlAllowList"="u:\\productmanuals\\helpfiles;file://u:\\productmanuals\\helpfiles" ...
by Silvio.Falconi
Sat May 16, 2015 7:48 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: error with chm files
Replies: 6
Views: 1064

Re: problema con archivos .CHM

... drives windows .chm files can not be loaded from network drives by default, this can be very annoying. [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\HTMLHelp\1.x\ItssRestrictions] "MaxAllowedZone"=dword:00000004 Tal vez lo puedas probar. Seguramente se pueda configurar o preparar un .reg ...
by Carlos Mora
Thu Feb 26, 2015 8:01 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: problema con archivos .CHM
Replies: 12
Views: 2205

Re: Supporting CHM files across a network share

... this problem, on Windows 7, 64-bit. I had to add the UNC path (\\drive\share) to my Trusted Sites zone and set (in HKLM\SOFTWARE\Microsoft\HTMLHelp\1.x\ItssRestrictions) MaxAllowedZone to 0x02, not 0x01. I hope that this helps someone else. Source: KB 896054, which has a handy table of ...
by StefanHaupt
Wed Feb 09, 2011 1:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Supporting CHM files across a network share
Replies: 7
Views: 2335

Re: HTMLHelp

I think i may have fixed the compiling problem by using this instead: DLL32 Function HTMLHelp( ; hWnd As LONG, cChmFile As LPSTR, nCommand As LONG, nTopic As LPSTR) ; As LONG PASCAL From "HtmlHelpA" Lib "hhctrl.ocx" I copied this from the \FWH\source\winapi\help32.prg ...
by PeterHarmes
Tue Jun 08, 2010 10:01 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: HTMLHelp
Replies: 1
Views: 380

HTMLHelp

... hb_parnl( 3 ), hb_parc( 4 ) ); full function below: #pragma BEGINDUMP #include <windows.h> #include <hbapi.h> typedef LONG PASCAL ( * PHTMLHELP ) ( HWND, LPSTR, LONG, LPSTR ); HB_FUNC( HTMLHELP ) { HINSTANCE hDLL = LoadLibrary( "hhctrl.ocx" ); PHTMLHELP pHTMLHelp = ( PHTMLHELP ...
by PeterHarmes
Tue Jun 08, 2010 9:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: HTMLHelp
Replies: 1
Views: 380

Re: Help to complete the wiki and get a free FWH 9.07 !!!

... and commands: GetHelpFile() GetHelpPopup() GetHelpTopic() HelpCtrlhWnd() HelpIndex() HelpPopup() HelpSearch() HelpSetPos() HelpSetTopic() HTMLHelp() SetHelpFile() SetHelpPopup() WinHelp() C2Hex() L2Hex() I2Hex() D2Bin() alert() aMidiDevices() aTcBrwPosRect() SET HELPFILE TO SET HELP TOPIC
by byte-one
Tue Aug 25, 2009 10:05 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help to complete the wiki and get a free FWH 9.07 !!!
Replies: 80
Views: 14250

Problem launching CHM help file

I get a GPF with the following: #define HH_DISPLAY_INDEX 2 HTMLHelp( oWnd:hWnd, "RMCHART.CHM", HH_DISPLAY_INDEX, 0 ) OR... HTMLHelp( 0, "RMCHART.CHM", HH_DISPLAY_INDEX, 0 ) I also get a GPF if I include the full path to RMCHART.CHM. Before getting the ...
by Roger Seiler
Wed Apr 09, 2008 1:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem launching CHM help file
Replies: 4
Views: 795

! Solucionado ! Simplemente comentando estas líneas de codigo: /* DLL32 Function HTMLHelp( ; hWnd As LONG, cChmFile As LPSTR, nCommand As LONG, nTopic As LONG ) ; As LONG From "HtmlHelpA" Lib "hhctrl.ocx" */ Estan líneas pertenecen a prg HELP32.PRG que esta ubicado ...
by MauroArevalo
Wed Jan 02, 2008 4:11 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FWH 712 Error al llamar ayudas tipo chm
Replies: 1
Views: 624

FWH 712 Error al llamar ayudas tipo chm

Antonio: Tengo este codigo : SetKey(VK_F1, {|nKey|HtmlHelp( 0, "\hym32\ayu\ayuda.chm", 2,0 ) }) Y me sucede el siguiente error: http://img180.imageshack.us/img180/2614/errorzs6.th.png [img=http://img180.imageshack.us/img180/2614/errorzs6.th.png] ...
by MauroArevalo
Sat Dec 29, 2007 8:15 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FWH 712 Error al llamar ayudas tipo chm
Replies: 1
Views: 624

POPUP

... = pt; popup.clrForeground = 0; popup.clrBackground = RGB(255, 255, 208); popup.rcMargins = rRect; popup.pszFont = "Arial, 8, ascii, , , "; HtmlHelp(pWnd->GetSafeHwnd(), "hh4mfc.chm::/popups.txt", HH_DISPLAY_TEXT_POPUP, (DWORD)&popup); }
by byte-one
Tue Nov 20, 2007 12:12 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: HTML-Help
Replies: 4
Views: 1643

htmlhelp funcion ok... pero los otros no puedo probarlos.

... Si necesitas un ejemplo de como hacer archivos de ayuda. http://www.mygnet.net/articulos/chm,help/568/ Mi asunto es el siguiente: La función HtmlHelp() trabaja bien. En base al ejemplo HtmlHelp( 0, "c:\fwh\manual\fwclass.chm", 2, 0 ) Pero no se como usar HTMLHelpCtx() y HTMLHelpPopup(). No ...
by fleal
Tue Aug 14, 2007 5:13 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: htmlhelp funcion ok... pero los otros no puedo probarlos.
Replies: 1
Views: 593

ok, I see - that make it a little bit more complicated...

But what I wanted to express is that the
FreeLibrary( hDLL ) line in HB_FUNC( HTMLHELP )
seems to cause the GPF - at least here in my programm I had to remove it.

Same with you??
Dietmar
by Dietmar Jahnel
Sat Aug 11, 2007 12:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: HTMLHelp problem
Replies: 17
Views: 4474

Looks good - as soon as the FreeLibrary( hDLL ); is removed from HB_FUNC( HTMLHELP ).
Right?

Thanks,
Dietmar
by Dietmar Jahnel
Sat Aug 11, 2007 10:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: HTMLHelp problem
Replies: 17
Views: 4474
Next

Return to advanced search