Search found 20 matches: mybrowse

Return to advanced search

Re: xbrowse custom myBrowse

Look Here, It could help, https://forums.fivetechsupport.com/viewtopic.php?f=3&t=41749&hilit=subclass&start=15#p250334 I made it now and it run ok but for one method I must use ovverride procedure because I must re-write a xbrowse method or on each upgrade I must add some lines ... it i...
by Silvio.Falconi
Sun Feb 26, 2023 5:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse custom myBrowse
Replies: 2
Views: 216

xbrowse custom myBrowse

I need to create a class associated with Xbrowse that does not collide with any future changes to xbrowse but I don't know how to do it, every time I have an update I have to rewrite everything I need, in particular I have to add some DATA and some Methods, modify a method of xbrowse (with ovverride...
by Silvio.Falconi
Sat Feb 25, 2023 3:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse custom myBrowse
Replies: 2
Views: 216

Re: FWH WebApp (HTML) testing

... without having to run it first on Five, example: #include "FiveWin.ch"function Main()   SetWebApp()return nilfunction MyBrowse()  USE Customer  Browse()   // at this point, please go to "localhost" from your web browser  return nil  In Web ...
by Ari
Wed Aug 31, 2022 12:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH WebApp (HTML) testing
Replies: 32
Views: 2342

Re: xbrows function

... of my program is used from inside xbrowses.... You use autocode for generating xbrowses, but I'm looking (thinking) into a other way. oBrowse:= MyBrowse("Customers") and from this point in code I think to generate a function that will retrieve ALL possible data from a Xbrowse (setup/maintenance) ...
by Marc Venken
Mon Dec 06, 2021 8:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrows function
Replies: 3
Views: 614

Re: Compiling 3 PRGs with BUILDX

... .path.C = .\ .path.RC = .\ # PRG - Files # --------------------- PRG = \ $(program).PRG \ sql.PRG \ procedur.PRG \ mybrowse.PRG \ xbrowse.PRG # C - Files # --------------------- # C = \ # two.C \ # three.C PROJECT : $(program).EXE $(program).EXE : $(PRG:.PRG=.OBJ) ...
by avista
Fri Apr 25, 2014 7:45 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Compiling 3 PRGs with BUILDX
Replies: 3
Views: 587

Re: Setting a Standard

... #include "fivewin.ch"#include "xbrowse.ch"//------------------------------------------------------------------//CLASS MyBrowse FROM TXBrowse   CLASSDATA lRegistered AS LOGICAL // This is compulsory for derived classes   DATA bColClass INIT { ...
by nageswaragunupudi
Fri Jul 19, 2013 12:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Setting a Standard
Replies: 6
Views: 1924

Re: FiveWeb de FiveTech (gratis hasta la versión 1.0)

... 2: N 10 Param 3: N 980 Param 4: N 477 Param 5: O Class: TDIALOG Param 6: C "oBrw" Param 7: C "http://www.fivetechsoft.net/fiveweb/mybrowse.php?name=clients" Local 1: U nil Local 2: S Local 3: U nil Local 4: U nil Local 5: U Linked RDDs Saludos! Roberto
by Rolaci
Mon Mar 25, 2013 4:28 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FiveWeb de FiveTech (gratis hasta la versión 1.0)
Replies: 279
Views: 62585

Re: FiveWeb de FiveTech (gratis hasta la versión 1.0)

Me sucede lo mismo, http://localhost/FiveWeb/source/php/mybrowse.php?name=clientes_dbf al parecer un <div> no se encuentra..... ?'<div id="oBrw" style="position: absolute; top: 10px; left: 10px; width: 980px; height: 477px; ...
by Bayron
Sun Jan 27, 2013 12:37 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: FiveWeb de FiveTech (gratis hasta la versión 1.0)
Replies: 279
Views: 62585

Re: FiveWeb de FiveTech (gratis hasta la versión 1.0)

... que con solo cambiar la URL debe de funcionar, @ 10, 10 BROWSE oBrw SIZE 980, 477 OF oDlg ;      URL "http://localhost/mybrowse.php?name=alumnos" el archivo MyBrowse.php lo he colocado en la carpeta: c:\xampp\htdocs\MyBrowse.php modifique la linea de conexion el ...
by sysctrl2
Sat Jan 26, 2013 8:16 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FiveWeb de FiveTech (gratis hasta la versión 1.0)
Replies: 279
Views: 62585

oBrw:ToExcel() error ACTIVESHEET:CELLS/0 S_OK: _FORMULA

... =========== Called from: source\rtl\win32ole.prg => TOLEAUTO:_FORMULA(0) Called from: .\xbrowse.PRG => TXBROWSE:TOEXCEL(6871) Called from: .\mybrowse.PRG => (b)EXCELMENU(457) Called from: .\source\classes\MENU.PRG => TMENU:ACTIVATE(474) Called from: .\source\classes\BTNBMP.PRG => ...
by avista
Thu Apr 26, 2012 1:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: oBrw:ToExcel() error ACTIVESHEET:CELLS/0 S_OK: _FORMULA
Replies: 7
Views: 3431

Re: TXBrwColumn : changing and restoring a method

... the Edit method of the column class. If so follow this template: //------------------------------------------------------------------//CLASS MyBrowse FROM TXBrowse   // please note these following two lines   CLASSDATA lRegistered AS LOGICAL // This is compulsory for derived classes   DATA ...
by nageswaragunupudi
Sat Aug 13, 2011 7:09 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TXBrwColumn : changing and restoring a method
Replies: 11
Views: 1709

Re: XBrowse Win7 Bar New Sample

... is a function which returns the class object TXBrowse() by default. If we set a different browse class with the statement SetXBrowse( { || MyBrowse() } then it returns the class object MyBrowse(). When we write the code: TXBrowse():New() Message new is sent to the class object returned ...
by nageswaragunupudi
Thu Jan 06, 2011 4:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse Win7 Bar New Sample
Replies: 61
Views: 13475

Re: XBrowse Win7 Bar New Sample

... It does NOT accept any other paramters TXBrows():New( oWnd ) is equivalent to TXBrowse():new( oWnd ) normally After executing SetXBrowse( { || MyBrowse() } , TXBrows():New( oWnd ) is equivalent to MyBrowse():New( oWnd ) This provides a mechanism to use our subclass with only one stantement ...
by nageswaragunupudi
Thu Jan 06, 2011 4:19 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse Win7 Bar New Sample
Replies: 61
Views: 13475

Re: XBrowse Win7 Bar New Sample

... preprocessor translates it anyways. Moreover. Imagine a data driven xbrowse, which receives parameters from any part of the application, like : MyBrowse( oData,aColumns,aSizes,aPictures,xRights,aSearch,bOnLClick,aM_Bitmaps) Where the arrays could have nil values, because you can use a default ...
by Adolfo
Mon Jan 03, 2011 12:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse Win7 Bar New Sample
Replies: 61
Views: 13475
Next

Return to advanced search

cron