Search found 16 matches: loadpages

Return to advanced search

Re: Call Center - Slow Application Launch

... you get troubles, then I will explain you an alternative way to redefine the controls in each tab (the idea would be to use Class TFolder METHOD LoadPages( aResNames, bRedefineControls ))
by Antonio Linares
Sat Jun 21, 2014 1:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Call Center - Slow Application Launch
Replies: 17
Views: 4451

Re: Folder en Ventana Principal ¡¡¡Ayuda!!

Marcelo, Disculpa, no me di cuenta de que el folder es hijo de la ventana principal. En tal caso tienes el método LoadPages( aResNames, bRedefineControls ) que es precisamente para eso: oFolder:LoadPages(  { "DATOS" }, { || RedefineLosControles( ...
by Antonio Linares
Tue Feb 09, 2010 1:27 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Folder en Ventana Principal ¡¡¡Ayuda!! (Solucionado)
Replies: 7
Views: 996

tTitle problem on windows xp - fwh9.10

... Called from: K:\pigc\ADDON32\UPDATED2\FOLDER.PRG => TFOLDER:DELPAGES(616) Called from: K:\pigc\ADDON32\UPDATED2\FOLDER.PRG => TFOLDER:LOADPAGES(698) Called from: K:\pigc\CNDM01\MOD112C.PRG => MOD112C(198) Called from: K:\pigc\CNDM00\MOD0.PRG => (b)MOD0(193) Called from: .\source\classes\BTNBMP.PRG ...
by Marco Turco
Tue Nov 03, 2009 4:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: tTitle problem on windows xp - fwh9.10
Replies: 2
Views: 895

Re: Ocultar Tab de un Folder

... borras todos tab del folder oFolder:Delpages() //--> cargas los dialogos que necesites. los nombres estan almacenados en un arreglo oFolder:LoadPages( aDlgs, { | oFld, nPage | DefCtrls( nPage, aDlgs[nPage] ) }) //--> igual pudedes cambiarle los nombres a cada tab oFolder:aPrompts = aProm ...
by VPOZO
Wed Oct 14, 2009 3:13 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ocultar Tab de un Folder
Replies: 5
Views: 1291

Re: Actualizacion DIALOGS de Folder

... en este caso oFld:aDialogs[2]:update() RETURN (NIL) hice la prueba con esta opcion pero solo me cambia este recurso y elimina las demas oFld:LoadPages( {"SACS_A" },)
by maecmx
Sun Jun 07, 2009 5:43 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Actualizacion DIALOGS de Folder
Replies: 3
Views: 484

... folder, the following error appairs. Note that in this specific situation I create the folder at runtime with: oFld:=tFolder():New(...... oFld:LoadPages(....... oFld:SetPrompt(..... Any ideas ? ----- Application =========== Path and name: K:\ACTIVEXP\ACTIVEXP.Exe (32 bits) Size: 3,473,920 bytes ...
by Marco Turco
Tue Oct 21, 2008 7:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problems with FWH 8.10
Replies: 8
Views: 1693

Marco,

You have to modify Class TFolder Method LoadPages to admit a third parameter:

METHOD LoadPages( aResNames, bRedefineControls, lResize16 ) CLASS TFolder

and then issue an ACTIVATE DIALOG oDlg ... RESIZE16 if lResize16 is true
by Antonio Linares
Fri Jun 08, 2007 2:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: oFld:LoadPages and RESIZE16
Replies: 1
Views: 592

oFld:LoadPages and RESIZE16

Hi,
is there any way to apply the RESIZE16 clause to folder pages loaded from resources ?

Thanks in advance.

Best Regards,

Marco Turco
by Marco Turco
Fri Jun 08, 2007 12:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: oFld:LoadPages and RESIZE16
Replies: 1
Views: 592

... método SetDate( dDate, lEmpty ) de la clase TDTPicker acepta un segundo parámetro lógico para especificar una fecha vacia. * Corrección: El método LoadPages() de la clase TFolder está poniendo correctamente el ancho y la altura de las páginas cargadas, y los brushes de las páginas. * Mejora: En ...
by Antonio Linares
Fri May 18, 2007 11:00 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN May/Mayo 2007
Replies: 1
Views: 3888

New FTDN May/Mayo 2007

... objects. Class TDTPicker Method SetDate( dDate, lEmpty ) accepts a second logical parameter to specify an empty date * Fix: Class TFolder Method LoadPages() is properly setting the width and height of the loaded pages, and the pages brush. * Enhancement: FWH, FWPPC, function lIsDir() source code ...
by Antonio Linares
Thu May 17, 2007 10:08 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN May/Mayo 2007
Replies: 1
Views: 3888

Risolto, in pratica ho sempre definito i btnbmp nel file RC come bitmap. Questo non mi ha mai creato problemi ma con il metodo LoadPages il programma va in errore.

Ho ridefinito nel file RC i btnbmp come "TBtnBmp" invece che come "TBitmap" ed ora funziona tutto regolarmente.

Grazie

Saluti

Marco
by Marco Turco
Mon Apr 30, 2007 7:23 am
 
Forum: All products support
Topic: Creare un folder tramite codice ed le pagine da RC
Replies: 8
Views: 1834

Provo a chiedere sul news inglese.
Forse il metodo LoadPages non è stato aggiornato da un pò.

Grazie

Marco
by Marco Turco
Sat Apr 28, 2007 5:11 pm
 
Forum: All products support
Topic: Creare un folder tramite codice ed le pagine da RC
Replies: 8
Views: 1834

Creating folder form source and pages from resources

... the pages from an rc file. I take a look to the Fivewin sample testfld5.prg (provided in the sample FWH directory) that make this with the method LoadPages but only the first page is displayed. Any ideas ? Is there any problem using the method LoadPages as you know ? I'm working with the latest ...
by Marco Turco
Sat Apr 28, 2007 5:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating folder form source and pages from resources
Replies: 12
Views: 2720

Creare un folder tramite codice ed le pagine da RC

... effetti nella cartella Sample di Fivewin c'è un esempio che mostra come procedere (testfld5.prg) creando prima il folder e poi con il metodo oFld:LoadPages richiama le risorse. Il problema è che l'esempio non funziona, appare infatti solo la prima pagina. Qualche idea ? Il file di esempio in questione ...
by Marco Turco
Sat Apr 28, 2007 10:15 am
 
Forum: All products support
Topic: Creare un folder tramite codice ed le pagine da RC
Replies: 8
Views: 1834

... CODE 0009:A768 00517H TFOLDER CODE 0009:AC80 00055H SYSWAIT CODE 0009:ACD6 00214H ADDITEM CODE 0009:AEEA 00040H DELPAGES CODE 0009:AF2A 00153H LOADPAGES CODE 0009:B07E 001ACH TBRUSH CODE 0009:B22A 00824H TSCROLLBAR CODE 0009:BA4E 0019AH WINNEW CODE 0009:BBE8 00023H SETPAGE CODE 0009:BC0C 0015CH ...
by Connan
Fri Mar 03, 2006 10:28 am
 
Forum: FiveWin para CA-Clipper
Topic: GPF, como buscar el Error
Replies: 3
Views: 3529
Next

Return to advanced search