HB_WebView (a cross-platform Webview library)
- srvet_claudio
- Posts: 2220
- Joined: Thu Feb 25, 2010 8:43 pm
- Location: Uruguay
- Contact:
Re: HB_WebView (a cross-platform Webview library)
Hi Serge,
Yes please send me.
Yes please send me.
- serge_girard
- Posts: 3308
- Joined: Sun Nov 25, 2012 2:44 pm
- DBs Used: 1 MySQL - MariaDB
2 DBF - Location: Belgium
- Contact:
Re: HB_WebView (a cross-platform Webview library)
Send!
There's nothing you can do that can't be done...
- srvet_claudio
- Posts: 2220
- Joined: Thu Feb 25, 2010 8:43 pm
- Location: Uruguay
- Contact:
Re: HB_WebView (a cross-platform Webview library)
Hi all,
I've added a new demo.
demo6.prg: You can navigate the directory tree and open files that are in the list of allowed extensions (new instances of HB_WebView are created entirely from Javascript code).
Download code from: https://www.hmgforum.com/viewtopic.php?p=71617#p71617
I've added a new demo.
demo6.prg: You can navigate the directory tree and open files that are in the list of allowed extensions (new instances of HB_WebView are created entirely from Javascript code).
Download code from: https://www.hmgforum.com/viewtopic.php?p=71617#p71617
- Attachments
-
- demo6.png (93.07 KiB) Viewed 3015 times
- serge_girard
- Posts: 3308
- Joined: Sun Nov 25, 2012 2:44 pm
- DBs Used: 1 MySQL - MariaDB
2 DBF - Location: Belgium
- Contact:
Re: HB_WebView (a cross-platform Webview library)
thanks !
There's nothing you can do that can't be done...
- serge_girard
- Posts: 3308
- Joined: Sun Nov 25, 2012 2:44 pm
- DBs Used: 1 MySQL - MariaDB
2 DBF - Location: Belgium
- Contact:
Re: HB_WebView (a cross-platform Webview library)
HB_WebView.docx is causing a problem!
Serge
Serge
There's nothing you can do that can't be done...
- srvet_claudio
- Posts: 2220
- Joined: Thu Feb 25, 2010 8:43 pm
- Location: Uruguay
- Contact:
Re: HB_WebView (a cross-platform Webview library)
Thanks for report Serge,
the .docx does not open or crash ?
Perhaps it's because it was written in LibreOffice, not Word.
It has the same content as the HB_WebView.pdf
Best regards,
Claudio
- serge_girard
- Posts: 3308
- Joined: Sun Nov 25, 2012 2:44 pm
- DBs Used: 1 MySQL - MariaDB
2 DBF - Location: Belgium
- Contact:
Re: HB_WebView (a cross-platform Webview library)
ok, it opens well in LibreOffice but not in Word... I use both!
Serge
Serge
There's nothing you can do that can't be done...
- srvet_claudio
- Posts: 2220
- Joined: Thu Feb 25, 2010 8:43 pm
- Location: Uruguay
- Contact:
Re: HB_WebView (a cross-platform Webview library)
Thanks Sergeserge_girard wrote: ↑Sun Mar 30, 2025 4:08 pm ok, it opens well in LibreOffice but not in Word... I use both!
Serge
- serge_girard
- Posts: 3308
- Joined: Sun Nov 25, 2012 2:44 pm
- DBs Used: 1 MySQL - MariaDB
2 DBF - Location: Belgium
- Contact:
Re: HB_WebView (a cross-platform Webview library)
Claudio,
Demo6 - function sortTable( cID, n )
There is some strange sorting going on when sorting on NAME.
DATE is perfect.
Serge
Demo6 - function sortTable( cID, n )
There is some strange sorting going on when sorting on NAME.
DATE is perfect.
Serge
There's nothing you can do that can't be done...
- srvet_claudio
- Posts: 2220
- Joined: Thu Feb 25, 2010 8:43 pm
- Location: Uruguay
- Contact:
Re: HB_WebView (a cross-platform Webview library)
Hi Serge,serge_girard wrote: ↑Sun Mar 30, 2025 4:31 pm Claudio,
Demo6 - function sortTable( cID, n )
There is some strange sorting going on when sorting on NAME.
DATE is perfect.
Serge
It must be because when sorting by name it is actually sorted by (attribute + name), it must be some attribute not considered.
Please run the following function with the problematic path and email me the resulting file: file_list.txt
Tell me the name of the problematic file.
e.g.
saveDir( "C:\hmg.3.6" )
Code: Select all
FUNCTION saveDir( path )
LOCAL aFiles := directory ( path + "\*.*", "D" )
t = hb_jsonEncode( aFiles, .T. )
hb_memowrit("file_list.txt", t )
Msgdebug( t )
RETURN t