Search found 276 matches: navigate

Return to advanced search

Re: Ajustar contenido página web en control TDockPnel

... = DLGC_WANTALLKEYS oDlg:oClient = oActiveX ACTIVATE DIALOG oDlg CENTERED ; ON INIT ( oDlg:Resize(), oActiveX:Silent := .T., oActiveX:Navigate( cURL ) ) RETURN NIL Regards, saludos.
by karinha
Sun Sep 19, 2021 1:59 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ajustar contenido página web en control TDockPnel
Replies: 22
Views: 2087

Re: today problem with savetodbf

'Silvio, but before you can save a record you have to navigate to the recNo METHOD GoTo( nRecNo ) or insert a new record. METHOD Append() Why don't you create a function, SAVE () and pass your data? There you open your database again and save everything. ...
by Silvio.Falconi
Thu Aug 19, 2021 4:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: today problem with savetodbf
Replies: 19
Views: 950

Re: today problem with savetodbf

'Silvio, but before you can save a record you have to navigate to the recNo METHOD GoTo( nRecNo ) or insert a new record. METHOD Append() Why don't you create a function, SAVE () and pass your data? There you open your database again and save everything. ...
by Otto
Thu Aug 19, 2021 4:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: today problem with savetodbf
Replies: 19
Views: 950

Re: How to exchange data between web client and FW

Dear Antonio,

Querying the INPUT form from FIVEWIN works. But what does not work is to navigate the form with the keyboard.
Is that a problem with web control? When I open the HTML page in Internet Explorer, the navigation works - but not with activeX.

Best regards,
Otto
by Otto
Fri Jul 23, 2021 10:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to exchange data between web client and FW
Replies: 7
Views: 666

Re: New FTDN February/Febrero 2021 (FWH 21.02) revised 01

... * TPanel: Enhancement. Till now it was not possible to navigate between the controls of a panel and its parent window with tab/enter/up/down keys. Now the controls of the panel and the container window/dialog ...
by Antonio Linares
Fri Apr 02, 2021 4:49 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN February/Febrero 2021 (FWH 21.02)
Replies: 2
Views: 1474

Re: Make para BCC10

... Open a console window: Start | Run... (or click the search box in Windows 10) Type "cmd" into the field [Enter] Create a directory or navigate to where you want to store your source, for example: Type "cd" Type "mkdir MySource" cd Mysource (Now in “c:\users\You\MySource” ...
by cnavarro
Sun Mar 28, 2021 5:24 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Make para BCC10
Replies: 7
Views: 1121

Re: Ajustar contenido página web en control TDockPnel

... oParent, "Shell.Explorer.2", nT, nL, nW, nH ) oActivex:Silent := .T. // aqui silence... en el script. oActiveX:Do( "Navigate", cUrl ) oActivex:SetFocus() WHILE oActivex:Busy SysWait(.2) ENDDO oActiveXdo := oActiveX:Document() oHttp := oActiveX:GetProp( ...
by karinha
Sun Feb 07, 2021 1:28 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ajustar contenido página web en control TDockPnel
Replies: 22
Views: 2087

Re: Talk.to chat in ActiveX

ACTIVATE DIALOG oDlg CENTERED ;
ON INIT MsgWait( ( oActiveX:Silent := .T., ;
oAcTiveX:Do("NAVIGATE", cUrl ) ), ;
"AGUARDE UM MOMENTO POR FAVOR...", 2.0 )
by karinha
Tue Feb 02, 2021 7:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Talk.to chat in ActiveX
Replies: 19
Views: 1456

COMO ABRIR UNA WEB CON CHROME

... RETURN mResultado END WITH OBJECT oIE :Visible := .F. :ToolBar := .F. :StatusBar := .F. :MenuBar := .F. :FullScreen := .F. :Invoke( "Navigate", cURL ) END WITH TRY oIE:Navigate2( cUrl ) CATCH oErr TRY oIE:Navigate( cUrl ) CATCH oErro END END WHILE oIE:Busy SysWait(1) SysRefresh() ...
by CARLOS ATUNCAR
Fri Dec 18, 2020 1:26 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: COMO ABRIR UNA WEB CON CHROME
Replies: 2
Views: 809

Re: Inhabilitar columna en xBrowse - Disable column in xBrowse

... sin cambiar posicion de columnas en el browse. With the above code you can set multiple columns as long as they are contiguous. The idea is to navigate only in certain columns, whether they are contiguous or not. This means do it without changing the position of the columns in the browse.
by FranciscoA
Sat Sep 19, 2020 3:30 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Inhabilitar columna en xBrowse - Disable column in xBrowse
Replies: 8
Views: 1077

Inhabilitar columna en xBrowse - Disable column in xBrowse

... Hi all. Is it possible to disable certain columns in xBrowse? It is required that in a 5-column xBrowse, disable 2, 4 and 5, and thus be able to navigate only in columns 1 and 3. Thanks,
by FranciscoA
Sat Sep 19, 2020 2:24 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Inhabilitar columna en xBrowse - Disable column in xBrowse
Replies: 8
Views: 1077

Re: New mod_harbour "viewer"

This is interesting, but I would like to know on which browser the viewer is based. Isn't dangerous to navigate the web without protection?

EMG
by Enrico Maria Giordano
Mon Jul 06, 2020 3:03 pm
 
Forum: mod_harbour
Topic: New mod_harbour "viewer"
Replies: 10
Views: 1698

Re: xBrowse and SQLRDD bug

Thank you very much for your time and support. With the changes you have sent me, it is possible to navigate in the xBrowse by moving the vertical scroll bar. The only remaining problem is if I perform a DbGoBottom() and then call xBrowse, the vertical scroll bar still appears ...
by MOISES
Wed Apr 29, 2020 5:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse and SQLRDD bug
Replies: 18
Views: 2438

Re: xBrowse: bOnRowLeave

cnavarro wrote:Try with bLButtonUp


Doesn't work when navigating with keyboard. If navigate with mouse it'll also return the current row not the previous active row
by hua
Fri Apr 17, 2020 3:31 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse: bOnRowLeave
Replies: 7
Views: 1165

Re: Mr. Nages please: HARU PDF Bugs/Extensions

... speicified the image is centered. 12) cURL: Ignored by TPrinter. In case of FWPdf, if a URL is specified, clicking on the image on the pdf will navigate to the URL. Example: Build pdfharu1.prg and click on olga's image. We highly recommend using the command syntax for this method: #xcommand ...
by nageswaragunupudi
Thu Mar 05, 2020 5:18 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mr. Nages please: HARU PDF Bugs/Extensions
Replies: 21
Views: 5611
PreviousNext

Return to advanced search