topic
stringlengths
1
63
text
stringlengths
1
577k
Clean source code
Hello, I have an old source code. There is an input screen with many controls on it. If you change one of the controls all others are updated. This is done by one function. But there are many parameters to pass. Sure this could be done better. But now I had to make some changes. [img:30dbxvv8]https://mybergland&#4...
Clear COM port buffer
Hi, Is there any other way to clear the com port buffer? I have tried: [code=fw:3i0c12ba]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">if</span> FlushComm<span style="color: #000000;">&#40;</span> nComm, <span style="color: #000000;">0</span> <span style="color: #000000...
Clear COM port buffer
Jeff, FWH provides CloseComm( nPort ), not sure if you may need to close it and open it again. Anyhow if you post an example of how you are using it we will be able to provide you a better help,
Clear COM port buffer
Here is a sample of the code. lSetOX is set to .T. during the initial connection, then set to .F. after the connection is made. The code below is called every second via a timer. [code=fw:2kpvhaw6]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">IF</span> lSetOX    <span s...
Clear COM port buffer
Jeff, this is a sample of how should you use the communication device: [code=fw:19ubpg7o]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"Fivewin.ch"</span><br /><br /><br /><span style="color: #00C800;">FUNCTION</span> MAIN<span st...
Clear COM port buffer
Hi Enrico, I have been playing with your sample and it works perfectly to show the data coming in via your dialog box and get. The problem I am having is using your example to put the data into a string instead of a get (without the "terminal" dialog box). When I try without your dialog box and just placing the data ...
Clear COM port buffer
Jeff, this is how to read a string from the communication port: [code=fw:39e0ohqq]<div class="fw" id="{CB}" style="font-family: monospace;">cStr = RECEIVESTR<span style="color: #000000;">&#40;</span> nCom <span style="color: #000000;">&#41;</span></div>[/code:39e0ohqq] It should work fine. I don't understand your pr...
Clear COM port buffer
[quote="Enrico Maria Giordano":2yw2ij4e]Jeff, this is how to read a string from the communication port: [code=fw:2yw2ij4e]<div class="fw" id="{CB}" style="font-family: monospace;">cStr = RECEIVESTR<span style="color: #000000;">&#40;</span> nCom <span style="color: #000000;">&#41;</span></div>[/code:2yw2ij4e] It shou...
Clear COM port buffer
Got it working ... I had to adjust the buffer size. Thanks everyone for the help.
Clear COM port buffer
HI, I have just created a link to a badge reader and have noticed that when I use EnableCommNotification, it only reads in around 8 characters at a time - This is happening in Enricos demo application. Is there a way to read in more characters in one go (10-20)? Best regards, Pete
Clear COM port buffer
Peter, you should not care of how many characters are read at a time. Just read and store any characters you receive. EMG
Clear Gets
Maestro Antonio, que sustituye ell comando CLEAR GETS del clipper? Tengo 30 GETS y me gustaría que 20 GETS és WHEN( . F. ) com se fueste: CLEAR GETS de clipper. É posible? Salu2.
Clear Gets
Hola, me imagino que puedes utlizar el aControls del contenedor ( Dialogo) y a través de la data CLASSNAME puedes identificar cuales son GET y a partir de alli bajo tu criterio oGet:cText hacer que se pongan en el valor que requieras. solo una idea saludos Marcelo
Clear Gets
Como te indica Marcelo, el código seria más o menos asi: AEval( oDlg:aControls, { | o | If( Upper( o:ClassName() ) == "TGET", o:SetText( uValBlank( o:GetText() ) ),) } )
Clear Memory
Help me... How to clear memory completely (deleting variables, fonts, and bitmaps) created or loaded by a other PRG ???? Example: [file main.prg] #include fivewin.prg PUBLIC oBtn, oMain define window oMain FROM 0, 0 TO 500, 500 TITLE "Teste" @10,20 BUTTON "Start" ACTION CallPrg2() ACTIVATE DIALOG oMain --------...
Clear Memory
You don't need to release anything. LOCAL variables are automatically released at the end of the function and controls variables (oBmp, oSay, etc.) are released by their container (the dialog). EMG
Clear Memory
[quote="Enrico Maria Giordano":jjjk4xe0]You don't need to release anything. LOCAL variables are automatically released at the end of the function and controls variables (oBmp, oSay, etc.) are released by their container (the dialog). EMG[/quote:jjjk4xe0] But... when I shut down the system it shows those resources lo...
Clear Memory
[url:3ert9dhl]http&#58;//forums&#46;fivetechsupport&#46;com/viewtopic&#46;php?f=6&t=35925[/url:3ert9dhl]
Clear Memory
[quote="shark":2vwp9s0k]But... when I shut down the system it shows those resources loaded and not released:[/quote:2vwp9s0k] This is probably the effect of some bugs in your code. Please look at the first line: [code=fw:2vwp9s0k]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #000000;"...
Clear Memory
This is what we see in checkres.txt. This indicates the resources that are not explicitly released by the application. But after reporting by checkres.txt, all the resources are released when the exe is ends. Checkres.txt is intended to indicate what the application programmer did not release. That is all its purpose.
Clear Memory
[quote="nageswaragunupudi":2r1fuzaa]This is what we see in checkres.txt. This indicates the resources that are not explicitly released by the application. But after reporting by checkres.txt, all the resources are released when the exe is ends. Checkres.txt is intended to indicate what the application programmer did n...
Clear Memory
[quote="Enrico Maria Giordano":367tz1lj][quote="shark":367tz1lj]But... when I shut down the system it shows those resources loaded and not released:[/quote:367tz1lj] This is probably the effect of some bugs in your code. Please look at the first line: [code=fw:367tz1lj]<div class="fw" id="{CB}" style="font-family: m...
Clear Memory
[quote="karinha":so0qale4][url:so0qale4]http&#58;//forums&#46;fivetechsupport&#46;com/viewtopic&#46;php?f=6&t=35925[/url:so0qale4][/quote:so0qale4] Thanks. But, that's not what I need. I do not want to release all variables and shut down the system. I want to release variables and resources when returning control t...
Clear Memory
In your code [code=fw:3et9e13p]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">FUNCTION</span> Main<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br /><span style="color: #00C800;">LOCAL</span> oBmp, oFont<br /><br /><span style=...
Clear Memory
[url:1q4ql97i]http&#58;//forums&#46;fivetechsupport&#46;com/viewtopic&#46;php?f=6&t=31558&p=183983&hilit=re+mi+app+se+cuelga#p183983[/url:1q4ql97i]
Clear Typehead
Estimados tengo un browse el cual al presionar la tecla ENTER entra a un dialogo pero resulta que dentro del dialogo si se presiona el boton salir vuelve a ejecutarse nuevamente, como si hubiera presionado enter nuevamente mi pregunta es como limpiar el buffer del teclado... lo estoy haciendo asi... [code:1g4gsm8l]...
Clear Typehead
oBrw:bKeyDown :={|nkey,nFlag| IF(nKey=13, ABMBancos(oDbf,oBrw,oDlg,nKey,oWnd), )} Prueba lo siguiente. Saludos, Esteban.
Clear Typehead
gracias por responder pero igual sigue el problema por ahora lo he dejado en comentario, solo con el dblclick del mouse viendo post antiguo creo que no existe una solucion... saludos..
Clear Typehead
No te olvides de que dentro de tu funcion ABM debes refrescar el oBrw y ponerle el foco justo antes de terminar. Es decir: oBrw:bKeyDown :={|nkey,nFlag| IF(nKey=13, ABMBancos(oDbf,oBrw,oDlg,nKey,oWnd), )} ... ... // Function ABMBancos(oDbf,oBrw,oDlg,nKey,oWnd) ... ... oBrw:Refresh() oBrw:SetFocus() Return nil //
Clear Typehead
a mi me va bien, prueba a usar: nKey==VK_RETURN en lugar de: nKey=13 y no olvides cuando cierras el dialogo poner el foco en el browse salu2 paco
Clear Typehead
Asi tengo el final del la funcion ABM, igual el problem..! <!-- s:-( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":-(" title="Sad" /><!-- s:-( --> [code:2081ltw3]ACTIVATE DIALOG oDlg CENTERED ON PAINT iif&#40; valtype&#40; oBrw &#41; = "O", oBrw&#58;SetFocus&#40;&#41;,&#41; dbART&#58;OrdSetFocus&#40; cOldkey &#41; ...
Clear Typehead
Una pregunta: Como estás defiendo el Boton para salir?
Clear Typehead
[code:1dr5cowb]REDEFINE BUTTON ID 716 OF oDlg ; ACTION oDlg&#58;End&#40;&#41; ; CANCEL [/code:1dr5cowb] adjunto un pequeño video,.. [url:1dr5cowb]http&#58;//www&#46;bigupload&#46;com/d=77487AC1[/url:1dr5cowb] saludos
Clear Typehead
Mira aparentemente está todo bien. A mi me funciona perfecto y lo único que se me ocurre es que tu proceso no esté ingresando nunca al if que utilizas para poner el foco al salir de la funcion. if Valtype( oBrw ) = "O" oBrw:Refresh() oBrw:SetFocus() endif Prueba poniendo un MsgInfo() dentro del If para ver ...
Clear Typehead
Encontre el problema Mirando el metodo keydown() de la clase twbrowse [code:14930hrr]METHOD KeyDown&#40; nKey, nFlags &#41; CLASS TWBrowse local lRefresh if &#58;&#58;bKeyDown != nil Eval&#40; &#58;&#58;bKeyDown, nKey, nFlags, Self &#41; endif do case case nKey == VK_UP &#58;&#58;cBuffer&#58;= "" ...
Clear Typehead
patricio este el metodo keydown que tengo en la clase, probablemente tienes la ver no mas actual de la 17 METHOD KeyDown( nKey, nFlags ) CLASS TWBrowse local lRefresh do case case nKey == VK_UP ::cBuffer:= "" ::GoUp() case nKey == VK_DOWN ::cBuffer:= "" :...
Clear a get date
I have a get date with datepick Near I have a btnbmp with a Menu to select actions [img:2ueigbct]https&#58;//s33&#46;postimg&#46;cc/5mj94ythb/image&#46;png[/img:2ueigbct] [code=fw:2ueigbct]<div class="fw" id="{CB}" style="font-family: monospace;">@ <span style="color: #000000;">12</span>,<span style="color: #0000...
Clear a get date
[code=fw:dpug71d2]<div class="fw" id="{CB}" style="font-family: monospace;"><br />&nbsp; &nbsp;oBtnCal:<span style="color: #000000;">oPopUp</span>:= <span style="color: #000000;">&#123;</span> |oBtn| BtnPopCalMenu<span style="color: #000000;">&#40;</span> @dDataNote,aGet <span style="color: #000000;">&#41;</span>, aGet...
Clear a get date
[b:16pttdna]Error !!![/b:16pttdna] [code=fw:16pttdna]<div class="fw" id="{CB}" style="font-family: monospace;">Application<br />===========<br />&nbsp; &nbsp;Path and <span style="color: #0000ff;">name</span>: <span style="color: #000000;">C</span>:\Work\pezzi_per_spiaggia\servizi_singoli\test.Exe <span style="color: ...
Clear a get date
[code=fw:19inycht]<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: #B900B9;">//----------------------------------------------------------------------------// </span><br /><br />...
Clear a get date
It may be easier to use aGet[ 1 ]:SetDate( dNewDate ) For empty date, :SetDate( CTOD( "" ) )
Clear a get date
[b:4qep8zoe] NOT RUN[/b:4qep8zoe] MENUITEM "Pulisci" ACTION aGet[1]:SetDate( CTOD( "" ) ) or MENUITEM "Pulisci" ACTION (dDataNote :=cTod(""), aGet[1]:SetDate( dDataNote ) ,aGet[1]:refresh())
Clear a get date
[b:tr6ll1ee]is there a bug on datepicker class ?[/b:tr6ll1ee] I not understtod How resolve the error when I set date ( "") it not run [code=fw:tr6ll1ee]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /><span ...
Clear a get date
Now I found a solution use a simply Get no datepick @ 10,35 GET aGet[1] VAR dDataNote SIZE 80,12 PIXEL OF oDlg ; //PICTURE "ddd, dd mmmmm yyyy" BITMAP ".\bitmaps\cal.bmp" ACTION (dDataNote:=XBrDtPicker( , "Seleziona una date",0.1, ),aGet[1]:CTEXT(cf(dDataNote)),aGet[1]:refresh()) the action call a function O...
Clear internetcache
Hi, I use URLDownloadToFile to download file with FWH. It's working fine, but I noticed when I place a file on the site, download it, and the place a newer version, with the same name, the program still download the first version. I suppose the program get it from the cache. Is the a way to clean it?
Clear internetcache
Nevermind, I found it ,DELETEURLCACHEENTRY() <!-- s8) --><img src="{SMILIES_PATH}/icon_cool.gif" alt="8)" title="Cool" /><!-- s8) -->
Clearing Excel Cells
Hi Everybody,Does anyone know the command to select a range of cells and completely clear that range. I need to be able to remove the data in the cells and any formatting including the lines around the cell and any shading.
Clearing Excel Cells
oSheet:Range( <spec> ):Select()oExcel:Selection:ClearContents()oExcel:Selection:ClearFormats()
Clearing Excel Cells
Thanks Nageswaragunupudi.Exactly what I needed.
Clearing Gets
Hi Antonio I have created a window with two gets and a combobox - I can add the first record okay , but when I try to add a new record as below @ 2,01 SAY "Enter Job Number " SIZE 120,14 of oWnd1 @ 15,140 GET oGet VAR oSample:jbno SIZE 75,20 PIXEL OF oWnd1 UPDATE picture '@!' @ 2,22 SAY "Client " SIZE 50,14 ...
Clearing Gets
Colin, You have to implement it in control.prg METHOD Refresh() INLINE ::SetText( cValToChar( Eval( ::bSetGet ) ) )
Clearing Gets
Colin, This line had to be changed in source/classes/get.prg: METHOD Refresh() INLINE ::SetText( cValToChar( Eval( ::bSetGet ) ) ) With such change, this example is working fine: colin.prg [code=fw:oj8wfuu1]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span...
Clearing Gets
Much better if we apply such change in control.prg so the combobox issue gets solved too <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> colin.prg [code=fw:tk4nn7ev]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <spa...
Clearing Gets
Hi Antonio The get is cleared but when you type something into the empty get - the old value is still there. I downloaded your sample and it doe the same. Regards Colin
Clearing Gets
Colin, This change was also missing in source/classes/get.prg METHOD SetText( cText ) INLINE GetSetText( ::hWnd, cText ), ::oGet:buffer := cText Now it seems to be fine <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
Clearing Gets
Hi Antonio The gets are working great - I could not see a refresh method in the control program should I add METHOD Refresh() INLINE ::SetText( cValToChar( Eval( ::bSetGet ) ) ) so the combobox is cleared as well. Cheers Colin
Clearing Gets
Hi Antonio Here is a sample of my code - I can add , save skip forward and back and the gets work fine but the combobox does not update when I am skipping back and forward. [code=fw:3t0shwn8]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">static</span> <span style="color: ...
Clic Derecho Xbrowse (Solucionado)
Compañeros del foro buen día Lo que pasa es que tengo varias columnas definidas en un xbrowse. Y necesito que al hacer clic derecho me muestre un menu popup. Actualmente lo estoy haciendo de la siguiente manera: [code=fw:3i72k7cw]<div class="fw" id="{CB}" style="font-family: monospace;"><br />  oBrwDofa:<span style="...
Clic Derecho Xbrowse (Solucionado)
Leandro: Y la variable nCol de tu código no te da el número de columna sobre la que se da el clic? [code=fw:2ixy6123]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oBrwDofa:<span style="color: #000000;">bRClicked</span>           := <span style="color: #000000;">&#123;</span> | nRow, nCol | ShowPopup<...
Clic Derecho Xbrowse (Solucionado)
Please do not use bRClicked at all. Recommended: This is how XBrowse implements popups. oBrw:bPopUp := { |oCol| MyPopUp( oCol ) } // applies to the entire browse oCol:bPopup := { |oCol| MyPopUp( oCol ) } // Popup is shown when right clicked on this column only. Sample popup function: function MyPopUp( oCol ) ...
Clic Derecho Xbrowse (Solucionado)
[quote="Armando":1myomb2w]Leandro: Y la variable nCol de tu código no te da el número de columna sobre la que se da el clic? [code=fw:1myomb2w]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oBrwDofa:<span style="color: #000000;">bRClicked</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; := <span style="color...
Clic Derecho Xbrowse (Solucionado)
Aunque, evidentemente la indicacion correcta es la que indica Mr. Rao, creo que el metodo ::nAtCol( nPix ) devolvia la columna en la que te encuentras
Clic Derecho Xbrowse (Solucionado)
Excelente Mr.Rao Era lo que necesitaba. Muchas Gracias <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> Cristobal... Voy a realizar pruebas con tu informacion.
Click Izq. en Data de Xbrowse
Buenas a todos Como se da un solo Click con el boton Izq. del mouse en una columna del XBrowse oCol:bLDClickData:= {|| ELIGE(oDBF) } // Doble Click oCol:bRClickData:= {|| ELIGE(oDBF) } //Boton Derecho Si coloco oCol:bLClickData:= {|| ELIGE(oDBF) } <- Da error Gracias por la ayuda Saludos Adhemar
Click Izq. en Data de Xbrowse
[code=fw:23qv1uqg]<div class="fw" id="{CB}" style="font-family: monospace;">oBrow:<span style="color: #000000;">bRClicked</span> := <span style="color: #000000;">&#123;</span> | nRow, nCol | ELIGE<span style="color: #000000;">&#40;</span>nRow,nCol<span style="color: #000000;">&#41;</span> <span style="color: #000000;">...
Click Izq. en Data de Xbrowse
Gracias distinguido El ejemplo funciona para toda la línea, yo necesito solo para una columna. [img:1hsceepp]http&#58;//www&#46;lostajiboshotel&#46;com/soloclick&#46;jpg[/img:1hsceepp] Dando doble click me funciona. Yo quiero con un solo click izq. Gracias amigos Saludos Adhemar
Click Izq. en Data de Xbrowse
[code=fw:20vftmii]<div class="fw" id="{CB}" style="font-family: monospace;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;oBrow:<span style="color: #000000;">aCols</span><span style="color: #000000;">&#91;</span><span style="color: #000000;">01</span><span style="color: #000000;">&#93;</span>:<span style="color: #000000;">b...
Click Izq. en Data de Xbrowse
Distinguido Es lo mismo, Doble Click Izq. un click derecho, creo que no existe para un solo click izq. en la DATA. Gracias amigo Saludos Adhemar
Click and hold the left mouse button
Hi Antonio and All, How to handle ' left mouse button click-and-hold' (hold stylus ) in listbox control ? I'm trying oBrow:brClicked but not working. TIA best regards Jaroslaw Kadziola P.S. Antonio, what about FW on WindowsRT, Windows Phone ?
Click and run a UNC from an e-mail
To All I am building a workflow application where you have to fill out a task, generated by an ( application driven ) ( lets say a ) travel request that then needs to go through the approver chain which is kicked off by sending each approver an e-mail with a direct link ( unc ) to the application .. something like th...
Click automático (solucionado)
Estimados amigos: Necesito que el mouse haga click un lugar determinado de la pantalla. ¿Hay alguna manera de programar esto?
Click automático (solucionado)
[code=fw:2idfq9ah]<div class="fw" id="{CB}" style="font-family: monospace;"><br />    oObj:<span style="color: #0000ff;">Click</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /> </div>[/code:2idfq9ah] Por ejemplo: <!-- l --><a class="postlink-local" href="http://forums.fi...
Click automático (solucionado)
Gracias por responder Karinha pero en realidad estaba buscando un función para hacer clic una ventana de otro programa. De todas formas encontré otra alternativa.
Click en RBBTN (SOLUCIONADO)
Como hago para simular enviar un click en un RBBTN desde un XBrowse? tengo asi mi codigo: #define WM_CLICK 245 REDEFINE RBBTN aoBtn[3] ID 107 OF oDlg BITMAP oApp:cDirBmps+"Add.bmp" ; ACTION ( IF(MsgYesNo("Esta Seguro de Agregar un Movimiento ?","Aviso"),; Agrega...
Click en RBBTN (SOLUCIONADO)
Hola prueba con hacer un eval de la accion del boton Eval( oBtn:bAction ) o usar el metodo click del botton oBtn:Click()
Click en RBBTN (SOLUCIONADO)
Gracias Daniel tan simple como usar el click() pak.o[quote="Francisco Horta":2gdqor5l]Como hago para simular enviar un click en un RBBTN desde un XBrowse? tengo asi mi codigo: #define WM_CLICK 245 REDEFINE RBBTN aoBtn[3] ID 107 OF oDlg BITMAP oApp:cDirBmps+"Add.bmp" ; ACTION ( IF(MsgYesNo("Es...
Click en RBBTN (SOLUCIONADO)
Francisco; Lo que Daniel sugiere que hagas para esto: [code=fw:3evdpyko]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #000000;">&#91;</span>code<span style="color: #000000;">&#93;</span>oBrw:<span style="color: #000000;">bKeydown</span> := <span style="color: #000000;">&#123;</span>|nKey...
Click en RBBTN (SOLUCIONADO)
Mario, utilizando el click() me dio el resultado, son buenas opciones las 2 saludos pak.o
Click en bordes de ventana de Dialogo y se desplegue otra.
Hola amigos del forum. Existe algun ejemplo donde en el borde de una ventana de dialogo, ya sea en el borde izquierdo, derecho o en la parte inferior pueda darle click y se desplegue otra ventana de dialogo, y cuando se le de click nuevamente se oculte.
Click en una columna
Hola a todos Quiero sabe si puedo controlar el evento "Click" sobre una columna de XBrowse. Existe el codeblock "bLDClickData", pero no un solo "Click". Gracias.
Click en una columna
Manuel; Probaste con bRClickData, segun la ayuda: [quote:12s7g911] Bloque de código a ser evaluado cuando se da clic derecho sobre el renglón de datos[/quote:12s7g911]
Click en una columna
Manuel, tambien puedes probar con: oBrw:bRClicked Saludos.
Click en una columna
Si lo quieres con click izquierdo, esto funciona: :bLClicked := {|| msginfo("Hola") } Saludos.
Click en una columna
Francisco Esas datas q mencionas no son del objeto columna, no puedo usarlas. Mi deseo es controlar un único "click" sobre una columna de un objeto XBrowse. Saludos.
Click on TCBrowse Header to change sort order.
We would like to modify our current browse to allow for the user to click on a heading and then toggle the sort from Assending, to Decending and back. We cannot figure out how to trap the event of a Left Click on a column. Anybody know how to perform this task. It seems that the cursor turns into a hand upon the mou...
Click on TGroup
I'm trying to fire an action when a TGroup is clicked but it doesn't work. Any ideas? This is a sample: [code=fw:2xydo6rj]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"Fivewin.ch"</span><br /><br /><br />REQUEST HB_GT_GUI_DEFAULT<...
Click on TGroup
Enrico, I think it is the only way how it works. Check the mouseclick-area ( tested ) : [code=fw:hnptvv1b]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">FUNCTION</span> D_CODE<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><span ...
Click on TGroup
Thank you. I will try it. EMG
Click on Xbrowse with oTree menu
Dear All, I would like to create menu as Samples\Metro2.prg with submenu. Where can I set :OnClicked? I try with ::Cargo but don't successful. Thanks in advance, [url=http&#58;//imageshack&#46;us/photo/my-images/41/u6f5&#46;png/:cq8ah9xw][img:cq8ah9xw]http&#58;//img41&#46;imageshack&#46;us/img41/5589/u6f5&#46;png[...
Click on Xbrowse with oTree menu
Double Click toggles open/close of subtree This is automatically set by xbrwose when we browse a tree
Click sobre celda de Xbrowse y enviar a función
Hola a tod@s. No sé como hacerlo: tengo una columna de un xBrowse en la que he puesto un icono y lo que intento conseguir es que al hacer clic (no doble clic) me ejecuta una función. Por más que reviso ejemplos no veo como conseguirlo. Gracias por adelantado. Fernando Morales Las Palmas de Gran Canaria
Click sobre celda de Xbrowse y enviar a función
Buen dia, mira \samples\xbrwedit.prg se ayuda. +- linea: 20 Regardas, saludos.
Click sobre celda de Xbrowse y enviar a función
Hola y gracias por la respuesta. Me da la impresión que no hay definido (al menos yo no lo veo) un codeblock para el single clic izquierdo del mouse sobre la columna. Al final lo he resuelto con el codeblock del doble click: oBrw:aCols[16]:bLDClickData := {||GraficaCliente(oBrw, nEjercicio)} Y resuelto. Gracias ...
Click sul WBrowse
Ciao a tutti, vorrei simulare, su un wbrowse, alla pressione del tasto destro prima il click del sinistro e poi le azioni tipo popup o altro, è possibile? Spero di si...
Click sul WBrowse
Sì, come prima cosa mettici [code:1e7y8syx]oBrw&#58;LButtonDown&#40; nRow, nCol, nFlags &#41;[/code:1e7y8syx] EMG
Click sul WBrowse
Enrico, proprio ciò che serviva... Grazie!
Click! is a CA-Clipper and Xbase++ source code reformatter
Hello, has someone a working copy of Click. Thanks in advance Otto [url:j0747p5u]https&#58;//harbour&#46;github&#46;io/the-oasis/[/url:j0747p5u] [quote:j0747p5u]Click! is a CA-Clipper and Xbase++ source code reformatter. This is much more than a simple reindenter, but actually reestablishes spacing between elements...
Click! is a CA-Clipper and Xbase++ source code reformatter
Hi Otto, Did you download the version on Oasis? It is a 16bit program so you will have to have an old computer to run it. James
Click! is a CA-Clipper and Xbase++ source code reformatter
Dear James, thank you for your answer. Yes I downloaded the files. I saw that there is also the source code included and thought that someone has it running with harbour. I am missing the §Evolve –Reindent” function of ME. Best regards, Otto
Click! is a CA-Clipper and Xbase++ source code reformatter
In harbour there is the hbFormat [url:2vmo9vjp]https&#58;//github&#46;com/harbour/core/tree/master/contrib/hbformat[/url:2vmo9vjp] maybe it is the successor of Click!