topic
stringlengths
1
63
text
stringlengths
1
577k
mariaDB y tDolphin?
Hola. quiero empezar a utilizar mariaDB, que librerias debo incluir en la aplicacion? funciona con tdolphin? gracias
mariaDB y tDolphin?
Si tienes la última actualización FWH te sugiero que utilices las clases nativas de FWH. Son muy fáciles de usar y muy bien integradas a xBrowse. Saludos
mariaDB y tDolphin?
Si ya usas Dolphin no tienes que hacer ningun cambio
mariaDB y tDolphin?
goosfancito Para FWH con Harbour y BCC7 [code=fw:vcoincj0]<div class="fw" id="{CB}" style="font-family: monospace;"><br />LIBS1 = $<span style="color: #000000;">&#40;</span>FWH<span style="color: #000000;">&#41;</span>\LIB\FiveH.lib $<span style="color: #000000;">&#40;</span>FWH<span style="color: #000000;">&#41;</spa...
mariaDB y tDolphin?
gacias
mariaDB y tDolphin?
[quote="horacio":132lznsj]Si tienes la última actualización FWH te sugiero que utilices las clases nativas de FWH. Son muy fáciles de usar y muy bien integradas a xBrowse. Saludos[/quote:132lznsj] Hola Cual seria esa actualizacion de que fecha ???
mariaDB y tDolphin?
La ultima es 17.04 ( Abril de 2017 ), todos los meses sale una nueva
mariadb
Buen dia... Una consulta como puedo eliminar un registro pero que cumpla la condicion bcodi es en nombre de un campo de la tabla cont0500 oRs := oCn:RowSet( "cont0500" ) // "lecturas" es una tabla de cDatabasename oRs:GoTop() Whil !oRs:Eof() If Subs(oRs:bcodi,1,1)="1" oRs:Delete();oRs:Save() Endi ...
mariadb
Hola nadie sabe como eliminar un registro? en mariadb
mariadb
Hola te recomiendo que uses codigo nativo de SQL.
mariadb
/* oRs := oCn:RowSet( "cont0500" ) // "lecturas" es una tabla de cDatabasename oRs:GoTop() Whil !oRs:Eof() If Subs(oRs:bcodi,1,1)="1" oRs:Delete();oRs:Save() Endi oRs:Skip(1) */ cQry := "DELETE FROM cont0500" + CLRF cQry += "WHERE bcodi=" + ClipValue2SQL( "1" ) oCn:Execute( cQry )
mariadb
cQry := "DELETE FROM cont0500" + CLRF cQry += "WHERE SUBSTRING(bcodi,1,1)=" + ClipValue2SQL( "1" ) oCn:Execute( cQry )
mariadb
[quote="Dioni":gl933v4o]Buen dia... Una consulta como puedo eliminar un registro pero que cumpla la condicion bcodi es en nombre de un campo de la tabla cont0500 oRs := oCn:RowSet( "cont0500" ) // "lecturas" es una tabla de cDatabasename oRs:GoTop() Whil !oRs:Eof() If Subs(oRs:bcodi,1,1)="1" oRs:Delete();...
mariadb
Excelente amigos Gracias por la ayuda Funciono si busco, y quiero eliminar todos los registros que cumplan un acondision bcodi:='102125225212252' If Subs(oRs:bcodi,4,2)="1" asi se hace en archivos dbf's y en mariadb seria asi ? oCn:Execute( "DELETE FROM `cont0500` WHERE `bcodi` LIKE '12%'" ) como le digo que subs(...
mariadb
"WHERE bcodi LIKE '12%'" is same as "SUBSTR( bcodi, 1, 2 ) = '12'" "WHERE bcode LIKE '___12%'" is same as "SUBSTR( bcodi, 4, 2 ) = '12'" LIKE is case insensitive The percentage ( % ) wildcard matches any string of zero or more characters. The underscore ( _ ) wildcard matches any single character.
mariadb - fwh 21_02
Hola a todos. Necesito hacer una aplicacion para uso personal que pueda utilizar mariadb embebido. existe algun ejemplo? gracias.
mariadb - fwh 21_02
fwh\samples\mysqlmbd.prg try [code=fw:2r35z4in]<div class="fw" id="{CB}" style="font-family: monospace;">bldmbh mysqlmbd</div>[/code:2r35z4in] in the samples folder
mariadb - fwh 21_02
Thanks, asks me "errmsg.sys", where is it?
mariadb - fwh 21_02
se me hace complicado compilar con los .bat pregunto: que librerias hay que integrar (hablo solo del mariadb) para probar mariadb embebido? porque veo en la carpeta lib varias y en la dll varias, a ver si puedo armar un proyecto con xmate y que salga funcionando al menos una conexion. gracias
mariadb and transaction
Hello, I currently use a customized version of tmysql which I modify to be able to use transactions in an easy way, currently after using calls to the query and execute methods, it is necessary to validate if there is an error to display a message, I have added a data which calls "lThrowError" which, when set to True, ...
mariadb xbrowse bstrData
Hola. Antes que se muestre el dato en el xbrowser necesito acortar el dato si sobrepasa los 90 caracteres. he pensado en esto pero no me estaria funcionando [code=fw:20ua6sp4]<div class="fw" id="{CB}" style="font-family: monospace;"> &nbsp; &nbsp; &nbsp;WITH OBJECT :<span style="color: #000000;">aCols</span><span styl...
mariadb xbrowse bstrData
[code=fw:2m0n6w34]<div class="fw" id="{CB}" style="font-family: monospace;">:<span style="color: #000000;">bStrData</span> := <span style="color: #000000;">&#123;</span> || <span style="color: #0000ff;">LEFT</span><span style="color: #000000;">&#40;</span> oQry:<span style="color: #000000;">C3</span>, <span style="colo...
marquesina
Ssaludos, habra manera de pasar un campo memo o texto de varias lineas y vaya corriendo al estilo marquesina , como los creditos de una pelicula, osea de abajo hacia arriba, gracias
marquesina
Hola: por favor fíjate en el foro o en utilidades, hay algunos ejemplos con Dsay o con ssay creo que son de Ramon Avendaño. Saludos Ruben Fernandez
mas DATAs en un BTNBMP? (SOLUCIONADO)
Hola Foreros: Cómo puedo definir mas de una DATA de cargo en un BTNBMP ??? Esto es lo que necesito oBtn[nVez]:cargo := oRsHab:Fields("HAB_NUM"):Value oBtn[nVez]:Status := oRsHab:Fields("HAB_STS"):Value Gracias de antemano Saludos
mas DATAs en un BTNBMP? (SOLUCIONADO)
[code=fw:y3m376w2]<div class="fw" id="{CB}" style="font-family: monospace;"><br />&nbsp; &nbsp;++nVez ??<br />&nbsp;</div>[/code:y3m376w2] Saludos.
mas DATAs en un BTNBMP? (SOLUCIONADO)
Hola, puedes usar un hash : [code=fw:2tcd2fqd]<div class="fw" id="{CB}" style="font-family: monospace;">oBtn<span style="color: #000000;">&#91;</span>nVez<span style="color: #000000;">&#93;</span>:<span style="color: #000000;">cargo</span> := <span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"H...
mas DATAs en un BTNBMP? (SOLUCIONADO)
Gracias Karinha y Gmart: Lo intento y me reporto. Saludos
mas DATAs en un BTNBMP? (SOLUCIONADO)
Amigos: Los hash funcionaron al 100% Gracias GMart1 y todos los que me apoyaron con sus respuestas Saludos
mas de un ADD
Holas, saben si es posible utilizar tablas (archivos) ADT de mas de un ADD (Advantage Data Dictionay) al mismo tiempo. saludos Marcelo
mas de un ADD
Marcelo a lo mejor te sirve este link [url:1emb1433]http&#58;//fivetechsoft&#46;com/forums/viewtopic&#46;php?t=5563&highlight=hconnection[/url:1emb1433]
mas de un ADD
Sip, gracias, seguro eso me sirve saludos Marcelo
mas propuestas para Rpreview
Sería bueno disponer de dos CLassDatas nuevas mas : Que nos permitan tener escondido el menu. CLASSDATA lListViewHide INIT .f. Que nos permita usar el preview sin el listview ( como antiguamente ) yo lo he implementado por petición pues a muchos no les gusta <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif"...
mascara en footer del xbrowse
hola a todos tengo un xbrowse con footers, el problemas es que me muestra sin las comas, como puedo poner mascara al footer de una columna determinada. sale en el footer 158236.88 yo quiero que salga 158,236.88.... se puede, disculpen mi ignorancia. salu2 Francis
mascara en footer del xbrowse
Hola amigo Prueba asi: [code=fw:13ccblsc]<div class="fw" id="{CB}" style="font-family: monospace;"><br />TRANSFORM<span style="color: #000000;">&#40;</span>Valor,<span style="color: #ff0000;">'@E 999,999,999.99'</span><span style="color: #000000;">&#41;</span><br /> </div>[/code:13ccblsc] Espero te sirva. Saludos
mascara en footer del xbrowse
hola amigo pero como lo aplico en el footer del xbrowse ... salu2 Francis
mascara en footer del xbrowse
Hola... Prueba asi: [code=fw:2n2vg6ol]<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;">bFooter</span...
mascara en footer del xbrowse
hola amigo voy a probarlo ... gracias salu2 Francis
mascara en footer del xbrowse
Hola jrestojeda Gracias ,,, funciona.. Salu2 Francis
mask dialog not displayed [solved]
Hi at all. In the project with clipper 5.2 + FHW 1.98 , the dialogs mask are correctly diplayed : <!-- m --><a class="postlink" href="http://img834.imageshack.us/i/errmaschera1.png/">http://img834.imageshack.us/i/errmaschera1.png/</a><!-- m --> after compiling with Harbour and FHW i have this situation : <!-- m --><...
mask dialog not displayed [solved]
Did you change the type of folder control to "SysTabControl32"? EMG
mask dialog not displayed [solved]
Thanks Enrico,i have change control to "SysTabControl32" and it's all ok.Problem solved !
matrices multiplication
[code=fw:3novhpac]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">function</span> Main<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br />   ? MatrixMult<span style="color: #000000;">&#40;</span> <span style="color: #000000;">&#123;</sp...
matrices multiplication
[img:crhexn74]https&#58;//github&#46;com/FiveTechSoft/screenshots/blob/master/matmult&#46;JPG?raw=true[/img:crhexn74]
matrices multiplication
Nice, now some home work: <!-- s:wink: --><img src="{SMILIES_PATH}/icon_wink.gif" alt=":wink:" title="Wink" /><!-- s:wink: --> [img:1kjtfa10]https&#58;//i&#46;imgur&#46;com/a1TDeej&#46;png[/img:1kjtfa10] I tryed: [code=fw:1kjtfa10]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;...
matrices multiplication
The fix is pretty simple, you swapped row and col creating the result, here the correct creation: [code=fw:6t65lymz]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">function</span> MatrixMult<span style="color: #000000;">&#40;</span> aMatrix1, aMatrix2 <span style="color: #000000...
matrices multiplication
Dear Antonino, Fixed in my original post many thanks! Mr. Rao has managed to implement an enhanced version that does not need the ArrTranspose() call. It will be included in the next FWH build: [code=fw:311deqrt]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">function</span> M...
matrices multiplication
All the new matrix functions are still under testing and may still need some fixes.
matrices multiplication
With ArrTranspose [code=fw:25dyuama]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><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: #B900B9;">// [ 2, 2 ] x [ 2, 2 ] = [ 2, 2 ]<...
matrices multiplication
Without ArrTranspose [code=fw:fcg5uqrd]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><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: #B900B9;">// [ 2, 2 ] x [ 2, 2 ] = [ 2, 2 ...
matrices multiplication
Shortest version ? <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> [code=fw:1ufpolpa]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">function</span> Main<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</s...
matrices multiplication
Shortest version based on Mr. Rao version: [code=fw:11chweuz]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">function</span> Main<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br />   ? MatrixMult<span style="color: #000000;">&#40;</sp...
matrices multiplication
I am very intrigued, I did not understand what you are trying to do, I want to participate too if it comes to things to eat (cakes, sweets, ..) even if I have to go on a diet I know !!!
matrices multiplication
Dear Silvio, <!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=44&t=39467">viewtopic.php?f=44&t=39467</a><!-- l -->
matrices multiplication
[quote="Antonio Linares":2kinat2f]Dear Silvio, <!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=44&t=39467">viewtopic.php?f=44&t=39467</a><!-- l -->[/quote:2kinat2f] Dear antonio I know that Python it is a multi-paradigm language, which supports both procedural programmi...
matrices multiplication
Dear Silvio, My interest in porting those 9 lines from Python to Harbour is in building a small and simple neural network to be used from Harbour and mainly for learning purposes <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
maximize
hola, tien alguna forma de yo saber cuando una window foi maximized ? tipo ownd:bMaximized:= {|| msginfo("foi maximizado") } es possible fazer isso ? thanks
maximize
Hi, have how i know when a window was maximized ? exemple: ownd:bMaximized:= {|| msginfo("Was maximized ") } how make it ? thanks
maximize
Hi! You can try: oWnd:OnResize:={|| iif( oWnd:nWidth>=getsysmetrics(0),MsgInfo('MAXIMIZED'),nil ) }
maximize
Lailton, You can also use: oWnd:bResized = { | nSizeType, nWidth, nHeight | ... your code ... } nSizeType can be: #define SIZE_MAXIMIZED 2 #define SIZE_MINIMIZED 1 #define SIZE_RESTORED 0
maximize
Thanks Antonio. You can see about my topico (TActiveX) thanks
maximize
<!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?p=82084#p82084">viewtopic.php?p=82084#p82084</a><!-- l -->
maximize a minimized exe
How can I maximize a minimized 16 bit exe from another EXE. Thanks in advance Otto
maximize a minimized exe
Try using FindWindow() and then ShowWindow(). EMG
maximize a minimized exe
Enrico, Where can further information be found regarding the use of these 2 functions? It is not in the 1.1 xHarbour manual nor the FiveWin Help files for 7.04. Regards, Ken
maximize a minimized exe
This is a sample: [code:xmwbit9q]#include "Fivewin&#46;ch" #define SW_MAXIMIZE 3 FUNCTION MAIN&#40;&#41; LOCAL hWnd &#58;= FINDWINDOW&#40; 0, "Main window title" &#41; IF !EMPTY&#40; hWnd &#41; SHOWWINDOW&#40; hWnd, SW_MAXIMIZE &#41; ELSE ? "Window not found" ENDIF RETURN NIL...
maximize a minimized exe
[quote="Ken Wantz":1fnn6879]Enrico, Where can further information be found regarding the use of these 2 functions? It is not in the 1.1 xHarbour manual nor the FiveWin Help files for 7.04. Regards, Ken[/quote:1fnn6879] Both functions are documented inside fwfun.chm. EMG
maximize a minimized exe
Ken, Besides Enrico's example, please review FWH\samples\ShowApp.prg also
maximize a minimized exe
Thanks Enrico and Antonio, Another stupid leson learned. I was doing a search for FIND expecting all possibilities to be listed. Instead, I got 5 completely different titles. That will teach me that shortcuts do not always work. Regards, Ken
maxrow() and maxcol()
How I can converte from clipper these functions ?'
maxrow() and maxcol()
You can get the screen resolution but the amount of rows and cols depends on what font you use
maxrow() and maxcol()
I use a dialog #include "fivewin.ch" #include "constant.ch" FUNCTION BlackJack() Local nBottom := 42 Local nRight := 99 Local nWidth := Max( nRight * DLG_CHARPIX_W, 180 ) Local nHeight := nBottom * DLG_CHARPIX_H DEFINE DIALOG oDlg21 ; TITLE "test" ; ...
maxrow() and maxcol()
resolved!!! [img:ro66ch1d]http&#58;//www&#46;eoeo&#46;it/wp-content/uploads/2016/02/n&#46;jpg[/img:ro66ch1d]
maxrow() and maxcol()
I wish simulate a n animation from top/sx to center bu tI dont't now how make it
maxrow() and maxcol()
Very nice! <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> Using a timer and changing the coordinates of the image control ?
maxrow() and maxcol()
no I'm made this [code=fw:1vpzikr5]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">function</span> Muovi<span style="color: #000000;">&#40;</span> nWidth,nHeight <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;<span style="color: #00C800;">Local</span> oSprite<br ...
maxrow() and maxcol()
a test to try [code=fw:1175lwnd]<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;">"constant.ch"</span><br /><span style="color...
maxrow() and maxcol()
Silvio, the card-painting of Your sample doesn't look very nice ( not transparent and bad movement ) As well I repainted the card with Pixelformer like You can see have a look at my solution : <!-- m --><a class="postlink" href="http://www.pflegeplus.com/DOWNLOADS/Cardmove1.zip">http://www.pflegeplus.com/DOWNLOADS/C...
maxrow() and maxcol()
Thanks Uwe, Now the animation run ok but now I have another problem [img:27mww9b4]http&#58;//www&#46;eoeo&#46;it/wp-content/uploads/2016/02/move&#46;jpg[/img:27mww9b4] two cards for the Dealer the first card ( back) is moved ok the second card (ace) is moved ok but the ace is down and I not see good the card how...
maxrow() and maxcol()
Silvio, left down or down left is my other sample. I think You need a [color=#0000FF:1f4x0nzo][b:1f4x0nzo]DIAGONAL[/b:1f4x0nzo]-[/color:1f4x0nzo]calculation from the upper-right corner ? [img:1f4x0nzo]http&#58;//www&#46;pflegeplus&#46;com/IMAGES/Imgmove2&#46;jpg[/img:1f4x0nzo] best regards Uwe <!-- s:?: --><img src=...
maxrow() and maxcol()
Silvio, added new calculations to display [color=#0000FF:8imoycas][b:8imoycas]VERTICAL movements[/b:8imoycas][/color:8imoycas] I still have to bring the [color=#FF0000:8imoycas]last painted image on TOP[/color:8imoycas] After all I think the basics are done for You to carry on with the rest. have a look at Your email...
maxrow() and maxcol()
Uwe, [b:3uvyi0ro]your test sample run ok and it was I wish[/b:3uvyi0ro] When I put this function [b:3uvyi0ro]on my source it make error [/b:3uvyi0ro] and I not understood why [b:3uvyi0ro]the error[/b:3uvyi0ro] [code=fw:3uvyi0ro]<div class="fw" id="{CB}" style="font-family: monospace;">Application<br />===========...
maxrow() and maxcol()
Silvio, Are you using ... OF oWnd when you create your bitmap ? from bitmap.prg line 178: nHeight := Min( ::nHeight(), oWnd:nHeight() ) it seems as oWnd is nil
maxrow() and maxcol()
Antonio, It is strange we use oDgl21 ( dialog) and it is static I have the CardMove function ( made from Uwe and Modify by me) see the call to this function [code=fw:2l2vr6jf]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">static</span> oDlg21<br /><span style="color...
maxrow() and maxcol()
but now I'm trying at office and it seems to run ok very very very very strange
maxrow() and maxcol()
Silvio, Tested from resource without any problem.( big exe-file ) Some improvements and new documentation for better understandig of image-positioning- and speed-adjustment included. Just change the defined values to see the different results. Now You can define / calculate the space between the images <!-- m --><a ...
md5
Hola compañeros, tengo que enviar unos datos por internet a la Agencia de Rentas y piden que se anexe con un codigo md5 y vi mensajes anteriores por ejemplo el de Vailton que me parece sencillo pero al hacer la prueba no la reconoce [code=fw:1sd99a26]<div class="fw" id="{CB}" style="font-family: monospace;">With Ha...
md5
Eu uso xHarbour e chamo com HB_MD5( cParametro ) ou entao HB_MD5File( cArquivo ) A função está definida em RTL.LIB
md5
Gracias Sambomb voy a probar. Luis
mdb: contains data but recordcount() answers -1
Hi,my small sample access-database contains one table with three fields and four recordsets. To browse it, I use following code:[code:1w6rcsu6]function browsen&#40;&#41; local oWin2 local oConnection &#58;= TOleAuto&#40;&#41;&#58;New&#40; "ADODB&#46;Connection" &#41; local oRecordSet local oBrw DEFINE WI...
mdb: contains data but recordcount() answers -1
Try[code:1yw63yg9]oRecordSet&#58;Open&#40; "SELECT * FROM Name", oConnection, 1, 3 &#41;[/code:1yw63yg9]EMG
mdb: contains data but recordcount() answers -1
Enrico, thank you, with mdb it did the trick. But with mySql the same problem remains. What is it, that these parameters do? And have I to use other parameters for mySql?
mdb: contains data but recordcount() answers -1
Try one of the following values for the third parameter:[code:6tlkdo49]#define adOpenForwardOnly 0 #define adOpenKeyset 1 #define adOpenDynamic 2 #define adOpenStatic 3[/code:6tlkdo49]EMG
mdb: contains data but recordcount() answers -1
And as the last resort try[code:2rborr53]oRs&#58;CursorLocation = adUseServer[/code:2rborr53] or [code:2rborr53]oRs&#58;CursorLocation = adUseClient[/code:2rborr53] where [code:2rborr53]#define adUseServer 2 #define adUseClient 3[/code:2rborr53]EMG
mdb: contains data but recordcount() answers -1
RecordCount() works correctly only if CursorLocation is adUseClient. RecordCount() always returns -1 when the recordset is opened on the server ( i.e., CursorLication = adUseServer)
mdb: contains data but recordcount() answers -1
NageswaraRao, Enrico,Thanks a lot, now it works with both types of databases <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) -->
mdb: contains data but recordcount() answers -1
[quote="nageswaragunupudi":1n2px7w4]RecordCount() works correctly only if CursorLocation is adUseClient. RecordCount() always returns -1 when the recordset is opened on the server ( i.e., CursorLication = adUseServer)[/quote:1n2px7w4]This is not completely true. The following sample using MSDE work with both CursorLo...
me ayudan me sale error al compilar ejemplo testxbrw
[b:8bzg0u0k]Hola compile el ejemplo testxbrw para conocerlo y me sale este error por que sera <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: --> [/b:8bzg0u0k] Harbour Compiler Alpha build 44.0 (Flex) Copyright 1999-2004, <!-- m --><a class="postlink" href="http://www...
me ayudan me sale error al compilar ejemplo testxbrw
Ya pude compilar el ejemplo me puse a leer y leer y leer y leer en todo el foro y encontre la respuesta si esta muy padre el xBrowse <!-- s:P --><img src="{SMILIES_PATH}/icon_razz.gif" alt=":P" title="Razz" /><!-- s:P --> <!-- s:mrgreen: --><img src="{SMILIES_PATH}/icon_mrgreen.gif" alt=":mrgreen:" title="Mr. Green"...
me ayudan me sale error al compilar ejemplo testxbrw
you must REM these lines /*extern AdsKeyCount, AdsGetRelKeyPos, AdsSetRelKeyPos #command SET SERVER LOCAL => AdsSetServerType ( 1 ) #command SET SERVER REMOTE => AdsSetServerType ( 2 ) #command SET FILETYPE TO <x:NTX,CDX,ADT> ; => AdsSetFileType( if( upper( <(x)> ) == "NTX", 1,...