messages listlengths 1 1 | topic stringlengths 2 60 |
|---|---|
[
{
"date": "2019-12-10",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello,\nI have an old source code. There is an input screen with many controls on it.\nIf you change one of the controls all others are updated. This is done by one function.\nBut there are many parameters to pass. Sure this could... | Clean source code |
[
{
"date": "2014-10-03",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi,\n\nIs there any other way to clear the com port buffer?\nI have tried:\n\n[code=fw:3i0c12ba]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #00C800;\">if</span> FlushComm<span style=\... | Clear COM port buffer |
[
{
"date": "2014-10-04",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Jeff,\n\nFWH provides CloseComm( nPort ), not sure if you may need to close it and open it again.\n\nAnyhow if you post an example of how you are using it we will be able to provide you a better help,",
"time": "11:56",
"t... | Clear COM port buffer |
[
{
"date": "2014-10-04",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Here is a sample of the code.\nlSetOX is set to .T. during the initial connection, then set to .F. after the connection is made.\n\nThe code below is called every second via a timer.\n\n[code=fw:2kpvhaw6]<div class=\"fw\" id=\"{CB... | Clear COM port buffer |
[
{
"date": "2014-10-04",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Jeff,\n\nthis is a sample of how should you use the communication device:\n\n[code=fw:19ubpg7o]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #00D7D7;\">#include</span> <span style=\"color: #f... | Clear COM port buffer |
[
{
"date": "2014-10-06",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi Enrico,\n\nI have been playing with your sample and it works perfectly to show the data coming in via your dialog box and get.\nThe problem I am having is using your example to put the data into a string instead of a get (witho... | Clear COM port buffer |
[
{
"date": "2014-10-06",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Jeff,\n\nthis is how to read a string from the communication port:\n\n[code=fw:39e0ohqq]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">cStr = RECEIVESTR<span style=\"color: #000000;\">(</span> nCom <span style... | Clear COM port buffer |
[
{
"date": "2014-10-07",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"Enrico Maria Giordano\":2yw2ij4e]Jeff,\n\nthis is how to read a string from the communication port:\n\n[code=fw:2yw2ij4e]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">cStr = RECEIVESTR<span style=\"color... | Clear COM port buffer |
[
{
"date": "2014-10-08",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Got it working ... I had to adjust the buffer size.\nThanks everyone for the help.",
"time": "13:18",
"topic": "Clear COM port buffer",
"username": "Jeff Barnes"
}
] | Clear COM port buffer |
[
{
"date": "2014-10-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "HI,\n\nI 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 i... | Clear COM port buffer |
[
{
"date": "2014-10-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Peter,\n\nyou should not care of how many characters are read at a time. Just read and store any characters you receive.\n\nEMG",
"time": "15:26",
"topic": "Clear COM port buffer",
"username": "Enrico Maria Giordano"
... | Clear COM port buffer |
[
{
"date": "2013-07-03",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Maestro Antonio, que sustituye ell comando CLEAR GETS del clipper?\n\nTengo 30 GETS y me gustaría que 20 GETS és WHEN( . F. ) com se fueste: CLEAR GETS de clipper.\n\nÉ posible?\n\nSalu2.",
"time": "21:13",
"topic": "Clea... | Clear Gets |
[
{
"date": "2013-07-04",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hola,\n\nme 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 r... | Clear Gets |
[
{
"date": "2013-07-04",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Como te indica Marcelo, el código seria más o menos asi:\n\nAEval( oDlg:aControls, { | o | If( Upper( o:ClassName() ) == \"TGET\", o:SetText( uValBlank( o:GetText() ) ),) } )",
"time": "16:06",
"topic": "Clear Gets",
... | Clear Gets |
[
{
"date": "2018-08-08",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Help me...\n\nHow to clear memory completely (deleting variables, fonts, and bitmaps) created or loaded by a other PRG ????\n\nExample:\n\n[file main.prg]\n\n#include fivewin.prg\n\nPUBLIC oBtn, oMain\n\ndefine window oMain FROM ... | Clear Memory |
[
{
"date": "2018-08-08",
"forum": "FiveWin for Harbour/xHarbour",
"text": "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).\n\nEMG",
"time": "09:01",
"t... | Clear Memory |
[
{
"date": "2018-08-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[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 dia... | Clear Memory |
[
{
"date": "2018-08-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[url:3ert9dhl]http://forums.fivetechsupport.com/viewtopic.php?f=6&t=35925[/url:3ert9dhl]",
"time": "13:45",
"topic": "Clear Memory",
"username": "karinha"
}
] | Clear Memory |
[
{
"date": "2018-08-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"shark\":2vwp9s0k]But... when I shut down the system it shows those resources loaded and not released:[/quote:2vwp9s0k]\n\nThis is probably the effect of some bugs in your code. Please look at the first line:\n\n[code=fw:... | Clear Memory |
[
{
"date": "2018-08-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "This is what we see in checkres.txt. This indicates the resources that are not explicitly released by the application.\nBut after reporting by checkres.txt, all the resources are released when the exe is ends.\n\nCheckres.txt is i... | Clear Memory |
[
{
"date": "2018-08-10",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"nageswaragunupudi\":2r1fuzaa]This is what we see in checkres.txt. This indicates the resources that are not explicitly released by the application.\nBut after reporting by checkres.txt, all the resources are released when... | Clear Memory |
[
{
"date": "2018-08-10",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[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]\n\nThis is probably the effect of some bugs in your code. P... | Clear Memory |
[
{
"date": "2018-08-10",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"karinha\":so0qale4][url:so0qale4]http://forums.fivetechsupport.com/viewtopic.php?f=6&t=35925[/url:so0qale4][/quote:so0qale4]\n\nThanks. But, that's not what I need.\n\nI do not want to release all variable... | Clear Memory |
[
{
"date": "2018-08-10",
"forum": "FiveWin for Harbour/xHarbour",
"text": "In your code\n\n[code=fw:3et9e13p]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #00C800;\">FUNCTION</span> Main<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\... | Clear Memory |
[
{
"date": "2018-08-10",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[url:1q4ql97i]http://forums.fivetechsupport.com/viewtopic.php?f=6&t=31558&p=183983&hilit=re+mi+app+se+cuelga#p183983[/url:1q4ql97i]",
"time": "18:37",
"topic": "Clear Memory",
"username": "armando.lagun... | Clear Memory |
[
{
"date": "2007-08-02",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Estimados\n\ntengo un browse el cual al presionar la tecla ENTER entra a un dialogo\npero resulta que dentro del dialogo si se presiona el boton salir vuelve a ejecutarse nuevamente, como si hubiera presionado enter nuevamente\n\... | Clear Typehead |
[
{
"date": "2007-08-02",
"forum": "FiveWin para Harbour/xHarbour",
"text": "oBrw:bKeyDown :={|nkey,nFlag| IF(nKey=13, ABMBancos(oDbf,oBrw,oDlg,nKey,oWnd), )}\n\nPrueba lo siguiente.\nSaludos, Esteban.",
"time": "15:46",
"topic": "Clear Typehead",
"username": "jrestojeda"
}
] | Clear Typehead |
[
{
"date": "2007-08-02",
"forum": "FiveWin para Harbour/xHarbour",
"text": "gracias por responder pero igual sigue el problema\n\npor ahora lo he dejado en comentario, solo con el dblclick del mouse\n\nviendo post antiguo creo que no existe una solucion...\n\n\n\nsaludos..",
"time": "16:06",
"top... | Clear Typehead |
[
{
"date": "2007-08-02",
"forum": "FiveWin para Harbour/xHarbour",
"text": "No te olvides de que dentro de tu funcion ABM debes refrescar el oBrw y ponerle el foco justo antes de terminar.\n\nEs decir:\n\noBrw:bKeyDown :={|nkey,nFlag| IF(nKey=13, ABMBancos(oDbf,oBrw,oDlg,nKey,oWnd), )} \n\n...\n...\n\n//... | Clear Typehead |
[
{
"date": "2007-08-02",
"forum": "FiveWin para Harbour/xHarbour",
"text": "a mi me va bien,\nprueba a usar:\nnKey==VK_RETURN\nen lugar de:\nnKey=13\ny no olvides cuando cierras el dialogo poner el foco en el browse\nsalu2\npaco",
"time": "17:00",
"topic": "Clear Typehead",
"username": "Franc... | Clear Typehead |
[
{
"date": "2007-08-02",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Asi tengo el final del la funcion ABM, igual el problem..! <!-- s:-( --><img src=\"{SMILIES_PATH}/icon_sad.gif\" alt=\":-(\" title=\"Sad\" /><!-- s:-( -->\n\n[code:2081ltw3]ACTIVATE DIALOG oDlg CENTERED ON PAINT iif( valtype&... | Clear Typehead |
[
{
"date": "2007-08-02",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Una pregunta:\n\nComo estás defiendo el Boton para salir?",
"time": "17:11",
"topic": "Clear Typehead",
"username": "jrestojeda"
}
] | Clear Typehead |
[
{
"date": "2007-08-02",
"forum": "FiveWin para Harbour/xHarbour",
"text": "[code:1dr5cowb]REDEFINE BUTTON ID 716 OF oDlg\t;\n\t\t\t\tACTION oDlg:End() ;\n\t\t\tCANCEL\n[/code:1dr5cowb]\n\nadjunto un pequeño video,..\n\n[url:1dr5cowb]http://www.bigupload.com/d=77487AC1[/url:1dr... | Clear Typehead |
[
{
"date": "2007-08-02",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Mira aparentemente está todo bien.\nA 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.\n\nif Valtype( oBrw ) = \"O\" \n ... | Clear Typehead |
[
{
"date": "2007-08-02",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Encontre el problema\n\nMirando el metodo keydown() de la clase twbrowse\n\n[code:14930hrr]METHOD KeyDown( nKey, nFlags ) CLASS TWBrowse\n\n local lRefresh\n\nif ::bKeyDown != nil\n Eval( ::bKeyDo... | Clear Typehead |
[
{
"date": "2007-08-02",
"forum": "FiveWin para Harbour/xHarbour",
"text": "patricio este el metodo keydown que tengo en la clase, probablemente tienes la ver no mas actual de la 17\nMETHOD KeyDown( nKey, nFlags ) CLASS TWBrowse\n\n local lRefresh\n\n do case\n case nKey == VK_UP\n ::c... | Clear Typehead |
[
{
"date": "2018-07-31",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I have a get date with datepick \nNear I have a btnbmp with a Menu to select actions\n\n\n[img:2ueigbct]https://s33.postimg.cc/5mj94ythb/image.png[/img:2ueigbct]\n\n \n[code=fw:2ueigbct]<div class=\"fw\" id=\"{CB}\... | Clear a get date |
[
{
"date": "2018-07-31",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[code=fw:dpug71d2]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /> oBtnCal:<span style=\"color: #000000;\">oPopUp</span>:= <span style=\"color: #000000;\">{</span> |oBtn| BtnPopCalMenu<span s... | Clear a get date |
[
{
"date": "2018-08-01",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[b:16pttdna]Error !!![/b:16pttdna]\n\n[code=fw:16pttdna]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">Application<br />===========<br /> Path and <span style=\"color: #0000ff;\">name</span>: <span sty... | Clear a get date |
[
{
"date": "2018-08-01",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[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... | Clear a get date |
[
{
"date": "2018-08-02",
"forum": "FiveWin for Harbour/xHarbour",
"text": "It may be easier to use aGet[ 1 ]:SetDate( dNewDate )\nFor empty date, :SetDate( CTOD( \"\" ) )",
"time": "19:46",
"topic": "Clear a get date",
"username": "nageswaragunupudi"
}
] | Clear a get date |
[
{
"date": "2018-08-03",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[b:4qep8zoe] NOT RUN[/b:4qep8zoe]\nMENUITEM \"Pulisci\" ACTION aGet[1]:SetDate( CTOD( \"\" ) )\n\nor\n\n MENUITEM \"Pulisci\" ACTION (dDataNote :=cTod(\"\"), aGet[1]:SetDate( dDataNote ) ,aGet[1]:refresh())",
"time": ... | Clear a get date |
[
{
"date": "2018-08-05",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[b:tr6ll1ee]is there a bug on datepicker class ?[/b:tr6ll1ee]\n\nI not understtod How resolve the error \nwhen I set date ( \"\") it not run\n\n[code=fw:tr6ll1ee]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><spa... | Clear a get date |
[
{
"date": "2018-08-05",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Now I found a solution \nuse a simply Get no datepick\n\n @ 10,35 GET aGet[1] VAR dDataNote SIZE 80,12 PIXEL OF oDlg ; //PICTURE \"ddd, dd mmmmm yyyy\"\n BITMAP \".\\bitmaps\\cal.bmp\" ACTION (dDataNote:=XBrDtPicker( , \"Sele... | Clear a get date |
[
{
"date": "2020-07-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi,\n\nI use URLDownloadToFile to download file with FWH.\nIt'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,\nthe program still download the first ve... | Clear internetcache |
[
{
"date": "2020-07-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Nevermind, I found it ,DELETEURLCACHEENTRY() <!-- s8) --><img src=\"{SMILIES_PATH}/icon_cool.gif\" alt=\"8)\" title=\"Cool\" /><!-- s8) -->",
"time": "13:22",
"topic": "Clear internetcache",
"username": "Marc Vanzegbro... | Clear internetcache |
[
{
"date": "2008-06-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi Everybody,\r\n\r\nDoes anyone know the command to select a range of cells and completely clear that range. \r\n\r\nI need to be able to remove the data in the cells and any formatting including the lines around the cell and an... | Clearing Excel Cells |
[
{
"date": "2008-06-28",
"forum": "FiveWin for Harbour/xHarbour",
"text": "oSheet:Range( <spec> ):Select()\r\noExcel:Selection:ClearContents()\r\noExcel:Selection:ClearFormats()",
"time": "08:15",
"topic": "Clearing Excel Cells",
"username": "nageswaragunupudi"
}
] | Clearing Excel Cells |
[
{
"date": "2008-06-30",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Thanks Nageswaragunupudi.\r\n\r\nExactly what I needed.",
"time": "02:20",
"topic": "Clearing Excel Cells",
"username": "Jeff Barnes"
}
] | Clearing Excel Cells |
[
{
"date": "2013-02-26",
"forum": "FiveLinux / FiveDroid (Android)",
"text": "Hi Antonio\n\nI have created a window with two gets and a combobox - I can add the first record okay ,\nbut when I try to add a new record as below\n\n@ 2,01 SAY \"Enter Job Number \" SIZE 120,14 of oWnd1\n @ 15,140 GET oGe... | Clearing Gets |
[
{
"date": "2013-02-27",
"forum": "FiveLinux / FiveDroid (Android)",
"text": "Colin,\n\nYou have to implement it in control.prg\n\n METHOD Refresh() INLINE ::SetText( cValToChar( Eval( ::bSetGet ) ) )",
"time": "12:32",
"topic": "Clearing Gets",
"username": "Antonio Linares"
}
] | Clearing Gets |
[
{
"date": "2013-02-27",
"forum": "FiveLinux / FiveDroid (Android)",
"text": "Colin,\n\nThis line had to be changed in source/classes/get.prg:\n\nMETHOD Refresh() INLINE ::SetText( cValToChar( Eval( ::bSetGet ) ) )\n\nWith such change, this example is working fine:\n\ncolin.prg\n[code=fw:oj8wfuu1]<div cl... | Clearing Gets |
[
{
"date": "2013-02-27",
"forum": "FiveLinux / FiveDroid (Android)",
"text": "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:-) -->\n\ncolin.prg\n[code=fw:tk4nn7ev]<div c... | Clearing Gets |
[
{
"date": "2013-02-27",
"forum": "FiveLinux / FiveDroid (Android)",
"text": "Hi Antonio\n\nThe get is cleared but when you type something into the empty get - the old value is still there.\n\nI downloaded your sample and it doe the same.\n\nRegards\n\nColin",
"time": "10:06",
"topic": "Clearing ... | Clearing Gets |
[
{
"date": "2013-02-27",
"forum": "FiveLinux / FiveDroid (Android)",
"text": "Colin,\n\nThis change was also missing in source/classes/get.prg\n\n METHOD SetText( cText ) INLINE GetSetText( ::hWnd, cText ), ::oGet:buffer := cText\n\nNow it seems to be fine <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_sm... | Clearing Gets |
[
{
"date": "2013-02-27",
"forum": "FiveLinux / FiveDroid (Android)",
"text": "Hi Antonio\n\nThe gets are working great - I could not see a refresh method in the control\nprogram should I add METHOD Refresh() INLINE ::SetText( cValToChar( Eval( ::bSetGet ) ) ) \nso the combobox is cleared as well.\n\nChee... | Clearing Gets |
[
{
"date": "2013-02-27",
"forum": "FiveLinux / FiveDroid (Android)",
"text": "Hi Antonio\n\nHere is a sample of my code - I can add , save skip forward and back and the gets work fine but the combobox does\nnot update when I am skipping back and forward.\n[code=fw:3t0shwn8]<div class=\"fw\" id=\"{CB}\" s... | Clearing Gets |
[
{
"date": "2015-06-30",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Compañeros del foro buen día\n\nLo 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:\n\n[code=fw:3i... | Clic Derecho Xbrowse (Solucionado) |
[
{
"date": "2015-06-30",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Leandro:\n\nY la variable nCol de tu código no te da el número de columna sobre la que se da el clic?\n[code=fw:2ixy6123]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br />oBrwDofa:<span style=\"color: #000000;... | Clic Derecho Xbrowse (Solucionado) |
[
{
"date": "2015-06-30",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Please do not use bRClicked at all.\n\nRecommended:\nThis is how XBrowse implements popups.\n\noBrw:bPopUp := { |oCol| MyPopUp( oCol ) } // applies to the entire browse\n\noCol:bPopup := { |oCol| MyPopUp( oCol ) } // Popup is... | Clic Derecho Xbrowse (Solucionado) |
[
{
"date": "2015-06-30",
"forum": "FiveWin para Harbour/xHarbour",
"text": "[quote=\"Armando\":1myomb2w]Leandro:\n\nY la variable nCol de tu código no te da el número de columna sobre la que se da el clic?\n[code=fw:1myomb2w]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br />oBrwDofa:<... | Clic Derecho Xbrowse (Solucionado) |
[
{
"date": "2015-06-30",
"forum": "FiveWin para Harbour/xHarbour",
"text": "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",
"time": "18:54",
"topic": "Clic Derecho Xbrowse (Solucionado)",
... | Clic Derecho Xbrowse (Solucionado) |
[
{
"date": "2015-06-30",
"forum": "FiveWin para Harbour/xHarbour",
"text": "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 -->\n\nCristobal... Voy a realizar pruebas con tu informacion.",
"tim... | Clic Derecho Xbrowse (Solucionado) |
[
{
"date": "2009-04-24",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Buenas a todos\n\nComo se da un solo Click con el boton Izq. del mouse en una columna del XBrowse\n\noCol:bLDClickData:= {|| ELIGE(oDBF) } // Doble Click\noCol:bRClickData:= {|| ELIGE(oDBF) } //Boton Derecho\n\nSi coloco\noCol:b... | Click Izq. en Data de Xbrowse |
[
{
"date": "2009-04-27",
"forum": "FiveWin para Harbour/xHarbour",
"text": "[code=fw:23qv1uqg]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">oBrow:<span style=\"color: #000000;\">bRClicked</span> := <span style=\"color: #000000;\">{</span> | nRow, nCol | ELIGE<span style=\"color: #0... | Click Izq. en Data de Xbrowse |
[
{
"date": "2009-04-27",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Gracias distinguido\n\nEl ejemplo funciona para toda la línea, yo necesito solo para una columna.\n\n[img:1hsceepp]http://www.lostajiboshotel.com/soloclick.jpg[/img:1hsceepp]\n\nDando doble click me funciona. Yo ... | Click Izq. en Data de Xbrowse |
[
{
"date": "2009-04-27",
"forum": "FiveWin para Harbour/xHarbour",
"text": "[code=fw:20vftmii]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"> oBrow:<span style=\"color: #000000;\">aCols</span><span style=\"color: #000000;\">[</span><span style=... | Click Izq. en Data de Xbrowse |
[
{
"date": "2009-04-28",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Distinguido\n\nEs lo mismo, Doble Click Izq. un click derecho, creo que no existe para un solo click izq. en la DATA.\n\nGracias amigo\n\nSaludos\n\nAdhemar",
"time": "13:08",
"topic": "Click Izq. en Data de Xbrowse",
... | Click Izq. en Data de Xbrowse |
[
{
"date": "2014-09-26",
"forum": "FiveWin for Pocket PC",
"text": "Hi Antonio and All,\n\nHow to handle ' left mouse button click-and-hold' (hold stylus ) in listbox control ? \nI'm trying oBrow:brClicked but not working. \n\n\nTIA\n\nbest regards\nJaroslaw Kadziola\n\nP.S. Antonio, what about FW on Wi... | Click and hold the left mouse button |
[
{
"date": "2019-12-26",
"forum": "FiveWin for Harbour/xHarbour",
"text": "To All\n\nI 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 sendin... | Click and run a UNC from an e-mail |
[
{
"date": "2014-04-23",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Estimados amigos:\n\nNecesito que el mouse haga click un lugar determinado de la pantalla. ¿Hay alguna manera de programar esto?",
"time": "21:04",
"topic": "Click automático (solucionado)",
"username": "abelcervantes... | Click automático (solucionado) |
[
{
"date": "2014-04-23",
"forum": "FiveWin para Harbour/xHarbour",
"text": "[code=fw:2idfq9ah]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /> oObj:<span style=\"color: #0000ff;\">Click</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span>... | Click automático (solucionado) |
[
{
"date": "2014-04-26",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Gracias por responder Karinha pero en realidad estaba buscando un función para hacer clic una ventana de otro programa.\nDe todas formas encontré otra alternativa.",
"time": "14:09",
"topic": "Click automático (solucionad... | Click automático (solucionado) |
[
{
"date": "2011-08-20",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Como hago para simular enviar un click en un RBBTN desde un XBrowse?\ntengo asi mi codigo:\n\n#define WM_CLICK 245\n\nREDEFINE RBBTN aoBtn[3] ID 107 OF oDlg BITMAP oApp:cDirBmps+\"Add.bmp\" ;\n ACTION ( IF... | Click en RBBTN (SOLUCIONADO) |
[
{
"date": "2011-08-20",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hola\n\n\nprueba con hacer un eval de la accion del boton\n\nEval( oBtn:bAction )\n\no usar el metodo click del botton\n\noBtn:Click()",
"time": "20:58",
"topic": "Click en RBBTN (SOLUCIONADO)",
"username": "Daniel Ga... | Click en RBBTN (SOLUCIONADO) |
[
{
"date": "2011-08-22",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Gracias Daniel\ntan simple como usar el click()\npak.o[quote=\"Francisco Horta\":2gdqor5l]Como hago para simular enviar un click en un RBBTN desde un XBrowse?\ntengo asi mi codigo:\n\n#define WM_CLICK 245\n\nREDEFINE RBBTN... | Click en RBBTN (SOLUCIONADO) |
[
{
"date": "2011-08-24",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Francisco;\nLo que Daniel sugiere que hagas para esto:\n[code=fw:3evdpyko]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #000000;\">[</span>code<span style=\"color: #000000;\">]</span... | Click en RBBTN (SOLUCIONADO) |
[
{
"date": "2011-08-24",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Mario, \nutilizando el click() me dio el resultado, son buenas opciones las 2\nsaludos\npak.o",
"time": "19:17",
"topic": "Click en RBBTN (SOLUCIONADO)",
"username": "Francisco Horta"
}
] | Click en RBBTN (SOLUCIONADO) |
[
{
"date": "2019-11-18",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hola amigos del forum.\n\n\nExiste 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 d... | Click en bordes de ventana de Dialogo y se desplegue otra. |
[
{
"date": "2013-05-07",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hola a todos\n\nQuiero sabe si puedo controlar el evento \"Click\" sobre una columna de XBrowse.\n\nExiste el codeblock \"bLDClickData\", pero no un solo \"Click\".\n\nGracias.",
"time": "09:06",
"topic": "Click en una co... | Click en una columna |
[
{
"date": "2013-05-07",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Manuel;\nProbaste con bRClickData, segun la ayuda:\n[quote:12s7g911] Bloque de código a ser evaluado cuando se da clic derecho sobre el renglón de datos[/quote:12s7g911]",
"time": "13:19",
"topic": "Click en una columna",... | Click en una columna |
[
{
"date": "2013-05-07",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Manuel, tambien puedes probar con:\noBrw:bRClicked \nSaludos.",
"time": "14:24",
"topic": "Click en una columna",
"username": "FranciscoA"
}
] | Click en una columna |
[
{
"date": "2013-05-07",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Si lo quieres con click izquierdo, esto funciona:\n:bLClicked := {|| msginfo(\"Hola\") }\nSaludos.",
"time": "14:40",
"topic": "Click en una columna",
"username": "FranciscoA"
}
] | Click en una columna |
[
{
"date": "2013-05-08",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Francisco\n\nEsas datas q mencionas no son del objeto columna, no puedo usarlas.\n\nMi deseo es controlar un único \"click\" sobre una columna de un objeto XBrowse.\n\nSaludos.",
"time": "19:21",
"topic": "Click en una co... | Click en una columna |
[
{
"date": "2014-05-16",
"forum": "FiveWin for Harbour/xHarbour",
"text": "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.\n\nWe cannot figure out how to trap the event of a Left Click on a column. Any... | Click on TCBrowse Header to change sort order. |
[
{
"date": "2012-07-01",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I'm trying to fire an action when a TGroup is clicked but it doesn't work. Any ideas? This is a sample:\n\n[code=fw:2xydo6rj]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #00D7D7;\">#include<... | Click on TGroup |
[
{
"date": "2012-07-01",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Enrico,\n\nI think it is the only way how it works.\nCheck the mouseclick-area ( tested ) :\n\n[code=fw:hnptvv1b]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #00C800;\">FUNCTION</span>... | Click on TGroup |
[
{
"date": "2012-07-01",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Thank you. I will try it.\n\nEMG",
"time": "17:31",
"topic": "Click on TGroup",
"username": "Enrico Maria Giordano"
}
] | Click on TGroup |
[
{
"date": "2013-09-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dear All,\n\nI would like to create menu as Samples\\Metro2.prg with submenu. Where can I set :OnClicked? I try with ::Cargo but don't successful.\n\nThanks in advance,\n[url=http://imageshack.us/photo/my-images/41/u6f5... | Click on Xbrowse with oTree menu |
[
{
"date": "2013-09-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Double Click toggles open/close of subtree\nThis is automatically set by xbrwose when we browse a tree",
"time": "08:46",
"topic": "Click on Xbrowse with oTree menu",
"username": "nageswaragunupudi"
}
] | Click on Xbrowse with oTree menu |
[
{
"date": "2022-03-03",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hola a tod@s.\n\nNo 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. \nPor más que reviso ejemplos no veo como ... | Click sobre celda de Xbrowse y enviar a función |
[
{
"date": "2022-03-03",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Buen dia, mira \\samples\\xbrwedit.prg se ayuda. +- linea: 20\n\nRegardas, saludos.",
"time": "12:12",
"topic": "Click sobre celda de Xbrowse y enviar a función",
"username": "karinha"
}
] | Click sobre celda de Xbrowse y enviar a función |
[
{
"date": "2022-03-03",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hola y gracias por la respuesta.\n\nMe 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: \... | Click sobre celda de Xbrowse y enviar a función |
[
{
"date": "2006-08-25",
"forum": "All products support",
"text": "Ciao a tutti,\nvorrei simulare, su un wbrowse, alla pressione del tasto destro prima il click del sinistro e poi le azioni tipo popup o altro, è possibile?\nSpero di si...",
"time": "19:11",
"topic": "Click sul WBrowse",
"user... | Click sul WBrowse |
[
{
"date": "2006-08-25",
"forum": "All products support",
"text": "Sì, come prima cosa mettici\n\n[code:1e7y8syx]oBrw:LButtonDown( nRow, nCol, nFlags )[/code:1e7y8syx]\n\nEMG",
"time": "21:05",
"topic": "Click sul WBrowse",
"username": "Enrico Maria Giordano"
}
] | Click sul WBrowse |
[
{
"date": "2006-08-26",
"forum": "All products support",
"text": "Enrico,\nproprio ciò che serviva...\n\nGrazie!",
"time": "13:45",
"topic": "Click sul WBrowse",
"username": "Ugo"
}
] | Click sul WBrowse |
[
{
"date": "2018-04-14",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello,\n\nhas someone a working copy of Click.\n\nThanks in advance\nOtto\n\n[url:j0747p5u]https://harbour.github.io/the-oasis/[/url:j0747p5u]\n[quote:j0747p5u]Click! is a CA-Clipper and Xbase++ source code reformatte... | Click! is a CA-Clipper and Xbase++ source code reformatter |
[
{
"date": "2018-04-17",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi Otto,\n\nDid you download the version on Oasis? It is a 16bit program so you will have to have an old computer to run it.\n\nJames",
"time": "22:39",
"topic": "Click! is a CA-Clipper and Xbase++ source code reformatter"... | Click! is a CA-Clipper and Xbase++ source code reformatter |
[
{
"date": "2018-04-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dear James,\nthank you for your answer. Yes I downloaded the files.\nI saw that there is also the source code included and thought that someone has it running with harbour.\nI am missing the §Evolve –Reindent” function of ME.\nBes... | Click! is a CA-Clipper and Xbase++ source code reformatter |
[
{
"date": "2018-04-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "In harbour there is the hbFormat [url:2vmo9vjp]https://github.com/harbour/core/tree/master/contrib/hbformat[/url:2vmo9vjp] maybe it is the successor of Click!",
"time": "08:17",
"topic": "Click! is a CA-Clipper and... | Click! is a CA-Clipper and Xbase++ source code reformatter |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.