topic
stringlengths
1
63
text
stringlengths
1
577k
ARRAY over 4096 elements
You can use a TWBrowse and calculate the correct position of the item to show for each index. For example (not tested): [code:2lx88l1k]FUNCTION GETITEM&#40; aArray, i &#41; IF i < 4096; RETURN aArray&#91; i &#93;; ENDIF RETURN aArray&#91; 4096, i - 4095 &#93;[/code:2lx88l1k] EMG
ARRAY over 4096 elements
[quote="avista":md0duoe3]I need to use array longer than 4096 elements (multidimensional if possible), and it is verry important to be used in LISTBOX. Some sugestions ?[/b][/quote:md0duoe3] Firts, Antonio is right. Second, try something like this with your code: ArPrgElem[6] = TArray():New( your length array ) @ ...
ARRAY over 4096 elements
I solved the problem thanaks to your sugestions .... not using the classes but this working great. Best regards p.s Here is the program ============= #include "FiveWin.ch" static oWnd //----------------------------------------------------------------------------// function Main() LOCAL oDlg // Put in aSample...
ARRAY over 4096 elements
Very good <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
ARRAY over 4096 elements
Better sample ... If someone have better solution about sorting please reply Best regards, Pande. Program ... //---------------------------------// #include "FiveWin.ch" static oWnd //----------------------------------------------------------------------------// function Main() LOCAL oDlg LOCAL oBtn //...
AS2 protocol
Hello, Has anyone created a FWH application to transfer files, specifically EDI messages, via AS2 protocol. If so, can you post sample code? Thank you,
AS2 protocol
I do a lot of EDI. Usually they are just text files in 1 of 2 standards. ANSII X12 (American standard) or EDIFACT (European Standard). I do most in ANSII but there are a couple documents I do in EDIFACT. Do you know what documents you need to transmit? The other issue is how they are transmitted. Most companies these d...
AS2 protocol
Dear Gale, Thank you for your response. We will be exchanging ANSI X12 and EDIFACT to start. We have been communicating via FTP and certain partners are asking us to upgrade to AS2. Can you send me a private message via e-mail at Darrell DOT Ortiz AT cdmsoft DOT com with your telephone number so we can discuss further...
AS2 protocol
Done.
AS400 and Oracle Application
Can I remote directly an As400 Machine from inside FWH and extract data from Oracle Apllication to FWH application directly .
AS400 and Oracle Application
Yes, you can ODBC and it a must to use a middleware software from IBM as ClientAccess
AS400 and Oracle Application
Yes, you can use ADO, and OLE, fast yet efficient.
ASAVE() AREAD()
Amigos:Estamos trabajando con aSave() y aRead() en la grabacion y recuperacion de arrays en campos memo. Los datos que contienen estos arrays son datos binarios, con caracteres de control, etc.Algunos arrays se graban y recuperan bien, pero otros al recuperarlos encontramos que no son iguales al original.Alguien sabe a...
ASAVE() AREAD()
Ricardo,Los datos binarios estan almacenados como cadenas ?
ASAVE() AREAD()
Antonio.Que tal. Soy jorge mansur, socio de ricardo.El tema es este. Queremos migrar a Harbour. Estamos usando las librerias de FlexFile que no estan disponibles para Harbour.Lo que hicimos fue lo siguiente.Intento 1:Cada campo memo que contiene los datos de FlexFile lo leemos con Flex y la salvamos en otro campo memo ...
ASAVE() AREAD()
Jorge,Que tipos de datos guardais ? Arrays, ficheros, etc ?Se puede construir facilmente una funcion en C que lo transforme a cadena y se podria guardar como blobs, o ficheros en disco, etc.
ASAVE() AREAD()
Antonio:Te preparamos un post con el pedazo concreto de programa y un registro con los datos que fallan para que opines al respecto.Entre tanto, te deseamos desde EvoSistemas ( y lo hacemos extensivo a la comunidad FiveWin ) unas muy felices fiestas! para vos y los tuyos.
ASAVE() AREAD()
Ricardo,Gracias, igualmente <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
ASAVE() AREAD()
Que tal Antonio. Espero qye hayas pasado un muy buen comienzo de año. Solo te moletaba para consultarte. Que diferencia hay entre una funcion C que convierta datos binarios a cadenas para guardarlos en los campos memo, y la funcion cmimeenc? No tendria el mismo problema de que se me revienta por el uso de la memori...
ASAVE() AREAD()
Jorge, > Que diferencia hay entre una funcion C que convierta datos binarios a cadenas para guardarlos en los campos memo, y la funcion cmimeenc? > La función en C no realizaría ninguna modificación/manipulación de los datos binarios originales. Es decir, se pasarían a tipo cadena sin modificarlos en absoluto. La...
ASC bug - re: Barbara THIAM's post
Since the change in the fivetech forum I could not reply to Barbara's post. However the following code worked flawlessly under FWH using Harbour Alpha build 44.0 and also using xHarbour build 99.3 // Test of ASC function FUNCTION MAIN() LOCAL n, cStr := "", lf := CHR(13)+CHR(10) FOR n := 0 TO 255 cStr ...
ASC bug - re: Barbara THIAM's post
Hello Mr Babin, Hello Everybody, I am testing xHarbour build 0.99.5, waiting new release of Harbour. I get an executable, but when i run it, this message appears at first : "ALERT.PRG was compiled by older version, PCODE version 5 is no longer supported - Please recompile." Are the FWH 2.5 lib's not compatibles with...
ASC bug - re: Barbara THIAM's post
You have to recompile *all* your PRGs and *all* FWH PRGs. EMG
ASC bug - re: Barbara THIAM's post
Hello EMG, Can you tell me the betters compiler options to compile all Fivewin for Harbour .prg with xHarbour in one pass (if possible) ? I have some compiler errors with these options : "-l -n -w -m -gc0" ie error : "dbms.ch (84) Warning I0003 : No markers in repeatable group [;#undef _Dbms_ ] - group will never b...
ASC bug - re: Barbara THIAM's post
This is what I use: SET HARBOURCMD=/a /es1 /gc0 /l /m /n /q /w Anyway, you don't have to recompile the following PRGs: expbuild.prg db10.prg odbc32.prg dbm.prg vbxctrl.prg _index.prg dbms.prg ddeserv.prg field.prg tnewsins.prg c3.prg EMG
ASC bug - re: Barbara THIAM's post
Thanks Enrico. Now i can run the program, but this code work bad : ************* FUNCTION TEST() ********** LOCAL cName := SPACE(10) SET EXACT ON IF cName = "" MessageBox("OK : This work like Clipper") ELSE MessageBox("STOP : This work bad") ENDIF RETURN NIL This is too hard... (But i confirm, Asc() and ReadInser...
ASC bug - re: Barbara THIAM's post
This works fine for me: ************* FUNCTION TEST() ********** LOCAL cName := SPACE(10) SET EXACT ON IF cName = "" ? "OK : This work like Clipper" ELSE ? "STOP : This work bad" ENDIF INKEY(0) RETURN NIL EMG
ASC bug - re: Barbara THIAM's post
With all these lib it's always impossible for me. Perhaps the order of one lib ? ********* e:\borland\bcc55\lib\c0w32.obj + E:\MAINTEST\MAINTEST.obj + , + E:\MAINTEST\TEST.exe,, + E:\PROGS\LIB32\Ace32.LIB + E:\XHARBOU\XHARBO~1.BCC\LIB\rdd.LIB + E:\XHARBOU\XHARBO~1.BCC\LIB\rddads.LIB + + E:\FWH\LIB\FIVEHX.LIB + E:\FWH\...
ASC bug - re: Barbara THIAM's post
What is the exact error message you get? EMG
ASC bug - re: Barbara THIAM's post
No error message now. When there is SET EXACT ON, a cVariable with space(s), like cVar := " ", is not equal to "" for xHarbour. When SET EXACT OFF, it's ok, " " = "". With Clipper, " " = "", always. Badara
ASC bug - re: Barbara THIAM's post
From your sample ************* FUNCTION TEST() ********** LOCAL cName := SPACE(10) SET EXACT ON IF cName = "" ? "OK : This work like Clipper" ELSE ? "STOP : This work bad" ENDIF INKEY(0) RETURN NIL I get "OK : This work like Clipper" using the latest xHarbour from CVS. EMG
ASC bug - re: Barbara THIAM's post
Hello EMG, Thanks for your answer. When post the message below to "join@xharbour.org", i get a non-delivery message : "Invalid final delivery userid: <!-- e --><a href="mailto:patrick@xharbour.com">patrick@xharbour.com</a><!-- e -->". ************** Hello, I am Fivewin user and i want to join the xHarbour team and ac...
ASC bug - re: Barbara THIAM's post
I just forward your message to the xHarbour developer's list. EMG
ASC bug - re: Barbara THIAM's post
And this is the answer from Ron Pinkas: "You may tell Badara, that he may report any issues on the xHarbour.Unstable.CVS NG which is the forum dedicated to such activity. IOTH he has development plans, please ask him to forward an email with his development proposals. xHarbour is always interested in additional develo...
ASC bug - re: Barbara THIAM's post
Enrico, This is my response to Ron Pinkas ------------ Ron, My actual developpement plan is to obtain the latest xHarbour lib and bin possible to test with my several code lines, to be sure xHarbour has no others very important bugs. Today i can't continue my tests because " " is not equal to "" when Set Exact is O...
ASC bug - re: Barbara THIAM's post
Do I have to forward it to Ron or can you do it yourself? EMG
ASC bug - re: Barbara THIAM's post
I have not his email adress. Like you want.
ASC bug - re: Barbara THIAM's post
Here it is: <!-- e --><a href="mailto:Ron@remove-this.xharbour.com">Ron@remove-this.xharbour.com</a><!-- e --> EMG PS. Remove "remove-this.".
ASC bug - re: Barbara THIAM's post
Thanks Enrico Regards, Badara
ASC bug - re: Barbara THIAM's post
Badara, Please register on these forums. Its just a few minutes issue. Thanks.
ASC bug - re: Barbara THIAM's post
Antonio, I have many passwords and i not remember my password and email address used in these forums. It's why i am not register today. Saludos, Badara
ASC bug - re: Barbara THIAM's post
Badara, You may register again and write down your login and password for future use.
ASC bug - re: Barbara THIAM's post
Antonio, There is no way to continue under FWH 2.5 today. Tell this to your users please. <!-- s:shock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt=":shock:" title="Shocked" /><!-- s:shock: --> Regards,
ASC bug - re: Barbara THIAM's post
Badara, FWH 2.5 users should upgrade to 2.6 version. We try to keep backwards compatibility as much as we can, but sometimes its not possible.
ASCAN CON TSBROWSE
Buenas tardes amigos del foro Intento en la primera columna de un tsbrowse controlar si un codigo ya se ingreso y sumar el numero de veces de cada uno, he intentado de estas maneras.cual := ascan(aTestData[oBrw:nAt,1],cnumart)cual := ascan(aTestdata,cnumart)el valor devuelto siempre es ceroGracias.
ASCAN CON TSBROWSE
EASYSOFT, intenta asi :cual:=aScan( aTestdata, {|array| array[1]=cNumArt }) SaludosJoel Andujo
ASCAN CON TSBROWSE
Joel Gracias Funciona perfecto
ASCAN on 2 colums
[code=fw:3blbrn1g]<div class="fw" id="{CB}" style="font-family: monospace;">nAt := AScan<span style="color: #000000;">&#40;</span> arr, <span style="color: #000000;">&#123;</span> |a| Upper<span style="color: #000000;">&#40;</span> IfNil<span style="color: #000000;">&#40;</span> a<span style="color: #000000;">&#91;</sp...
ASCAN on 2 colums
Hi, Is it possible to do a array-search where for example the first column = 'TEST' and the seconds column = 'TEST1'? I also want to search on the upper-case, but the problem is that sometimes the value = nil, so I get an error with upper. The array is comming from an excel-file read with [code=fw:3kky81f9]<div clas...
ASCAN on 2 colums
hi, [quote="Marc Vanzegbroeck":3ke82rax] Is it possible to do a array-search where for example the first column = 'TEST' and the seconds column = 'TEST1'? I also want to search on the upper-case, but the problem is that sometimes the value = nil, so I get an error with upper. The array is comming from an excel-file re...
ASCAN question
I have an array (aWork ) , and each element is an array with 4 elements: The data arrays are: [1] is a character field of 5 digits [2] is a counter [3] is an accumulator ( totals ) [4] is a description I want to use aScan on aWork on the first element, and when I find the matching array, I will increment [2] and [3]. ...
ASCAN question
Tim, From xharbour Language Reference Guide: [quote:1jezs9d7]The array function AScan() traverses the array <aArray> for the value specified with <xbSearch>. If <xbSearch> is not a code block, AScan() compares the values of each array element for being equal with the searched value. If this comparison yields .T. (true)...
ASCAN question
[code=fw:2rhyal4u]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">if</span> <span style="color: #000000;">&#40;</span> nAt := AScan<span style="color: #000000;">&#40;</span> aWork, <span style="color: #000000;">&#123;</span> |a| a<span style="color: #000000;">&#91;</span> <span s...
ASCAN reverse ?
hi, i have a (short) Array where i want to find a Item but must start at End of Array a search backward is there a Way to use ASCAN() "reverse" <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: -->
ASCAN reverse ?
Hi Jimmy, just use [b:1zaus8rd]RAscan()[/b:1zaus8rd] <!-- s:wink: --><img src="{SMILIES_PATH}/icon_wink.gif" alt=":wink:" title="Wink" /><!-- s:wink: --> // The example demonstrates the difference between AScan() and RAscan(). PROCEDURE Main() LOCAL aArray := { "A", 1, Date(), 1, .F. } ? Ascan( aArra...
ASCAN reverse ?
hi Detlef, [quote="Detlef":206pgqb0]just use [b:206pgqb0]RAscan()[/b:206pgqb0] <!-- s:wink: --><img src="{SMILIES_PATH}/icon_wink.gif" alt=":wink:" title="Wink" /><!-- s:wink: -->[/quote:206pgqb0] so easy, thx [quote="Detlef":206pgqb0] p.s. du wohnst in Hamburg? Das ist nicht weit von mir. Vielleicht könnten wir uns a...
ASCII TO EBCDIC
Buenas foro, és posible hacer esto para FiveWin? Gracias, [code=fw:1qybq7dh]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #ff0000;">'**************************************<br />'</span> <span style="color: #0000ff;">Name</span>: <span style="color: #000000;">ASCII_TO_EBCDIC</span...
ASCII TO EBCDIC
Hola no se si funciona, pero puedes probarlo [code=fw:2zdjid53]<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 />    <span style="color: #00C800;">local</span> a, b...
ASCII TO EBCDIC
Gracias Daniel, el que intento hacer, és esto: <!-- m --><a class="postlink" href="http://fivewin.com.br/index.php?/topic/21768-como-converter-comandos-asc-em-basic-para-asc-do-five/">http://fivewin.com.br/index.php?/topic/ ... c-do-five/</a><!-- m --> Salu2.
ASCII TO EBCDIC
Daniel, las dos funciones funcionan perfectamente, a una velocidad alucinante !!! Convertí un archivo de texto de longitud de registro 460 (3368053760/460 = 7.321.856 registros) a dbf en 00:04:35. Lo compare con rutinas que utilizaba anteriormente y genera las bases exactamente igual. Ahora si lo compilo tanto en Harbo...
ASCII TO EBCDIC
Hola prueba cambiar a esta linea [code=fw:3ewcghjt]<div class="fw" id="{CB}" style="font-family: monospace;">HB_SIZE iLenSrc = hb_parclen<span style="color: #000000;">&#40;</span> <span style="color: #000000;">1</span> <span style="color: #000000;">&#41;</span>;</div>[/code:3ewcghjt]
ASCII TO EBCDIC
[quote="Daniel Garcia-Gil":geotk4e8]Hola prueba cambiar a esta linea [code=fw:geotk4e8]<div class="fw" id="{CB}" style="font-family: monospace;">HB_SIZE iLenSrc = hb_parclen<span style="color: #000000;">&#40;</span> <span style="color: #000000;">1</span> <span style="color: #000000;">&#41;</span>;</div>[/code:geotk4...
ASCII85 Encoded GUID
Hi guys, I want to use GUID but in the shortest form possible. Then I stumble on <!-- m --><a class="postlink" href="https://blog.codinghorror.com/equipping-our-ascii-armor/">https://blog.codinghorror.com/equipping ... cii-armor/</a><!-- m --> Does anyone have a lib/routine that can encode/decode string using ...
ASORT que respete el orden original
La idea es que ordene un arreglo de acuerdo a uno de los elementos, pero que si todos ellos tienen el mismo valor, los deje en el mismo orden original. Ejemplo: aDatos:={{"Juan",10},{"Antonio",10},{"Carlos",10}} ASORT(aDatos,,,{|A,B|A[2]>B[2]}) //Para que los ordene segun el numero al hacer esto me regresa: Carlos 1...
ASP + xbScript
Hi ! I'm looking for samples , how to work with that . Also I have a question - will xbScript work well in ASP.NET ? If you can , please , provide some source code for sample ... Many thanks in advance ! With best regards ! Rimantas
ASP + xbScript
Rimantas,What you need about ASP? explain me more.
ASP + xbScript
[quote="Rochinha":lhh7l7y7]Rimantas, What you need about ASP? explain me more.[/quote:lhh7l7y7] It's requirement to do some things in the Web with dbf's and with ASP . I found some needful information in xHarbour.com pages .
ASP + xbScript
RimantasFisrt try to use WinASP( <!-- m --><a class="postlink" href="http://htcsoft.no-ip.com:82/">http://htcsoft.no-ip.com:82/</a><!-- m --> )This WebServer allow run xbase style scripts with .DBFs and .CDX indexes.You can develop in a little time one web application.
ASP + xbScript
You can try with [url:1vheyzem]ftp&#58;//ftp&#46;quiquesoft&#46;com/webserv&#46;zip[/url:1vheyzem]
ASP + xbScript
[quote="Rochinha":1wzzsg7u]Rimantas Fisrt try to use WinASP( <!-- m --><a class="postlink" href="http://htcsoft.no-ip.com:82/">http://htcsoft.no-ip.com:82/</a><!-- m --> ) This WebServer allow run xbase style scripts with .DBFs and .CDX indexes. You can develop in a little time one web application.[/quote:1wzzsg7u] ...
ASP + xbScript
RimantasTry this my utilities:How to use:MakeHTM <dbf_file> example: MakeHTM clientsMakeHTM.PRG code:[code:1qn0il43] PARA cFile,p1,p2,p3,p4,p5,p6,p7,p8,p9,p10 p1 &#58;= iif&#40;p1=NIL,"",p1&#41; p2 &#58;= iif&#40;p2=NIL,"",p2&#41; p3 &#58;= iif&#40;p3=NIL,"",p3&#41; p4 &#58;= iif&#40;p4=NIL,"",p4&#...
ASSISTANCE NEEDED - Dual xbrowse header
Using xBrowse, I'm trying to use a type of Gannt chart for a calendar. Please look at the sample and you will see the problem with the display. <!-- s:( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":(" title="Sad" /><!-- s:( --> I want the day on the top header, and the hours below. The top header should cover...
ASSISTANCE NEEDED - Dual xbrowse header
Tim, Could you please "paint" (mspaint) the result that you would like to get and post it here ? thanks <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
ASSISTANCE NEEDED - Dual xbrowse header
Tim, Sorry for the delay but I was for a few days out of the office. Fortunatly our dear friend and master, Rao, managed to provide you a solution <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
ASSISTANCE NEEDED - Dual xbrowse header
Antonio, I think it is supposed to look like this: [url=http&#58;//img519&#46;imageshack&#46;us/i/xbrowseheader&#46;jpg/:1pjbtgeu][img:1pjbtgeu]http&#58;//img519&#46;imageshack&#46;us/img519/7708/xbrowseheader&#46;jpg[/img:1pjbtgeu][/url:1pjbtgeu] Regards, James
ASSISTANCE NEEDED - Dual xbrowse header
Antonio, James did it ( looking at the adjustment for Monday display ). The numbers are the hours of the day, from 8 to 5, and so the top header Monday should cover all of those hours. I believe I implemented the code correctly, but the display is off. Of course it needs to display correctly for all 5 days, Monday ...
ASSISTANCE NEEDED - Dual xbrowse header
I showed a current display of the top header, and James showed a visual of how it should look, but after a week, doesn't anyone have an idea what is wrong here ? I would sure love to fix this ... it looks pretty bad. Thanks.
ASSISTANCE NEEDED - Dual xbrowse header
Tim If you send me a sample of it I can see what Multiheader make and where is the error
ASSISTANCE NEEDED - Dual xbrowse header
The code is in the original message at the top of this thread.
ASSISTANCE NEEDED - Dual xbrowse header
i CANNOT COMPILED IT
ASSISTANCE NEEDED - Dual xbrowse header
Silvio, It is not possible to post all of the code that leads to this. I assumed others use the top header option in Xbrowse and would look at the implementation above and see what is wrong, or have experienced something similar. Apparently either no one is using Top Header, or there is something unique here. From ...
ASSISTANCE NEEDED - Dual xbrowse header
you can post a small sample test to see the problem
ASSISTANCE NEEDED - Dual xbrowse header
Please search for this code in the METHOD Paint() in XBrowse.Prg [code=fw:1anuditk]<div class="fw" id="{CB}" style="font-family: monospace;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ElseIf oCol:<span style="color: #000000;">nHeaderType</span>==<span style="color: #000000;">3</span><br />&nbsp; &nbsp; &nbsp; &n...
ASSISTANCE NEEDED - Dual xbrowse header
Mr Silvio Can you please clarify what for is nHeaderType == 4 ? Documentation describes nHeaderType 1, 2 and 3 only but not 4.
ASSISTANCE NEEDED - Dual xbrowse header
Nas, 4 is to close ( sum 3+1 =4) see the testhead.prg [b:zo9dqy9e] xColBrw[03] := { "Street", AL_CENTER, .T., 70, AL_LEFT, "@30", 1, { |o| (oBrw:cAlias)->STREET }, { || (oBrw:cAlias)->STREET }, 4, AL_RIGHT }[/b:zo9dqy9e]
ASSISTANCE NEEDED - Dual xbrowse header
Thank you. That takes care of the 5 displaying as a status 1 ( full height ), but the top bar still does not extend fully to the right of the last column it covers. It appears to be about 1/3 of the way across the column. You can see this in the sample above where it covers only part of the column with the number 4....
ASSISTANCE NEEDED - Dual xbrowse header
Tim, We have totally replaced the group header implementation in Class TXBrowse. We will publish the new changes in next FWH 9.12 <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
ASSISTANCE NEEDED - Dual xbrowse header
Antonio, Perhaps I not understand which is the problem !!
ASSISTANCE NEEDED - Dual xbrowse header
Silvio, We will provide a complete explanation in a day or two, when we publish FWH 9.12 <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
ASSISTANCE NEEDED - Dual xbrowse header
Downloaded FWH 9.12. The new syntax for setting group headers is : oBrw:SetGroupHeader( cGroupHeader, [nFromCol], [nUptoCol], [oFont] ) In the above example, the group headers can be set with the following code: [code=fw:2d2bem5z]<div class="fw" id="{CB}" style="font-family: monospace;">   <span style="color: #00C800...
ASave() que tipo de valor retorna
Tengo una aplicación que utilíza muchos archivos que graban arrays en disco con esta función. Estoy portandolo a MySQL y me gustaría guardar estos arrays en el motor. Si verifico el tipo de dato que devuelve ASave() con type() o ValType() me devuelven "U", pero abrá en MySQL algún tipo de dato que lo soporte ??. Algui...
ASave() que tipo de valor retorna
Horacio [url:3dppw5c4]http&#58;//wiki&#46;fivetechsoft&#46;com/doku&#46;php?id=fivewin_funcion_asave[/url:3dppw5c4] retorna una cadena este es un a ejmeplo (tomado tambien del wiki de fivewin) [code=fw:3dppw5c4]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#include</s...
ASave() que tipo de valor retorna
Horacio, a lo mejor te interesa cambiar ASave() por ValToPrg()
ASave() que tipo de valor retorna
Esta es una version viejita de la funcion Val2PrgExp incluida con xharbour, uso esta viejita y no la version actual por alguna razon de peso que no recuedo ahora si recuerdo que me toco buscar por muchos lugares para buscar esta version en particular, encontrandola en el cvs. [code=fw:2vkpqb6h]<div class="fw" id="{CB}...
AScan() o AT()
Hola a todos, Sabría alguién decirme que es más efeciente, si usar AScan() para encontrar un elemento en una array unidimensional, o usar AT() en una cadena (que contiene valores concatenados)? Para la cantidad de valores que hasta ahora manejaba me daba igual, pero quizás se incremente hasta 1.000.000 de valores; y ...
AScan() o AT()
Estimado Carlos, La función At() está basada en código en C que aprovecha directamente capacidades innatas de la CPU. Es decir, la CPU esta diseñada por el fabricante para encontrar subcadenas de la forma más eficiente posible y este poder lo tienes directamente a tu alcance usando At(). Es por esto que no existe nad...
AScan() o AT()
[quote="Antonio Linares":3hz4vdj5]Estimado Carlos, La función At() está basada en código en C que aprovecha directamente capacidades innatas de la CPU. Es decir, la CPU esta diseñada por el fabricante para encontrar subcadenas de la forma más eficiente posible y este poder lo tienes directamente a tu alcance usando At...
ASort
Hola. La idea de este codigo es que dada un array lo ordene por fecha de cada "grupo" de "nIdPadre", si lo pueden ejecutar van a ver que la primera vez ordena bien para los nIdPadre == 0, pero despues toma bien desde donde tiene que comenzar "nInicio" dado por el nIdPadre pero calcula mal hasta donde tiene que ordenar...
ASort
nada aun?
ASort
Querido Gustavo, Aqui lo tienes: (lo he desordenado más aún para que se vea que funciona). Primero ordeno por nIdPadre y luego ordeno por fechas para padres iguales [code=fw:2eb1bru2]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"F...