Search found 276 matches: navigate

Return to advanced search

Re: download iPhone Photo connect to PC

... Problem : when click on Node it open Sub-Folder but click on Node in Sub-Folder fail ... Workaround : open "all" Sub-Folder and navigate to "last" my Workaround is Ok when have "just" 1 x Sub-Folder but it can be "more" --- #include "FIVEWIN.CH"* ...
by Jimmy
Mon Nov 28, 2022 5:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: download iPhone Photo connect to PC
Replies: 14
Views: 1008

Re: Newbie Question : XBROWSE

i "just" want to open DBF as "Viewer" and navigate in DBF If this is the only purpose, the best way is XBROWSER cFileDBF [FASTEDIT] [AUTOSORT] This command opens the DBF, browses and then closes the DBF. Optional FASTEDIT ...
by nageswaragunupudi
Sat Nov 26, 2022 8:30 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Newbie Question : XBROWSE
Replies: 17
Views: 1490

Re: Newbie Question : XBROWSE

... the DBF immediately after the ACTIVATE WINDOW, Close the DBF in the VALID close of ACTIVATE WINDOW ACTIVATE WINDOW oWnd VALID YES, now i can navigate in DBF without crash, thx :D
by Jimmy
Fri Nov 25, 2022 10:09 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Newbie Question : XBROWSE
Replies: 17
Views: 1490

Re: Newbie Question : XBROWSE

... thx for Answer. as i can see you do define Column but i do not know Structure of DBF i "just" want to open DBF as "Viewer" and navigate in DBF For this, simply so : xbrowser("dbf") later for extra's look at samples of xbrowser : Xbrowser is the shorter function version ...
by Marc Venken
Fri Nov 25, 2022 10:01 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Newbie Question : XBROWSE
Replies: 17
Views: 1490

Re: Newbie Question : XBROWSE

hi Marc,

thx for Answer.

as i can see you do define Column but i do not know Structure of DBF
i "just" want to open DBF as "Viewer" and navigate in DBF
by Jimmy
Fri Nov 25, 2022 9:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Newbie Question : XBROWSE
Replies: 17
Views: 1490

Questions about WebView

Hi, 1. In IE I can get the web page document so oIE:GetProp("Document"). Can I do this in WebView ? 2/ There is a Navigate method in the WebView class. Is it possible to use it to download HTML text from a file ? 3. When I launch WebView, a standard window opens. Is it possible ...
by Natter
Wed Nov 23, 2022 1:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Questions about WebView
Replies: 26
Views: 1634

Re: mod_harbour com firebird

... The Class implementation has no all implementation like TMysql has, because Firebird it's diferent. For example, you cannot navigate in records like Mysql do, ex: Getrow( number of row ), in firebird you can just go forward. TODO: Full implementation of blob control. For ...
by Antonio Linares
Sat Nov 19, 2022 9:32 am
 
Forum: mod_harbour
Topic: mod_harbour com firebird
Replies: 1
Views: 391

Re: Position of Window CENTER ?

... is not "exact" what i mean a.) Use click "OK" b.) User change "any" Selection (need Focus), most using TAB to navigate in a Window Form and "click" while Mouse Cursor stay "over" BUTTON to "save" so Mouse Cursor is not the same ...
by Jimmy
Mon Nov 14, 2022 12:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Position of Window CENTER ?
Replies: 10
Views: 508

Re: Harbour Writer

Now we have added a table to navigate the stored source code blocks. You can "search" and also sort by title, category or language. If you click on a line in the table, a preview image, the description of the block and the source ...
by Otto
Thu Sep 15, 2022 9:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Harbour Writer
Replies: 14
Views: 1099

Re: Harbour Writer

Now we have added a table to navigate the stored source code blocks. You can "search" and also sort by title, category or language. If you click on a line in the table, a preview image, the description of the block and the source ...
by Otto
Thu Sep 15, 2022 9:10 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Harbour Writer
Replies: 14
Views: 1099

XBROWSE and any Key

... TVURL->TVURL ) }  // dupe ?      oBrw:bchange := { || Do_Store() }      oBrw:CreateFromCode() i can navigate with Cursor or Mouse and use ENTER or Dblckick. but when type any a-z 1-0 Position in XBROWSE it "move" ... Position not "match" ...
by Jimmy
Sun Jul 31, 2022 8:54 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE and any Key
Replies: 9
Views: 715

Re: IE

Solved :-)

oWebView:Navigate( "data:text/html;base64," + hb_base64Encode( hb_memoRead( "my.html" ) ) )
by Antonio Linares
Sat Jun 04, 2022 11:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: IE
Replies: 39
Views: 1721

Re: IE

In webview docs we find this: // Navigates webview to the given URL. URL may be a properly encoded data URI. // Examples: // webview_navigate(w, "https://github.com/webview/webview"); // webview_navigate(w, "data:text/html,%3Ch1%3EHello%3C%2Fh1%3E"); // webview_navigate(w, "...
by Antonio Linares
Sat Jun 04, 2022 11:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: IE
Replies: 39
Views: 1721

Re: IE

Dear Yuri,

If you upload your HTML file to your hosting server and then use webview to navigate to it, it works fine. I just tested it.

But if we try to load it reading the file, then it crashes. Not sure why. We have noticed that with other HTML files too and still we
are wondering why.
by Antonio Linares
Sat Jun 04, 2022 11:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: IE
Replies: 39
Views: 1721

Re: IE

Antonio, excuse me, I sent you an html file by email. hb_DynCall( { "webview_navigate", pLib, ; hb_bitOr( HB_DYN_CTYPE_VOID, hb_SysCallConv() ),; HB_DYN_CTYPE_VOID_PTR, HB_DYN_CTYPE_CHAR_PTR },; hWebView, "data:text/html,"+CRLF+filestr("my.html"))
by Natter
Sat Jun 04, 2022 10:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: IE
Replies: 39
Views: 1721
PreviousNext

Return to advanced search