topic
stringlengths
1
63
text
stringlengths
1
577k
:Click() error when TButton is disabled
Maurilio, Thanks <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) --> This way seems a little better: [code:2lbjgxgf] if ! &#58;&#58;lProcessing &#58;&#58;lProcessing = &#46;t&#46; if &#58;&#58;bWhen != nil &#46;and&#46; ! Eval&#40; &#58;&#58;bWhen &#41;...
:Click() error when TButton is disabled
Thanks, Antonio! Regards, Maurilio
:SetFocus problem with WHEN clause in Gets and Pushbuttons
I have a problem with :SetFocus() In the following code I have three gets and three pushbuttons. By default the Gets are disabled and when the "Create" button is pressed, the gets should be enabled and the focus should be placed on the 1st get. The "Create" and "Save" functions of my code below is working Ok enablin...
:SetFocus problem with WHEN clause in Gets and Pushbuttons
Ramesh, Try this: oGet1:PostMsg( WM_SETFOCUS ) instead of oGet1:SetFocus()
:SetFocus problem with WHEN clause in Gets and Pushbuttons
Mr.Antonio Amazing to get a solution in 5 minues time. It is working now Ok. Thank you very much. BTW, why :SetFocus() is not working! Regards to you - Ramesh Babu P
:SetFocus problem with WHEN clause in Gets and Pushbuttons
Hi Mr.Antonio Once the focus is passed on to a get with oGet1:PostMsg(EM_SETFOCUS) and when I click on any other controls or press tab, the blinking cursor is still showing on old control (oGet1) and bLostFocus is also not working properly. Just add the following lines to the above code after redefinition of GETS...
:SetFocus problem with WHEN clause in Gets and Pushbuttons
Ramesh, Try this: oGet1:PostMsg( WM_SETFOCUS ) oBtn1:oJump = oGet1
:SetFocus problem with WHEN clause in Gets and Pushbuttons
Ramesh, > BTW, why :SetFocus() is not working Because Windows returns the focus to the button, after processing the ACTION of the button, so we can not interrupt that process.
:SetFocus problem with WHEN clause in Gets and Pushbuttons
Hello Mr.Antonio Thanks again for immediate attention. [quote:1mje3lqr] oBtn1:oJump = oGet1 [/quote:1mje3lqr] If we do not know in advance that the user will jump to oGet1 from oBtn1? Thanks Ramesh Babu P
:SetFocus problem with WHEN clause in Gets and Pushbuttons
Ramesh, > If we do not know in advance that the user will jump to oGet1 from oBtn1? You set it from the Create() function where you know where it will go.
:SetFocus problem with WHEN clause in Gets and Pushbuttons
Mr.Antonio Kindly test the above code with the changes you have suggested and give me the suitable solution please. I tried with the all your suggestions with fail. Regards to you - Ramesh Babu P
:SetFocus problem with WHEN clause in Gets and Pushbuttons
Ramesh, [code:keztvzom] FUNCTION Create&#40;lCreate, lSave, lGo, oGet1 &#41; lSave &#58;= &#46;T&#46; lCreate &#58;= &#46;F&#46; lGo &#58;= &#46;T&#46; oGet1&#58;PostMsg&#40; WM_LBUTTONDOWN &#41; oGet1&#58;PostMsg&#40; WM_LBUTTONUP &#41; RETURN nil [/code:keztvzom]
:SetFocus problem with WHEN clause in Gets and Pushbuttons
Mr.Antonio Thank you very much for your reply. After spending some time on this, I could get the required effect with the following statement. [quote:xmxfaeqj] oGet1:PostMsg( WM_RBUTTONDOWN ) [/quote:xmxfaeqj] Regards to you - Ramesh Babu P
:Setfilter from a defined substring ?
Hello, I must use oCust:setfilter from a substring That works perfect <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> [color=#008000:y3eve3ly][b:y3eve3ly]oCust:ORDSCOPE(0, cLast ) oCust:ORDSCOPE(1, cLast ) [/b:y3eve3ly][/color:y3eve3ly] but I want to show the sol...
:Setfilter from a defined substring ?
[quote:1kh6f0o7]oCust:SetFilter( " SUBSTR( UPPER( Last ), 1, 2 ) == 'AC' " ) // is OK and is filtering -> Acker [/quote:1kh6f0o7] This can be written as: oCust:SetFilter( "UPPER(LAST) = 'AC'" ) // single "=". Not "==" After getting cLast, you can build the filter like this: oCust:SetFilter( "UPPER(LAST) = '" + Trim( ...
:Setfilter from a defined substring ?
Works perfect <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> thank You very much sometimes I'm thinking to complicated <!-- s:oops: --><img src="{SMILIES_PATH}/icon_redface.gif" alt=":oops:" title="Embarassed" /><!-- s:oops: --> [quote:3gnzdcub]After getting cLast,...
:Setfilter from a defined substring ?
May I still ask for another solution ? I need a filterstring for a date-range field [color=#0000FF:ktswruay]Hiredate[/color:ktswruay] from customer.dbf defined date-vars [color=#0000FF:ktswruay]dDate1[/color:ktswruay] and [color=#0000FF:ktswruay]dDate2[/color:ktswruay] to filter a date-range that means for a empty dD...
:Setfilter from a defined substring ?
Have you tried with my_filter = "dtos(oCust:Hiredate) >= dtos(" + ctod(dDate1) + ")" oCust:SetFilter(my_filter)
:Setfilter from a defined substring ?
[code=fw:34t6rpx2]<div class="fw" id="{CB}" style="font-family: monospace;"> &nbsp; cFilter &nbsp; &nbsp; := <span style="color: #ff0000;">""</span><br />&nbsp; &nbsp;<span style="color: #00C800;">if</span> !Empty<span style="color: #000000;">&#40;</span> dDate1 <span style="color: #000000;">&#41;</span><br />&nbsp; &n...
:Setfilter from a defined substring ?
Tested and works perfect <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --...
:ToExcel() method error
Hi all, I'm having a problem using the oBrw:ToExcel() method after upgrading my old 2010 FW to the current version. It seems it is a valtype problem, all runs well with the old fwh 2010 version. See image. Any ideas ? [img:av1mcy89]http&#58;//www&#46;softwarexp&#46;co&#46;uk/beta/image&#46;png[/img:av1mcy89]
:ToExcel() method error
how are you doing? [code=fw:1neaifay]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oHoja:<span style="color: #000000;">Cells</span><span style="color: #000000;">&#40;</span>nX,nColuna<span style="color: #000000;">&#41;</span>:<span style="color: #000000;">set</span><span style="color: #000000;">&#40;...
:ToExcel() method error
This way ADD COLUMN oCol TO XBROWSE aObjects[6] DATA ARRAY ELEM aBrwDetails[i,3]; HEADER oemtoansi(aBrwDetails[i,1]) SIZE aBrwDetails[i,2] ORDER ABRWDETAILS[I,3] if valtype(aBrwArray[1,aBrwDetails[i,3]])="D" && if da...
:bBmpData at TXBrowse Cols!
Hi again my friends.. I need a little help! This a example of my code: [code:i5s0vodx] &#46;&#46;&#46; oBrw&#58;aCols&#91;7&#93;&#58;addResource&#40; "IMAGE_TRUE" &#41; oBrw&#58;aCols&#91;7&#93;&#58;addResource&#40; "IMAGE_FALSE" &#41; oBrw&#58;aCols&#91;7&#93;&#58;bStrData &#58;= NIL oBrw&#58;aCols&#91;7&#93;&#58...
:bBmpData at TXBrowse Cols!
Mr JC There is nothing wrong with your code. ( By the way it is not necessary to assign any value to nDataStrAlign in this case. When bStrData is nil, Bmp is shown centered. ). Please check if your RC file contains resource with the exact spelling IMAGE_FALSE. If the browse does not find a resource with the given na...
:bBmpData at TXBrowse Cols!
[quote="nageswaragunupudi":zc1up1yv]Mr JC There is nothing wrong with your code. ( By the way it is not necessary to assign any value to nDataStrAlign in this case. When bStrData is nil, Bmp is shown centered. ). Please check if your RC file contains resource with the exact spelling IMAGE_FALSE. If the browse does n...
:bBmpData at TXBrowse Cols!
Surprising. It works in the sample testxbr3.prg and also in my regular programs. Will you please try this alternative code ? oBrw:aCols[7]:bEditValue := { || (cAlias)->situacao } oBrw:aCols[7]:SetCheck( { "IMAGE_TRUE", "IMAGE_FALSE" } ) in the place of all the lines you have coded ?
:bBmpData at TXBrowse Cols!
[quote="nageswaragunupudi":3826com9]Surprising. It works in the sample testxbr3.prg and also in my regular programs. Will you please try this alternative code ? oBrw:aCols[7]:bEditValue := { || (cAlias)->situacao } oBrw:aCols[7]:SetCheck( { "IMAGE_TRUE", "IMAGE_FALSE" } ) in the place of all the lines you have code...
:bBmpData at TXBrowse Cols!
Ate the test, I get this error: Message not found: TXBRWCOLUMN:SETCHECK My version of fivewin don't have a method setCheck in the class TXBrwColumn!! <!-- s:( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":(" title="Sad" /><!-- s:( -->
:bBmpData at TXBrowse Cols!
I am sorry. I should have seen the FWH version you are using. SetCheck is available from 8.03. Possible that in version 6 the bBmpData is not handled properly. I do not have source code of xbrowse.prg that version. May be we can examine how the paintdata method is dealing with bBmpData.
:bBmpData at TXBrowse Cols!
[quote="nageswaragunupudi":18ocx0o3]I am sorry. I should have seen the FWH version you are using. SetCheck is available from 8.03. Possible that in version 6 the bBmpData is not handled properly. I do not have source code of xbrowse.prg that version. May be we can examine how the paintdata method is dealing with b...
:bPostKey y :Assing() en TGET.
Buenas, Estoy actualizando a FWH 8.02 desde la 7.04, y me encuentro que antes cuando se lanzaba :bPostKey el <!-- s:o --><img src="{SMILIES_PATH}/icon_surprised.gif" alt=":o" title="Surprised" /><!-- s:o -->Get:Buffer del GET estaba actualizado y ahora debo aplicar antes :Assing(). Además :bPostKey se lanzaba desde e...
:bPostKey y :Assing() en TGET.
Carlos, Si, desde la versión 7.04 hasta la versión actual 8.03 se han ido realizando muchos cambios y mejoras, y aunque intentamos siempre mantener la máxima compatibilidad, a veces algunos pequeños cambios son requeridos en el código.
:bPostKey y :Assing() en TGET.
[quote="Antonio Linares":2z8q8aqi]Carlos, Si, desde la versión 7.04 hasta la versión actual 8.03 se han ido realizando muchos cambios y mejoras, y aunque intentamos siempre mantener la máxima compatibilidad, a veces algunos pequeños cambios son requeridos en el código.[/quote:2z8q8aqi] No hay problema, ahora he actua...
:classname() no retorna ""TBAR"" ????
yo teno un Dialog con una TBAR, mas ao verificar con lo codigo: for i=1 to len(odlg:acontrols) ? odlg:acontrols[i]:classname() next En la Tbar no me mostra "TBAR" , aparece "BTNBMP" . Y en lo TBTNBMP nada me diz que é um Button de la Tbar, mas lo dato lBarBtn no assume .T. Pregunta: Como saber que un controle de l...
:classname() no retorna ""TBAR"" ????
otra cosita estrana, quando se usa la funcion getparent() en un btnbmp de una tbar, me retorna "TXBROWSE" y non "TBAR" como deveria de ser. Seria un BUG ? Saludos William
:classname() no retorna ""TBAR"" ????
William, el objeto TBar se almacena en oWnd:oBar. No se añade a oWnd:aControls, puesto que no debe tomar el foco.
:classname() no retorna ""TBAR"" ????
William, Para tu segunda pregunta, prueba asi: MsgInfo( GetParent( oBtnBmp:hWnd ) == oBar:hWnd ) siendo oBtnBmp un botón situado en oBar
:classname() no retorna ""TBAR"" ????
ok Antonio, voy a testar con isso. Muchas Gracias William
:end()
Hojeando el foro he visto que hay que hacer :end() de los objetos al salir de una funcion, incluso de los objetos Locales. ¿Es así? En el ejemplo de Carles hay cuatro objetos, oBmp, oDlg, oSay, oFont ¿por que solo con 2 de ellos se hace :end()? oBmp:End() oFont:End() ¿Hay alguna forma de ver que objetos h...
:end()
Hola Jose, Realmente solo se tendria de aplicar el metodo End() al objeto oFont. oBmp ya lo destruye oDlg. Seguramente se quedo asi de las muchas pruebas q realize.
:end()
Ahora ya lo entiendo. Nunca había usado fivewin pero con vuestra ayuda es muy fácil de utilizar.
:end()
Jose, El método End() lo usamos para destruir determinados valores (handles) de Windows que precisan ser liberados, ó se consumen recursos del sistema, tales como handles de ventanas, recursos GDI (fonts, bitmaps, pens,etc), timers, etc.
:lAllowColSizing
I wish stop an xbrowse from final user I made WITH OBJECT oBrw :lHScroll := :lVScroll := .f. :nStretchCol := 1 :nFreeze := 1 :lAllowRowSizing := .F. :lColDividerComplete := .F. :lAllowColSwapping := .F. :lAllowColHiding := .F. :nMa...
:lAllowColSizing
oBrw:lAllowSizings := .f.
:lAllowColSizing
sorry then I found it but I not have it on my release but on wich release is it ?
:lAllowColSizing
sorry oBrw:lAllowSizings := .f. This is in all versions.
:nEditType := EDIT_GET ¿Disable?
Hola amigos, Tengo un xBrowse cuyo DATASOURCE es un Arreglo de Memoria. Defino una columna con la clausula EDIT_GET , lo que me permite editar al celda en tiempo de ejecucion. Bien, resulta que necesito mas adelante, que la misma columna sea Editable/NO editable, segun se cumpla una condicion. Algo asi como Disa...
:nEditType := EDIT_GET ¿Disable?
Prueba con: [code=fw:3fq43p0v]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oBrw:<span style="color: #000000;">aCols</span><span style="color: #000000;">&#91;</span><span style="color: #000000;">5</span><span style="color: #000000;">&#93;</span>:<span style="color: #000000;">bEditWhen</span> := <span ...
:nEditType := EDIT_GET ¿Disable?
[quote="cmsoft":tmx1czna]Prueba con: [code=fw:tmx1czna]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oBrw:<span style="color: #000000;">aCols</span><span style="color: #000000;">&#91;</span><span style="color: #000000;">5</span><span style="color: #000000;">&#93;</span>:<span style="color: #000000;">b...
:procLine - equivalente
Buenos dias Gente Compilando con xHarbour, capturo un error y describo, entre otros, el suceso informando con oError:procLine Al compilar con Harbour tal data no existe; cual es el equivalente?; ya que si uso ProcLine(), este sin pasarle parámetro numérico, me devuelve la linea de donde se llamo al Alert() del error y ...
:procLine - equivalente
[url:rid89srm]https&#58;//vivaclipper&#46;wordpress&#46;com/tag/procline/[/url:rid89srm] Saludos.
:procLine - equivalente
Karinha; muchas gracias Esto necesito: [quote:3b6y4n1v]Alert( "[Error nro: "+Str(oErr:GenCode,4,,TRUE)+"] - "+oErr:Description+CRLF+" - Línea: "+Str([b:3b6y4n1v]oErr:procLine[/b:3b6y4n1v],4,,TRUE); "EL Proceso de borrado se canceló" +CRLF+ ; "Verifique archivo:"+h0:cFileLog,,"Aten...
:procLine - equivalente
Como en este caso? [code=fw:3gt52gta]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">FUNCTION</span> ADOSHOWERROR<span style="color: #000000;">&#40;</span> oCn, cTable, lSilent <span style="color: #000000;">&#41;</span> <span style="color: #B900B9;">//CHANGES BY BYTE-ONE</...
:procLine - equivalente
Ó [code=fw:s5meyhz9]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">//----------------------------------------------------------------------------//</span><br /><span style="color: #00C800;">FUNCTION</span> CheckErr <span style="color: #000000;">&#40;</span><span style="co...
:procLine - equivalente
karinha Por favor, compila este sample con xHarbour y verifica: oError:Procline Luego compila con xharbour y verifica ProcLine() Los valores de linea son distintos (o estoy haciendo algo mal?) gracias [code=fw:cl64kelk]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</s...
:procLine - equivalente
Holá, acá funciona bién com harbour y xharbour con FWHX16.10 [code=fw:25bcj9wd]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;"...
:procLine - equivalente
Karinha BOM 2017!! muchas gracias por la ayuda! Disculpa que insista: Compilando con xharbour, oError:procLine devuelve el mismo numero de linea que compilando con harbour, ProcLine()? (compilando com xHarbour, oError:procLine retorna o mesmo número da linha que a compilando com Harbour, ProcLine()?)
:procLine - equivalente
Gracias, un ótimo 2017 para ti también! Con xHarbour: [img:juva7phl]http&#58;//i&#46;imgur&#46;com/W4jaqqw&#46;png[/img:juva7phl] Saludos.
:procLine - equivalente
Con Harbour: [img:3n5wobme]http&#58;//i&#46;imgur&#46;com/BRMHO1l&#46;png[/img:3n5wobme]
:procLine - equivalente
Karinha; oError:procLine devuelve [b:2csh3vs9]linea 10[/b:2csh3vs9] (que es correcto). Mientras que ProcLine() devuelve[b:2csh3vs9] linea 26[/b:2csh3vs9], que NO es correcto Que solución hay, si lo sabes, para Harbour?
:procLine - equivalente
[code=fw:2ihp1juo]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"error.ch"</span><br /><br /><span style="color: #00C800;">FU...
:procLine - equivalente
Karinha; Tu ejemplo Indica error en Linea 26 y [b:1pe6dlon]NO en Linea 10[/b:1pe6dlon] (Se entiende?!) O sea ProcLine() NO esta devolviendo correctamente la línea de error; sino la línea donde se llama a ProcLine() [img:1pe6dlon]http&#58;//i795&#46;photobucket&#46;com/albums/yy237/MLimonG/PROCLINE&#46;png[/img:1pe6dlo...
:procLine - equivalente
se me ocurrió que podriamos "extender" la clase Error de Harbour para implementar el mensaje ProcLine() #include "c:\harbour\contrib\xhb\xhbcls.ch" ... EXTEND CLASS Error WITH MESSAGE ProcLine INLINE ProcLine() pero la clase Error de Harbour no lo permite. De hecho no permite crear una clase derivada de ella no se...
:procLine - equivalente
El errorsys de FWH utiliza ProcLine() y funciona correctamente con Harbour y xHarbour Puedes probar el ejemplo samples\testerro.prg usando buildh.bat y buildx.bat y verás que ambos reportan el mismo número de línea
:procLine - equivalente
Con xHarbour, funciona. Con HARBOUR NO funcona. ??? [img:1xyrieaj]http&#58;//i&#46;imgur&#46;com/NZkGUkF&#46;png[/img:1xyrieaj] [code=fw:1xyrieaj]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /><span s...
:procLine - equivalente
¿ Ha incluido vd. xHb.Lib ?
:procLine - equivalente
[code=fw:3bwt0xll]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">// Testing Harbour ProcName() and ProcLine() -> Procname.prg de Harbour</span><br /><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /><br />PROCEDURE M...
:procLine - equivalente
[quote="hmpaquito":2ndsoghh]¿ Ha incluido vd. xHb.Lib ?[/quote:2ndsoghh] [code=fw:2ndsoghh]<div class="fw" id="{CB}" style="font-family: monospace;"><br />echo %hdirl%\xhb.lib + >> b32.bc<br />&nbsp;</div>[/code:2ndsoghh] [img:2ndsoghh]http&#58;//i&#46;imgur&#46;com/8WHv9fa&#46;png[/img:2ndsoghh] Saludos.
:procLine - equivalente
[img:2pkiya0f]http&#58;//i&#46;imgur&#46;com/UEU7RGk&#46;png[/img:2pkiya0f] Resuelto con BEGIN... SEQUENCE... END. Que compilador(Harbour) complicado! xHarbour es bien mas facil. [code=fw:2pkiya0f]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">// testing procline() con ...
:procLine - equivalente
muy bien <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> La librería hbcplr.lib de Harbour es, en mi opinión, lo que le da la superioridad a Harbour sobre xHarbour, aunque en algunos casos, como este, efectivamente xHarbour sea más fácil. Esta librería contiene todo el co...
:procLine - equivalente
Karinha, Antonio Muchas gracias por colocar o tempo na pesquisa muchas gracias por poner tiempo en la investigación Tendré que usar BEGIN... SEQUENCE... END <!-- s:shock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt=":shock:" title="Shocked" /><!-- s:shock: -->
:procLine - equivalente
Gracias Master, no tengo ningún conocimiento sobre hbcplr.lib pués no uso Harbour aún. Podrias hablar más sobre la misma? Y en españa, que significa ERP? Gracias, saludos.
:procLine - equivalente
Mira aquí karinha [url:15e9ebam]https&#58;//es&#46;wikipedia&#46;org/wiki/Sistema_de_planificaci%C3%B3n_de_recursos_empresariales[/url:15e9ebam] Por cierto, Harbour está mucho mejor construido en todos los aspectos que xHarbour, no te quepa ni la menor duda. Te lo digo yo que he estado trasteando por las tripas de lo...
:procLine - equivalente
[quote="xmanuel":1as6gm7k]Mira aquí karinha [url:1as6gm7k]https&#58;//es&#46;wikipedia&#46;org/wiki/Sistema_de_planificaci%C3%B3n_de_recursos_empresariales[/url:1as6gm7k] Por cierto, Harbour está mucho mejor construido en todos los aspectos que xHarbour, no te quepa ni la menor duda. Te lo digo yo que he estado trast...
< CRLF > for Buttontext in Class < ButtonBMP > ?
Is it possible, to have a CRLF in Class ButtonBMP like =>> "Customer" + CRLF + "Info" same like in Buttonbar Office2007 ? Greetings from Germany U.König <!-- s:lol: --><img src="{SMILIES_PATH}/icon_lol.gif" alt=":lol:" title="Laughing" /><!-- s:lol: -->
< CRLF > for Buttontext in Class < ButtonBMP > ?
Ukoenig, Class TButtonBmp uses the standard painting of Windows buttons. It just adds the bitmap. So we need to find if there is a way to display CRLFs in a standard Windows button
< CRLF > for Buttontext in Class < ButtonBMP > ?
There was already a topic for this. But don't remember which. But i remember the advices like this: Open the .rc file with a text editor. At the end of a button definition just comma and the value 8192. After this you may write your button prompt in RWS with a "\r\n" for a newline or CRLF in your redefine statement of...
<make> file to create dll ?
Good day. What is the <make> file to create a dll and accept apache to work with mod harbor, from the "C" or "PRG" files. regards
<make> file to create dll ?
[url:21tg77u1]https&#58;//github&#46;com/FiveTechSoft/mod_harbour[/url:21tg77u1] and [url:21tg77u1]https&#58;//github&#46;com/FiveTechSoft/harbour_for_modharbour[/url:21tg77u1] There you have all that you need to build mod_harbour
<offtopic> Necesito Programador en Guadalajara Jalisc
Hola a todos, por expansion del departamento de sistemas requiero de un programador con experiencia en (x)Harbour y FWH, que resida en la ciudad de Guadajalara, Jalisco, Mexico o sus alrededores, interesados por favor enviar curriculum a <!-- e --><a href="mailto:rubio.luisfernando@gmail.com">rubio.luisfernando@gmail.c...
================================================
This forum is now dedicated to "Visual FiveWin"
================================================
Este foro esta ahora dedicado a "Visual FiveWin"
>Colores por cada letra de un texto
Hola Amigos. Sera posible tener un texto con colores diferentes en cada letra?? Salu2 [img][url=http&#58;//www&#46;subirimagenes&#46;net/i/140809060949533781&#46;jpg:3i8gnwx1][IMG]http://sia1.subirimagenes.net/img/2014/08/09/mini_140809060949533781.jpg[/img][/url:3i8gnwx1][/img] [img][url=http&#58;//www&#46;subirimagen...
>Colores por cada letra de un texto
No es posible????
>Colores por cada letra de un texto
Willi: Me parece que no existe una función para tal efecto, se me ocurre que metas el texto en un array y ahí asignarle el color a cada letra. Solo una idea. Saludos
>Colores por cada letra de un texto
Hola. A ver si esto te vale. Un saludo #include "fivewin.ch" static oWnd function main() DEFINE WINDOW oWnd ACTIVATE WINDOW oWnd ON PAINT Pinta( hDC ) return nil function Pinta( hDC ) local nColor local nLeft := 10 local cTexto := "En un lugar de la mancha de cuyo nombre no quiero acordarme" local oFont loc...
>Colores por cada letra de un texto
[url=http&#58;//imageshack&#46;com/f/iqOJitHdj:1j33ze6u][img:1j33ze6u]http&#58;//imagizer&#46;imageshack&#46;us/v2/280x200q90/674/OJitHd&#46;jpg[/img:1j33ze6u][/url:1j33ze6u]
>Colores por cada letra de un texto
Very good Paco. [code=fw:866v3xy8]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#Include</span> <span style="color: #ff0000;">"Fivewin.ch"</span><br /><br /><span style="color: #00C800;">STATIC</span> oWnd<br /><br /><span style="color: #00C800;">FUNCTION</span> Main<spa...
? 235.1234/100 == 2.35
Hi, Harbour/Clipper: ? 235.1234/100 2.35 not 2.351234 Any express return 2 decimals . Mysql : select 235.1234/100 2.35123400 Regards! Shuming Wang
? 235.1234/100 == 2.35
ShumingWang Try the SET DECIMALS command .. see below for syntax .. Rick Lipkin SET DECIMALS Defines the number of decimal places for displaying numeric values on the screen. Syntax SET DECIMALS TO [<nDecimals>] Arguments <nDecimals> This is a numeric value specifying the number of decimal places for screen outp...
? 235.1234/100 == 2.35
// \SAMPLES\SHUMING2.PRG [code=fw:2bsjmdgd]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#Include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /><br /><span style="color: #00C800;">FUNCTION</span> Main<span style="color: #000000;">&#40;</span><span style="...
? 235.1234/100 == 2.35
Thanks ! Shuming Wang
?TGET problem with FW_SetUnicode(.T.)
I have use FW_SETUNICODE(.T.) in the program. When I len() to check Length of variable and it show 3 but I cannot type anything. If I clear the text and type again; English : can type up to 3 charactors Thai : can type 1 charactor (I think TGET understand that is 3 bytes already, because of Unicode text) [code=f...
?TGET problem with FW_SetUnicode(.T.)
I used FWH 1512 / xHarbour 1.2.3 (FW) / BCC7. I've changed TGET 2 place. It look better but there are not compatible case such as copy and paste. Do the current version 1604 fully support TGET on Unicode? [code=fw:zhlxwn31]<div class="fw" id="{CB}" style="font-family: monospace;">#ifdef UTFREVN<br /><br />   <span...
?TGET problem with FW_SetUnicode(.T.)
Get restricts entry by number of bytes. You can enter as much unicode text as can fit into the number of bytes of the string.
?hange height of rows xBrowse
Hi all ! When changing the mouse the column width is a redistribution of the text in the cells for words. Is it possible to have synchronous change height of rows when you change the column width to the text in the cells is completely visible ?
?hange the color of a window fragment
Hi, I need to change the color of a rectangular window fragment. How can this be done ?
?hange the color of a window fragment
Please post a screenshot of what you need
?hange the color of a window fragment
An orange rectangle is drawn on the white window <!-- m --><a class="postlink" href="https://cloud.mail.ru/public/kdYk/61wg63nfX">https://cloud.mail.ru/public/kdYk/61wg63nfX</a><!-- m -->