topic
stringlengths
1
63
text
stringlengths
1
577k
toolbar tbitmap urgente pro favor
[quote="tomafa":w4fd1lif]Antonio hice lo que me indicaste me fije en el ejemplo de los samples en fwh y viene la instruccion asi oImageList:AddMasked( TBitmap():Define( "new",, oWnd ), nRGB( 255, 0, 255 ) ) oImageList:AddMasked( TBitmap():Define( "open",, oWnd ), nRGB( 255, 0, 255 ) ) parte de ...
toolbar tbitmap urgente pro favor
Buenas tomafa: Es lo mismo que me pasaba a mi, pero si es el blanco es: RGB(255,255,255) SALUDOS <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> , Miguel A.
tooltip + Vista
Hello, Using some fwh programs on Xp , tooltips works as expected , not on VISTA , at least on mine version (Home Basic , service pack2) Is it a known problem ? Can it be resolved ? Frank Demont Using FWH 8.10
tooltip + Vista
Frank I have no problems with tooltips on my vista home service pack 2 PS : I am using a much more recent fwh version , 9.06 HTH Richard
tooltip + Vista
[quote="Richard Chidiak":28ayf6xc]Frank I have no problems with tooltips on my vista home service pack 2 PS : I am using a much more recent fwh version , 9.06 HTH Richard[/quote:28ayf6xc] Richard , Thanks for the answer , maybe fwh8.10 is the problem Frank
tooltip + Vista
Do you use aero or the classic and standard windows color schemes in vista? Best regards, Otto
tooltip en vista
Antonio y demás Colegas del foro Buena tarde SetBalloon( .T. ) Funciona perfectamente en Win XP pero vista no, no se ven los tooltip Inhabilito SetBalloon( .T. ) y salen bien en todos los PCs pero claro sin el efecto balon ¿Como se puede solucionar? Gracias de antemano Jairo Barbosa
tooltip en vista
Jairo, FWH\samples\Test2007.prg usa SetBalloon() y funciona correctamente en Windows 7. Alguien puede probarlo en Vista ? gracias
tooltip en vista
Antonio Gracias por tu pronta respuesta Asi lo tengo pero no funciona en vista Probare el sample Testt2007 en vista y te entero Cordialmente Jairo
tooltip en vista
hola, Tengo sistemas corriendo en Windows vista Home Premium y esta ok. se ve perfectamente el efecto balloon, FWH 802 + xharbour Saludes desde Managua, Nicaragua Ramon Paredes
tooltip en vista
com Windows Vilta Ultimate Service pack 1, fwh904 + xharbour 1.10 esta perfeito tambem... Ronaldo
tooltip en vista
Antonio El reporte en Windows vista funciono OK Pasa excepcionalmente que en un PC nuevo dell con vista no funciona Es posible que sea algo de configuración, si tu o algún colega que aya tenido esa experiencia y la quiera compartir en el foro, bienvenida es. Gracias Cordialmente Jairo
tooltip on headers xbrowse
it is possible to show tooltips on the headers ones of xbrowse ?
tooltip on headers xbrowse
Not possible right now. I too want that facility
tooltip su say
ciao a tutti,esiste un modo per attivare i tooltips sulle SAY ?o più in generale attivare un tooltip su una determinata area senza controlli attivi?grazie in anticipo, marzio
tooltip su say
Non che io sappia. Un controllo temo ci voglia. E non so se una SAY vada bene. Prova conoSay:cTooltip = "Tuo messaggio"Se non funziona allora prova a metterci intorno un groupbox o qualche altro controllo e metti il tooltip a quello.EMG
tooltip su say
ho già provato:oSay:cToolTip := "messaggio"anche con un GROUP intorno,ma anche sul groupbox non visualizza il tooltip.marzio
tooltip su say
Non mi viene in mente altro, mi dispiace.EMG
tooltip su say
ci vorrebbe un controllo trasparente da mettere sulla say.si puo fare un button trasparente?ho provato:DEFINE BRUSH oBrush STYLE NULL@ n,n BUTTON oBtn ....oBtn:oBrush := oBrushma non diventa trasparente.grazie comunque, marzio
tooltip timing
Is there away to adjust the timing of tooltips? Use FWH909.
tooltip timing
Harvey, Try oWnd:nToolTip. James
tooltip timing
Thanks James: Not sure where to put it and is it to be set to a time oWnd:ntooltip := ???
tooltip timing
Harvey, OK, I should have explained. nTooltip is CLASSDATA of TWindow. This means that it is like a STATIC. All instances of TWindow and any instances of subclasses of TWindow will inherit this instance variable AND and its value. So you only have to set it once in your app. nTooltip defaults to 900 milliseconds. Rem...
tooltip timing
James: ownd:ntoolTip := 1000, doesn't work [code=fw:jxnfeayg]<div class="fw" id="{CB}" style="font-family: monospace;"> <span style="color: #0000ff;">DEFINE</span> <span style="color: #0000ff;">FONT</span> oFont1 <span style="color: #0000ff;">NAME</span> <span style="color: #ff0000;">"tahoma"</span> <span style="colo...
tooltip timing
Harvey, After looking at the code, it appears that nTooltips is only being used with Clipper. I am going to have to look at this more when I have time. James
tooltip timing
Harvey, James, [url:20yncohy]http&#58;//msdn&#46;microsoft&#46;com/en-us/library/bb760404(VS&#46;85)&#46;aspx[/url:20yncohy] We should modify this section of code in FWH\source\classes\window.prg: [code=fw:20yncohy]<div class="fw" id="{CB}" style="font-family: monospace;"><br />         hWnd = CreateToolTip<span styl...
tooltip timing
Antonio: Read the information you sent looked at the code. Looked at window.prg and I cant seem to figure out what to do. <!-- s:cry: --><img src="{SMILIES_PATH}/icon_cry.gif" alt=":cry:" title="Crying or Very sad" /><!-- s:cry: -->
tooltip timing
Harvey, That was not a solution, just the section of code where the solution needs to go. Antonio was requesting feedback on any other properties that we might want to also add at the same time as the timing fix. I haven't looked at the docs yet. James
tooltip timing
Yes I know. This seems to be the location where the attribures of the tooltip take place but the if statement == "A" is a problem since the tooltip is a "C". I may be way off but i couldn't find any othe place in window.prg where the tool yip is adjusted. [code=fw:261z4nzl]<div class="fw" id="{CB}" style="font-famil...
tooltip timing
Harvey, Your code should go outside of that if ... endif unless you plan to use an array for the tooltip info: [code=fw:xn0mte6u]<div class="fw" id="{CB}" style="font-family: monospace;"><br />SendMessage<span style="color: #000000;">&#40;</span> hWnd, TTM_SETDELAYTIME, TTDT_AUTOPOP, nMakeLong<span style="color: #000...
tooltip timing
Harvey, #define TTM_SETDELAYTIME (WM_USER + 3) #define TTDT_AUTOPOP 2 Those values are defined in c:\bcc55\include\commctrl.h
tooltip timing
Antonio: Doesnt work <!-- s:cry: --><img src="{SMILIES_PATH}/icon_cry.gif" alt=":cry:" title="Crying or Very sad" /><!-- s:cry: --> I need to define the ttm_setdelaytime #define TTM_SETDELAYTIME ??? what value #define TTDT_AUTOPOP ??? what value I placed SendMessage( hWnd, TTM_SETDELAYTIME, TTDT_AUTOPOP...
tooltip timing
Perfect. Thanks for the help
tooltips de ballon en rebar
Hola: En mi windows.prg he hecho el cambio hWnd = CreateToolTip( Self:hWnd, cToolTip, .t. ) //for ballon tooltips ! para tener tooltips de balón. Si creo una ventana con una toolbar me aparecen los tooltip de balón, pero si lo que creo es una rebar el tooltip es el cuadrado de siempre. ¿ Porqué ? Saludos,
tooltips de ballon en rebar
Me respondo <!-- m --><a class="postlink" href="http://fivetechsoft.com/forums/viewtopic.php?t=6113&highlight=tooltip">http://fivetechsoft.com/forums/viewtopi ... ht=tooltip</a><!-- m --> Saludos,
topics ordered by number of views
Dear Uwe, Is there a way using your tools to see the topics ordered by number of views ? Just curiosity <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
tortoise cvs to harbour
hi, someone has the parameters? i lost.....
total days of millennium
hi to all is there any function that return total days from years 0 ? thanks
total days of millennium
do you know that the Gregorian calendar was introduced on 1582? And the year 1 starts 7 days after Christ born?
total days of millennium
[quote="damianodec":306lqrm5]hi to all is there any function that return total days from years 0 ? thanks[/quote:306lqrm5] What date do you mean by "Year 0"? Date() - CTOD( "" ) --> JulianDay meaning number of days from January 1, 4713 BC
total days of millennium
hi Mr Rao thank you, CTOD("") is what I was looking for bye
total in xbrowse
excuse me, i'm starting to use xbrowse I have customer.dbf can someone help me put the total of INVOICE field to the bottom ? thanks
total in xbrowse
[b:2t3tiuzd]I hope I can help you [/b:2t3tiuzd] [img:2t3tiuzd]http&#58;//img543&#46;imageshack&#46;us/img543/7783/orderae&#46;jpg[/img:2t3tiuzd] @ 0, 0 XBROWSE oBrw OF oFld:adialogs[1] ; PIXEL CELL LINES FOOTERS NOBORDER FASTEDIT oBrw:lfooter:=.t. oBrw:nStretchCol:= -1 aBrowse ...
total in xbrowse
Grazie silvio, domani provo e ti faccio sapere!
total in xbrowse
ok dimmi se hai problemi al massimo mi puoi chiamare in privato
total in xbrowse
ho creato la mia procedura, ma quando la dialog viene creata il totale non esce se poi clicco su una parte qualsiasi della dialog il totale esce: questo è lo spezzone di prg: *------------------------------- @ 10,10 XBROWSE oBrw SIZE -10,-30 PIXEL OF oDlg ; CELL LINES FOOTERS NOBORDER FASTEDIT oBrw:lfooter:=.t. oBr...
total in xbrowse
[quote="damianodec":1o1ezh62]excuse me, i'm starting to use xbrowse I have customer.dbf can someone help me put the total of INVOICE field to the bottom ? thanks[/quote:1o1ezh62] Which version of FWH are you using?
total in xbrowse
FWH 12.01 (jan 2012)
total in xbrowse
Please let us know the dbstructure() of the dbf you want to browse and which columns of the dbf you want to browse.
total in xbrowse
this is the dbstructure(): DbCreate( "c:\cruscotto\utile1", {{ "LOGICA","L", 1, 0 },; { "DOCENT" ,"C", 8, 0 },; { "CODICE" ,"C", 7, 0 },; { "RAGSOC" ,"C", 50, 0 },; { "SALDO" ,"N", 15,2 },; { "PAGATO" ,"N", 15,2 },; { "RI...
total in xbrowse
hallo, I'm trying this code: [code=fw:dh2upsfc]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #0000ff;">DEFINE</span> <span style="color: #0000ff;">FONT</span> oFont &nbsp; <span style="color: #0000ff;">NAME</span> <span style="color: #ff0000;">"ARIAL"</span> <span style="color: #00...
total in xbrowse
Good way to start. This is missing in your code: In the line "@ 10,10 XBROWSE oBrw .............." you SHOULD add the clause [b:3v7f70rh][u:3v7f70rh]ALIAS "<aliasname>"[/u:3v7f70rh][/b:3v7f70rh] Instead of the older syntax [code=fw:3v7f70rh]<div class="fw" id="{CB}" style="font-family: monospace;"> &nbsp; &nbsp;...
total in xbrowse
this is very hard for me... <!-- s:( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":(" title="Sad" /><!-- s:( --> this is my new code: [code=fw:2d7xzb9q]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#INCLUDE</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /...
total in xbrowse
if !Empty( oCol := oBrw:oCol( "kgtota" ) ) replace with if !Empty( oCol := oBrw:oCol( "D" ) ) // it is the header title that is assigned Hth Richard
total in xbrowse
thank Richard!!!
total in xbrowse
Again xbrowse, I would like to put a value (total column 3 / total colum 5) to the bottom of column "kgtota" an not the total of "kgtota" Thanks
total in xbrowse
[quote="damianodec":2lm1nkl2]Again xbrowse, I would like to put a value (total column 3 / total colum 5) to the bottom of column "kgtota" an not the total of "kgtota" Thanks[/quote:2lm1nkl2] [code=fw:2lm1nkl2]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oBrw:<span style="color: #000000;">oCol</span...
total in xbrowse
Thank you, tomorrow I'll try that code.
total in xbrowse
ok nageswaragunupudi, it's ok. I have a question: if I use ths code: [code=fw:9bwxpfi2]<div class="fw" id="{CB}" style="font-family: monospace;"><br />@ <span style="color: #000000;">10</span>,<span style="color: #000000;">10</span> <span style="color: #0000ff;">XBROWSE</span> oBrw <span style="color: #0000ff;">SIZE</...
total in xbrowse
You have to specify the DATASOURCE in the XBROWSE command. You did not specify the alias "utile2" as datasource in the command. That is the problem [code=fw:fh95x4wp]<div class="fw" id="{CB}" style="font-family: monospace;">@ <span style="color: #000000;">10</span>,<span style="color: #000000;">10</span> <span style="...
total in xbrowse
Good very good, i'll try.
total in xbrowse
Yes, but I want restrict utile2.dbf using ordscope() function. which command can I use with cAlias in xbrowse, LOCATE, SET FILTER?
total in xbrowse
You can use ordscope() or setfilter() as you like. Before or during xbrowse.
total in xbrowse
Explain me, if I want to use combining two .dbf in xbrowse, how can I do?
total in xbrowse
[quote="damianodec":cme3ckqu]Explain me, if I want to use combining two .dbf in xbrowse, how can I do?[/quote:cme3ckqu] You probably mean when a dbf is set relation to another. Assume that the customer.dbf is related to states.dbf in the fwh\samples folder/ @ 0,0 XBROWSE oBrw OF oWnd DATASOURCE "CUSTOMER" ; COLUMNS...
total in xbrowse
Ok, if field states->nane is numeric, can I to get total on foot?
total in xbrowse
yes
total in xbrowse
Thank you!!!
totales columnas xbrowse condicionadas
hola foro, tengo un xbrowse donde sumo 2 columnas y despliego sus totales en el footer, pero habra alguna manera de sumar los totales bajo una condicion de un campo del registro ? saludos paco
touch.prg
Hello Antonio, if you slide a bit and then click you see the input dialog. Then if you enter PW and user you get into metroUI. But metroUI is not operable any more. If you slide till you see the icon and then click on the icon all is working. Best regards, Otto
touch.prg
Otto, You may oWnd:Disable() the main window until the slider ends and then oWnd;Enable() it
touch.prg
Hello Antonio, can you please show me where to put oWnd:Disable() and oWnd:Enable(). Best regards, Otto
touch.prg
Otto, I placed them insize Class TSliderMetro: [code=fw:2o7ffnc9]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">METHOD</span> GoTop<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #00C800;">CLASS</span> TSliderMetro<br />...
touch.prg
Hello Antonio, You resolved the navigation in touch.prg with image. How can we reach the navigation by keyboard? Thanks in advance Otto DEFINE DIALOG oDlg SIZE ScreenWidth(), ScreenHeight() + 100 ; STYLE nOr( WS_CHILD, WS_POPUP ) ; COLOR CLR_BLUE, CLR_DIALOGS @ 20, 20 IMAGE oImgBack FILENAME "..\bi...
touch.prg error
<!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=6&t=27550&start=0&hilit=FLATBTN">viewtopic.php?f=6&t=27550&start=0&hilit=FLATBTN</a><!-- l -->
touch.prg error
Hola amigos: Algiuien me ayuda con este error que se produce en touch.prg. Se produce luego de mover la pantalla hacia arriba y me queda la manito... Gracias. Application =========== Path and name: C:\fwh1404\samples\touch.exe (32 bits) Size: 2,934,784 bytes Compiler version: Harbour 3.2.0dev (r1307082134) ...
touch.prg error
Ruben, Has modificado touch.prg ? Aqui funciona bien
touch.prg error
No Antonio: Nada de nada, solo el ejemplo. Gracias.
touch.prg error
En la Clase TFlatBtn usamos este código: [code=fw:2l7p41rw]<div class="fw" id="{CB}" style="font-family: monospace;">   <span style="color: #00C800;">if</span> ! Empty<span style="color: #000000;">&#40;</span> oWnd:<span style="color: #000000;">hWnd</span> <span style="color: #000000;">&#41;</span><br />      ::<span ...
touch.prg error
Antonio en la version 14.04 la clase btnflat dice esto if ! Empty( oWnd:hWnd ) ::Create() ::SetColor( XEval( ::nClrText ), ::nClrPane ) if ::oFont == nil ::SetFont( ::oFont ) else ::GetFont() endif Gracias, la estoy modificando.
touch.prg error
Antonio: Cuando entro en la aplicacion y deslizo la pantalla hacia arriba, ingreso los datos, pero no aparece ningun boton de segiuir o cancelar... Ya hice lo cambios en flatbtn y la agregue al proyecto. Gracias.
touch.prg error
Ruben, Que resolución de pantalla usas ? Prueba a darle a tabulación para ver si asi llegas hasta el boton de OK
touch.prg error
Antonio uso : 1366 X 768 Gracias.
touch.prg error
Ruben, La resolución que uso es menor (1280x800) y se ve bien. Puedes poner una captura de pantalla de cómo se ve ? gracias
touch.prg error
Si Antonio, gracias en cuanto llegue a mi casa, gracias ahora estoy en el trabajo. Gracias
touch.prg error
Antonio, a mi tambien me ha dado algun error como el que se comenta. Creo que el problema, que existe desde la version 14.04 puede ser el siguiente: [code=fw:3eqks72j]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br />   <span style="color: #B900B9;">//oWnd  := Self        // -> Comentar esta linea<...
touch.prg error
Cristobal, En que clase has hecho esa modificación ? No lo localizo. gracias!
touch.prg error
En el metodo New de la clase CLASS TBtnFlat version 14.04, que según parece es a la que se refería el compañero En la version 14.06 ese código no está, y las pruebas que he realizado funcionan correctamente
touch.prg error
Cristobal, ok, gracias <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
tpop3 Help Use
I have a small problem using the class tpop3, down below in the source code of my program [code=fw:kjktqmps]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">function</span> PegaMail<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br />   ...
tprinter
Antonio, De igual forma que en la clase TReport mientras se genera la previsualización sale un mensaje indicando el número de página que está preparando, sería bueno hacer lo mismo en la clase tprinter. Muchas gracias por tu atención. Un saludo, Moisés
tprinter
¿Lo podrías incluir en FW.7.12, por favor?. Muchas gracias!!!.
tprinter
MOISES, prueba esta modificacion de uno de los ejemplos de fw [code:13k98zgt] #include "FiveWin&#46;ch" static oWnd function Main&#40;&#41; DEFINE WINDOW oWnd TITLE "Testing Class TPreview" MDI ; MENU BuildMenu&#40;&#41; DEFINE STATUSBAR OF oWnd PROMPT "FWH Multiple previews management" ACTIVATE W...
tprinter
Hola, ¡¡Muchas gracias!!. Pues sí, se trata más o menos de eso. Antonio, por favor, ¿puedes modificar la clase para que se comporte igual que TREPORT, sacando el mismo diálogo que está en prev32.dll/preview.dll?. Muchas gracias. <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><...
tprinter
Moisés, Ese es un cambio que habría que consultar primero con los usuarios, pues afectaría a la "estética" de la aplicación y no todo el mundo puede estar de acuerdo
tprinter
Antonio, podria ser opcional a traves de un atributo (DATA) de la clase, que por defecto no esta activo, solo ideas saludos Marcelo
tprinter
Eso es. Un parámetro adicional para especificarlo a voluntad!!. En todo caso, lo del diálogo en TPRINTER como en que hay en Report no creo que le importe a nadie.
tprogress cMsg
Can anyone explain to me what "cMsg" is for in the TProgress class: this variable is not inserted in the execution of the control. sample oProgress := TProgress():New( 2.8, 2, oDlgProgress, , , , .f.,, 150, 15, [b:2sp9552u]"cmsg is useless"[/b:2sp9552u], .f., .f. )
tprogress y windows vista
Hola, tengo una función de reindexar que usa la clase tprogress para mostrar el avance por pantalla. Algo asi, [code:105ou9kz] Db_OpenNoIndex&#40; "Libros", "LI" &#41; oMeter&#58;setRange&#40; 0, LI->&#40;LastRec&#40;&#41;&#41; &#41; pack nMeter &#58;= 0 index on upper&#40;LiCodigo&#41;; tag C...
tprogress y windows vista
Jose Luis, Revisa samples\ProgTime.prg, aqui funciona bien en Vista. Prueba a aumentarle el incremento: oMeter:SetPos( nMeter += 5 )