topic
stringlengths
1
63
text
stringlengths
1
577k
Code Bar PDF417 ó QR Code
Gracias João Saludos, Adhemar
Code Blocks función: IF()
Estimados colegas: ¿Es conveniente, pasar a Code Blocks, todas las líneas, que se puedan de un fuente?. ¿Y sustituir, todos los IF ELSE ENDIF, por IF()? ¿Poner, todo lo que sea factible, de los IF(), a IF( condición, EVAL( bCode1 ), EVAL( bCode2 ) ) Ya que los, Code Blocks, y la función IF(), son más rapidos. Me po...
Code Blocks función: IF()
JMFS-D, no se que procesos estes corriendo y son muy pesados, pero dejame decirte que según mi experiencia la verdad no afecta mucho en manera que definas tus if(). IF;ELSE;ENDIF. Pero por calidad de codigo. Lo haria con los codebloks.
Code Blocks función: IF()
La verdad es que a nuestro nivel no se nota mucho, a no ser que crees alguna clase que necesite rapidez de refresco o algo así. Pero sin duda lo más importante de los Codeblocks es que se encapsulan en una variable y se ejecutan del tirón sin necesidad de tener que buscarlos por la memoria a cada llamada a función. S...
Code Blocks función: IF()
IF( oParamtros:lPresupu , ; ( oDbfPresup:Load() , ; nSiguiente := oDatos:Current()[ 1 ] , ; oDatos:Current()[ 1 ] := nAnterior ,...
Code Blocks función: IF()
Jose Mª, Practicamente no habrá diferencia en la velocidad de ejecución y el código se volverá más complicado de mantener. Piensa que tanto las líneas de código de un PRG como el contenido de un codeblock, el compilador lo convierte a pcode (una serie de bytes) que la maquina virtual procesa. Sólo en procesos en los...
Code Blocks función: IF()
No hay que buscarle tres pies al gato, los manuales de programación dicen que siempre hay que buscar velocidad y ahorro de memoria, o elejir uno de los dos cuando no se no se pueden cumplir ambos. De lo que se olvidan es de nuestra comodidad y de la claridad del código, y reza por no saltarte un paréntesis. En el caso ...
Code char
Hi, all !How determine code char (ANSI, UNICODE, UTF etc.) at read file ?
Code for FiveWin IFDEF ?
hi, in my Source i have [code=fw:251ptcri]<div class="fw" id="{CB}" style="font-family: monospace;">    #ifdef __CLIPPER__<br />   #ifdef __XPP__<br />   #ifdef __HARBOUR__ </div>[/code:251ptcri] now while trying different IDE and Environment i like to ask if FiveWin have something like this <!-- s:?: --><img src="{S...
Code for FiveWin IFDEF ?
you can do ifdef with any define in fivewin.ch [code=fw:1bbnolpp]<div class="fw" id="{CB}" style="font-family: monospace;">#ifdef _FIVEWIN_CH<br />#ifdef FWCOPYRIGHT<br />#ifdef FW_VersionNo<br />#ifdef FWVERSION<br />#ifdef FWDESCRIPTION</div>[/code:1bbnolpp] in our code we had some problem when they retired WndReadP...
Code is executing after ACTIVATE WINDOW
Hi All, I searched in the forum but I could not found the answer may be I could not co-relate with my problem. Basically I want to execute the code after a calling procedure execution is over. A calling procedure create and activate window ( not a dialog ) as WINDOW behavior it does not wait as dialog. I know we hav...
Code is executing after ACTIVATE WINDOW
Shridhar, I am not sure about what you want to do exactly, but maybe you could use oWnd:bStart that is executed just once, when the window is initially shown
Code is executing after ACTIVATE WINDOW
Shirdhar, Try the code below. Regards, James [code=fw:1hiot3i7]<div class="fw" id="{CB}" style="font-family: monospace;">  aoBTN<span style="color: #000000;">&#91;</span><span style="color: #000000;">2</span><span style="color: #000000;">&#93;</span>:<span style="color: #000000;">bAction</span> := <span style="color...
Code is executing after ACTIVATE WINDOW
Or you can use this: [code=fw:25imdfu0]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #0000ff;">ACTIVATE</span> <span style="color: #0000ff;">WINDOW</span> oWnd;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">VALID</span> <span style="color: #000000;">&#40;</span> o...
Code is executing after ACTIVATE WINDOW
Enrico, Hey, I like that. Much easier. Regards, James
Code is executing after ACTIVATE WINDOW
Hi All, Thanks a lot..! for your great support. Hi Antonio , Actually I want execute the code after a particular window operation is over. As WINDOW's behaviour the execute after ACTIVATE WINDOW that I do not need. Simply when we say ACTIVATE WINDOW oWnd it should wait till the Window is closed and continue ...
Code is executing after ACTIVATE WINDOW
It's already used in rpreview.prg so yes, you can use it in your code. EMG
Code is executing after ACTIVATE WINDOW
Hi Enrico , I tried but its not working and also when I closed entire application still the Window's task manager shows status is running. Thanks Shridhar
Code is executing after ACTIVATE WINDOW
Hi, if I understood, please look at this: <!-- l --><a class="postlink-local" href="http://fivetechsupport.com/forums/viewtopic.php?f=3&t=18270&start=0&hilit=oWnd%3Abpostend">viewtopic.php?f=3&t=18270&start=0&hilit=oWnd%3Abpostend</a><!-- l --> Best regards
Code is executing after ACTIVATE WINDOW
A working sample: [code=fw:1usjazi8]<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 style="color: #000000;">&#40;</span><span style="color: ...
Code is executing after ACTIVATE WINDOW
Hi Enrico , Extremely sorry..! I had not added the VALID clause in the ACTIVATE WINDOW command. [code=fw:21g6l9sk]<div class="fw" id="{CB}" style="font-family: monospace;"><br /> <span style="color: #0000ff;">VALID</span> <span style="color: #000000;">&#40;</span> oWnd := <span style="color: #00C800;">NIL</span>, ...
Code page - can I set it ?
Hi everebody! I try set code page in my applicationto hungarian. I try this code , but is not work (Browse look as english). Make I anything wrong ? Regards Andrej. /// settings REQUEST DBFCDX REQUEST DBFFPT RDDSETDEFAULT ('DBFCDX') REQUEST HB_LANG_HUWIN REQUEST HB_CODEPAGE_HUWIN HB_LangSelect('HU') HB_Se...
Code page - can I set it ?
Try it this way: REQUEST HB_Lang_HU REQUEST HB_CODEPAGE_HUWIN ... HB_LangSelect("HU") HB_SetCodePage("HUWIN")
Code page - can I set it ?
Linker write "unresolved external symbol HB_FUN_HB_LANG_HU" I think REQUEST HB_LANG_HUWIN was good. (but not make nothing ) Regards Andrej.
Code that used to work fails
Antonio, the folowing code used to work in a previous version and isn't working anymore. The text and the title do not change and the dialog isn't centered. Note the NOWAIT clause. The previous version was 09.11 using xHarbour.com's Pelles C and now I am using Harbour 11.10 + MinGw. I was unable to test with FW 11.10 ...
Code that used to work fails
I think, that will work with any FWH-version : [color=#0000FF:3d0u62s9]ACTIVATE DIALOG oDlgTeste CENTER NOWAIT ;[/color:3d0u62s9] [color=#FF0000:3d0u62s9]ON INIT [/color:3d0u62s9][color=#0000FF:3d0u62s9]( oDlgTeste:cTitle := "New Text", ; cTexto := "Another text...", oTexto:SETTEXT( cTexto ) )[/color:3d0u62s9] You ca...
Code that used to work fails
No, didn't work. Harbour 3.1.0dev (Rev. 17102). gcc (tdm-1) 4.5.2-dw2 FW 11.10
Code that used to work fails
Hello, It is working with FWH 11.11, Borland 5.82 and Harbour 3.1
Code that used to work fails
Concentra, We already know what is going on. We are working to fix it, thanks! <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> It is the same reason for the bug detected by Rimantas!
Code that used to work fails
Concentra, This fix is required in Class TDialog for MinGW: dialog.prg [img:2yek0jye]http&#58;//img221&#46;imageshack&#46;us/img221/4415/captureapb&#46;png[/img:2yek0jye]
Code that used to work fails
Thanks Antonio. But the DIALOG.PRG I have isn't the same as yours, the lines aren't the same... Could you send me the full DIALOG.PRG ? Maurício Faria
Code that used to work fails
Mauricio, New libs sent to your email <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
Code to Set and Get value for a combobox
Hi, code to store a Datatable object to combobox.and i want to Display "Name" and work "Id" at the background. thanks in Advance Regards, Sajith
Code to Set and Get value for a combobox
Could not understand your requirement clearly. If u want to display a name and return the code assosciated with the name when the user select the item from the Combobox, then Please use DbCombo instead of Combobox. Anser
Code to Set and Get value for a combobox
thanks Regards , Sajith
Code128 un ejemplo...
Hola foro, hace tiempo hice una pequeña app en fw16 bits con esta fabulosa lin de Cayetano de codigo de barras, pero ahora me veo en la necesidad de usarlo a fw + xharbour pero nada, el lector no me lo reconoze, alguien podria mandarme un ejemplo de como aplicarlo... Saludos Rosales, Luis
Code128 un ejemplo...
Hola Luis: Tienes que crear la BarLib.lib para xHarbour, o en su defecto compilar y enlazar con tu aplicación los prgs que forman la BarLIb Saludos Manuel Mercado
Code128 un ejemplo...
hola. hace poco tube un problema similar; fijate este tema <!-- m --><a class="postlink" href="http://fivetechsoft.com/forums/viewtopic.php?t=9735">http://fivetechsoft.com/forums/viewtopic.php?t=9735</a><!-- m --> CHAU...!!!
Code7
Hello! <!-- m --><a class="postlink" href="http://reddevnews.com/blogs/rdn-express/2009/07/lucky-7-for-microsoft-developers.aspx">http://reddevnews.com/blogs/rdn-express ... opers.aspx</a><!-- m --> [quote:1rviyup7] Code7 Contest that offers up to $17,777 and a free trip to PDC09 for the finalists in seven geographica...
Code::Blocks - IDE de fuente abierta
Buenas, por si alguien se quiere animar a configurar y utilizar Code::Blocks como IDE de [x]Harbour y FWH. <!-- m --><a class="postlink" href="http://www.codeblocks.org/">http://www.codeblocks.org/</a><!-- m --> Saludos, Félix Pablo Grande Ramos
Code::Blocks - Open Source IDE
Morning, here you are an open source IDE, Code::Blocks <!-- m --><a class="postlink" href="http://www.codeblocks.org/">http://www.codeblocks.org/</a><!-- m --> We could use it with [x]Harbour and FWH ? Regards, Felix Pablo Grande Ramos
CodeBlock
Hello friends I need to know what has inside a codeblock: function, field name.. That's possible. I'm trying to take the TcBrowse Object and know the contents of each column, reverse engineering.
CodeBlock
Dear Ari, In harbour/include/hbapi.h you find this: [url:2sc9o95l]https&#58;//github&#46;com/harbour/core/blob/master/include/hbapi&#46;h[/url:2sc9o95l] [quote:2sc9o95l]typedef struct _HB_CODEBLOCK { const HB_BYTE * pCode; /* codeblock pcode */ PHB_SYMB pSymbols; /* codeblocks symbols */ PHB_SYMB ...
CodeBlock
Obrigado Antonio.
CodeBlock al cerrar un Dialogo
Muy buenas, se ejecuta algún CodeBlock al Cerrar un dialogo [ oDlg:end()] Un Saludo.
CodeBlock al cerrar un Dialogo
El bValid, en caso de estar defindo: [code=fw:1yxgyr8g]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #0000ff;">ACTIVATE</span> <span style="color: #0000ff;">DIALOG</span> oDlg ;<br />   <span style="color: #0000ff;">VALID</span> MsgYesNo<span style="color: #000000;">&#40;</span> <span st...
CodeBlock al cerrar un Dialogo
Muchas gracias antonio. Un Saludo.
CodeJock Calendar Control
Hi. Has anybody had any luck adding multiple resources to a CodeJock Calendar control? Multiple resources is a way to have multiple schedules for multiple people. I was successful creating it, but it doesn't show appointments. It's all blank. Here is my code: [code=fw:1yrf32i9]<div class="fw" id="{CB}" style="fon...
CodeJock Calendar Control
Reinaldo, Tim Stone is a master with Codejock Calendar, surely he may be able to help you <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> Or you may email him
CodeJock calendar
Dear All, I would like to get an example to use CodeJock Calendar. Can I use it without Visual Studio? I try to download TCalex but it doesn't successful (compile). It has many missing library from samples. The sample (EXE file) is great but I cannot compile samples and source in TCALEX.RAR. Thanks in advance for...
CodeJock calendar
Dutch Yes you can use Codejock with visual studio and Harbour without problems. You need the activex installed on your computer to make it work. Hth Richard
CodeJock calendar
Dear Richard, I have not MS-Visual Studio, Can I use it without MS.VS? Can I use it if I have Activex in my computer? Have you got a example? [quote="Richard Chidiak":ljjjq143]Dutch Yes you can use Codejock with visual studio and Harbour without problems. You need the activex installed on your computer to make i...
CodeJock calendar
Dutch What Richard is referring to is the ActiveX CodeJock library ( .ocx ) that MUST be installed and Registered on each computer for your calendar module to run. Rick Lipkin
CodeJock calendar
Dutch, I have it in 3 different builds, and it works fine: xHarbour using xBuild and its Pelles C compiler / linker Harbour using the makefile found in UE Studio and a Microsoft C++ ( Version 2010 - 2013 all worked ) Microsoft Visual Studio 2013 Pro. All 3 work fine. However, you must have the .dll file from...
CodeJock calendar
Dear All, Could you correct me if I misunderstood. - I cannot use without Visual Studio C++ or xHarbour.com. - It cannot use with xHb+FWH+Borland 5.82. - The Activex library must register to all pc that use my program. Thanks for all kind help and appreciated all suggestion.
CodeJock calendar
Dutch This is the only important thing you need - The Activex library must register to all pc that use my program. Richard
CodeJock calendar
Dutch, I do not use Borland so I can't give you any response on that. However, I believe Richard would be correct. Also, the library is placed on, and registered to, each PC that will use the calendar program. It is not necessary on others. However, if you simply add it to an installer then it can go everywhere. ...
CodeJock calendar
Dear All, I have got an idea now. Thanks a lot.
CodePage Problem?
Hi, I have a small sample of creating dialog using HB_SetCodePage function. [code=fw:208kbo3a]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"fivewin.ch"</span><br /><br />REQUEST HB_CODEPAGE_TRWIN<br /><br />Procedure Main<span st...
CodePage Problem?
Hi, I have changed the below lines and there is not any problem. [code=fw:19isck0d]<div class="fw" id="{CB}" style="font-family: monospace;">    REQUEST HB_CODEPAGE_ESWIN<br />    HB_SetCodePage<span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"ESWIN"</span> <span style="color: #000000;">&#41;<...
CodePage Problem?
Hakan, > If I remove HB_SetCodePage("TRWIN") line compiled Exe works. But It does not work with this line. What error do you get ? A link error ? A runtime error ?
CodePage Problem?
Hi, There is not any error reported. It just disappeared. I try to find the error. it disappeared it in DialogBoxIndirect function in activates method of dialog class. It does not return to activates method anymore. I could not found the DialogBoxIndirect function.
CodePage Problem?
Hakan, I can not find TRWIN in xharbour\source\lang\*.c Have you ever used it before ?
CodePage Problem?
Hi Antonio, You are right. There is not. it is in xHarbour.org\Source\codepage\cptrwin.c I do not use tr messages. I try to use only codepage. No. I have never used before.
CodePage Problem?
[quote="Horizon":1plw5r56] I have a small sample of creating dialog using HB_SetCodePage function. [code=fw:1plw5r56]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"fivewin.ch"</span><br /><br />REQUEST HB_CODEPAGE_TRWIN<br /><br /...
CodePage Problem?
Manuel, I am sorry to say that I could't use TRWIN in xharbour. I have migrated to Harbour last year and not tried to use it. Regards.
CodePage Problem?
[quote="Horizon":hfqd86vm]Manuel, I am sorry to say that I could't use TRWIN in xharbour. I have migrated to Harbour last year and not tried to use it. Regards.[/quote:hfqd86vm] Thanks Hakan
CodePage UTF8
Muy buenas foro, tengo una duda, tengo acceso a MySQL usando Eagle y la base de datos está configurada con caracteres: utf8_general_ci, la cuestion es que desde el Administrador de MySQL puedeo insertar y leer en un campo el lenguaje en Arabe en MySQL pero accediendo desde Eagle/FWH me devuelve caracteres como ??????,...
CodePage UTF8
Muy buenas, sigo buscando pero no encuentro nada de esto, ¿alguna sugerencia Antonio? Un Saludo.
CodePage UTF8
Estimado softruz(?) Asi debes proceder con Eagle: [code=fw:2nv3j4gj]<div class="fw" id="{CB}" style="font-family: monospace;">oConn:= TMSEConnect<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>:<span style="color: #00C800;">New</span><span style="color: #000000;">&#40;</span><span st...
CodePage UTF8
Muchas gracias Mario, pero lo que necesito es leer un campo en el idioma en Araba en MySQL, la base de datos ya la tengo creada y configurada para UTF8, y el problema que me encuentro es que cuando leo el valor como mi aplicación no está configurada en UTF8 no puedo leer y mostrar en un GET ese valor correctamente. ¿...
CodePage UTF8
Estimado; Desconozco el trabajar con otra lengua que no sea la española. Quizás debas mirar el Manual de MySQL. Desde esta dirección, si no contas con uno, lo podes bajar: [url:l5xh5wfi]https&#58;//www&#46;box&#46;com/s/sl1yf2vjn4ver4skjgud[/url:l5xh5wfi] En el manual, que te indico, hay un punto: [b:l5xh5wfi]9.1 Valo...
CodePage UTF8
Muy buenas, lo que intento es poner mi aplicacion con request HB_CODEPAGE_UTF8 request HB_CODEPAGE_UTF16LE pero me da error al compilar, yo tengo xHarbour 1.1.0 y FWH 9.01 ¿me podeis ayudar con esto? Un Saludo.
CodeProject.AI Server
Hi friends ! A great link about AI [url:33ju7wg3]https&#58;//github&#46;com/codeproject/CodeProject&#46;AI-Server[/url:33ju7wg3] [url:33ju7wg3]https&#58;//www&#46;codeproject&#46;com/Articles/5322557/CodeProject-AI-Server-AI-the-easy-way[/url:33ju7wg3] Kind regards,
CodeProject.AI Server
thank you very much Félix! Great finding !!!
Codebar + Camera
Hi Guys, I need to read some codebars using the camera of a windows tablet. Is it possible ? Do you know how to do?
Codebar + Camera
Vilian, With this code you could take the screenshot: <!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?p=193463#p193463">viewtopic.php?p=193463#p193463</a><!-- l --> Next, you may use a commercial SDK or implement a GetPixel() based function
Codebar + Camera
Antonio, Thanks. Do you know some SDK ?
Codebar + Camera
I googled and found some that look interesting but I have not used them
Codeblock Using Position Out Of An Array
Hi, untill now I had hardcoded the codeblocks for every column of a xBrowse, like [code=fw:1skdsz0l]<div class="fw" id="{CB}" style="font-family: monospace;">oBrw:<span style="color: #000000;">aCols</span><span style="color: #000000;">&#91;</span><span style="color: #000000;">1</span><span style="color: #000000;">&#9...
Codeblock Using Position Out Of An Array
Gilbert, You have to use a "detached local." Search the form for more info. James
Codeblock Using Position Out Of An Array
James, thank you very much for your quick response. However, I found an alternative solution and wonder, if I might encounter problems, because I use an object that is marked "used internally" in the source code of TXbrowse: Here my working solution: [code=fw:8cz335z8]<div class="fw" id="{CB}" style="font-family: mo...
Codeblock Using Position Out Of An Array
Gilbert, Generally, Antonio uses those comments to signify that a var should not be used outside the class. Ideally, these vars should be made "hidden" so that cannot be used or even seen outside the class. So, the answer is that you should never change those vars. So I still think you should use a detached local. J...
Codeblock Using Position Out Of An Array
From version 8.03 onwards, it is no more necessary to code like [code=fw:3293wzgh]<div class="fw" id="{CB}" style="font-family: monospace;">oBrw:<span style="color: #000000;">aCols</span><span style="color: #000000;">&#91;</span><span style="color: #000000;">2</span><span style="color: #000000;">&#93;</span>:<span styl...
Codeblock Using Position Out Of An Array
I don't know if this helps, but you can also define the sort order using index tags. add column to oBrw data company header "Company" order "company" Regards, James
Codeblock Using Position Out Of An Array
[quote="James Bott":3fmel5ve] add column to oBrw data company header "Company" order "company" James[/quote:3fmel5ve] Yes. Similarly for arrays [code=fw:3fmel5ve]<div class="fw" id="{CB}" style="font-family: monospace;"><br />ADD <span style="color: #0000ff;">TO</span> oBrw ARRAY ELEMENT <span style="color: #000000;">...
Codeblock a string
Necesito guardar un codeblock en una variable , pero en formato string. bblock:= {|| msginfo("hola") } usar una function algo asi como blcktostr(bblock ) que devuelva : ' {|| msginfo("hola") } ' existe alguna funcion ? Saludos a todos.
Codeblock a string
Mastintin, Creo que eso que buscas no existe... los codeblocks son codigo compilado... otra cosa es que el genial przemek haya inventado algo... Un invento que quiza te podria ayudar; se trataria de crear un nuevo tipo K que en realidad es un array: #Translate CBNew(<b>) => {<b>, <(b)>} #Translate CBEval(<kCB>...
Codeblock a string
[quote="hmpaquito":1s7ol1xk]Mastintin, Creo que eso que buscas no existe... los codeblocks son codigo compilado... otra cosa es que el genial przemek haya inventado algo... Un invento que quiza te podria ayudar; se trataria de crear un nuevo tipo K que en realidad es un array: #Translate CBNew(<b>) => {<b>, <(...
Codeblock a string
Entiendo que si no quieres modificar las clases originales de fwh o bien no quieres utilizar un pseudo tipo, la cosa no tiene arreglo... Para el caso que dices, yo lo que haria seria: #Define CBBlock(<k>) <k>\[1\] 1º A la clase dialog, crearle una nueva data: bkPainted 2º En la definicion previa del dialogo ::bkPain...
Codeblock a string
[quote="hmpaquito":2nnbca30]Entiendo que si no quieres modificar las clases originales de fwh o bien no quieres utilizar un pseudo tipo, la cosa no tiene arreglo... Para el caso que dices, yo lo que haria seria: #Define CBBlock(<k>) <k>\[1\] 1º A la clase dialog, crearle una nueva data: bkPainted 2º En la definicion...
Codeblocks y punteros a funciones (Closures?)
Los codeblock al ser un tipo de dato se pueden pasar como parámetros de funciones lo cual le da muchísima potencia a nuestros programas. Fue una revolución el cambio de la macrocompilación por codeblocks. En la época en que se creó el tipo de dato CodeBlock había muy pocos lenguajes que lo tuvieran... desde hace relat...
Codeblocks y punteros a funciones (Closures?)
Excelente Manu! Esa no me la sabía, gracias! Lo pondré en practica en mis futuros códigos. Saludos Carlos
Codeblocks y punteros a funciones (Closures?)
El lenguaje C es el primero (que yo sepa) que habla de "punteros" que es una forma de decir "direcciones" Un puntero apunta a algo. Una dirección es donde hay algo. El puntero apunta a un lugar, a una dirección, donde hay algo. un bloque de código es una variable que apunta a un código, que contiene una secuencia de p...
Codeblocks y punteros a funciones (Closures?)
Enhorabuena por las explicaciones, realmente son temas que pueden 'marcar' un desarrollo, conocer estas utilidades 'indocumentadas' Lamentablemente, harbour en temas 'avanzados' adolece de buena documentación a nivel de 'desarrollador de PRG' Tener el codigo fuente (en C) no es garantía de documentación ya que muchas...
Codeblocks y punteros a funciones (Closures?)
Cuando Clipper 5 apareció (algunos tuvimos la suerte de tenerlo antes, en mi caso mi buen amigo Carlos Segura me lo envió) descubrimos con sorpresa que podiamos crear y usar objetos pero Nantucket habia decidido no darnos aún la capacidad de crear y usar nuevas clases. Esto era realmente frustrante <!-- s:-) --><img sr...
Codeblocks y punteros a funciones (Closures?)
[quote:uv3xokft]Y un buen dia, por arte de magia, en las BBSs, apareció un módulo sin nombre, ni autoria,[/quote:uv3xokft] La magia existe, lo hemos visto en esta bonita historia de Navidad Pues no se me ocurre como usar la clase Symbol o los punteros a funciones... Debo estar oxidado
Codeblocks y punteros a funciones (Closures?)
Paco, > Pues no se me ocurre como usar la clase Symbol o los punteros a funciones... Debo estar oxidado Esa clase la escribí simplemente para demostrar que podiamos tenerla igual que Class(y) la tenía pero, igual que tú, nunca le encontré una utilidad <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" t...
Codejock Calendar
Hello. Anyone is using Codejock Calendar 15 with succeed?. I tried Reinaldo sample but does not work. It gives me such type of errors [code=fw:qini77m9]<div class="fw" id="{CB}" style="font-family: monospace;"> WINOLE/<span style="color: #000000;">1007</span> &nbsp;Argument error: <span style="color: #000000;">WORK...
Codejock Calendar
I just returned from a very much needed vacation ! Sorry for the delay. Yes, I am using Codejock Calendar and will be very happy to share our class with you. Please email me : <!-- e --><a href="mailto:timstone@mlsdg.onmicrosoft.com">timstone@mlsdg.onmicrosoft.com</a><!-- e --> and I will send it to you. I have u...