topic
stringlengths
1
63
text
stringlengths
1
577k
Access a MySQL
Hola amigos... Consulta.... ¿Como haria para leer un bd en access y luego pasarla a mysql,,,, no tengo experiencia en ADO,,, trabajo com eagle y con tmysql,, alguna sugerencia???? Salu2
Access a MySQL
Willi: Pongámonos en contacto !. Saludos
Access dbfs from mobile devices
Here is a webcast on mobile access with ADS 11 web platform. <!-- m --><a class="postlink" href="http://response.sybase.com/forms/WW12Q2ADSWBCSTMobileAccess?elq=8ef015988ca84e348d82f5ecc496d491">http://response.sybase.com/forms/WW12Q2 ... ecc496d491</a><!-- m --> Or visit <!-- m --><a class="postlink" href="http://...
Access tables and databases size limitation
Rick, I googled for this and found that it seems as 2GB is the size limit for Access databases. I appreciate your comments, thanks
Access tables and databases size limitation
Antonio YES, 2gb seems to be the maximum size. The largest ( single ) .Mdb I have in production is well under 100mg. I will say that one irritating feature of Ms Access is that you must Compact and Repair occasionally because when you delete a record the size of the database does not get smaller and to permanently exp...
Access tables and databases size limitation
Rick, many thanks <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
Access tables and databases size limitation
Rick, Thank you for sharing
Access the structure HB_ITEM Harbour
Good for all. See if someone can tell me how to access the internal structure of HB_ITEM Harbour (not xHarbour). Specifically I want to access the address: myItem->item.asString.length // NOTE, not the value but also the direction. As an example: myItem->item.asString.value; I can access like this: char *MyPointer =...
Access the structure HB_ITEM Harbour
You ca try ULONG hb_arrayGetCLen( myItem ) Regards Massimo
Access the structure HB_ITEM Harbour
[url:y4voppup]http&#58;//forums&#46;fivetechsupport&#46;com/viewtopic&#46;php?f=6&t=27716&p=154769#p154769[/url:y4voppup]
Access the structure HB_ITEM Harbour
Sorry, this is the function ULONG hb_itemGetCLen( myItem ) Regards Massimo
Access the structure HB_ITEM Harbour
Example [code=fw:24vmxx8z]<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: #00C800;">function</span> Main<span style="color: #000000;">&#40;</span><span style="color: #000000;">...
Access the structure HB_ITEM Harbour
Gracias Massimo. Realmente lo que pasa es lo que dice Daniel. Yo no quiero saber el ancho sino la dirección del elemento que guarda... //////////////////////// Thanks Massimo. Actually what happens is what Daniel says. I do not want to know the width but the direction of the element that keeps ... <!-- s:cry: --><...
Access to Web Services
I need to access web services. From the documentation for the web service, I quote below: [quote:3sw2dme8] This method lets providers list and download available files (reports and circular letters). The method that lists available files for download is called getProvidersFiles. It expects the following parameters: • ...
Access violation with many includes
I am starting a new thread due to a change in topic in another thread. Here is the original question:--------------Seem to have hit a wall. I have a main.rc file with many includes. Maybe 600. About 14 won't compile. I get and access violation. So I added a main2.rc with the 14 includes included in main.rc. Same access...
Access violation with many includes
[quote:3dpvcti1]Yes 600. Some may be due to my ineffieient programing over the years. The program is very complex. After I finish conversion to 32bits. I'll let you have a copy NC. all rc files. Just says "access violation" when compiling. If I comment out the items at the bottom of this list it compiles.[/quote:3dpv...
Access violation with many includes
I think I understand. Can you send me an example.
Access violation with many includes
Harvey,When you create a dialog, Workshop will generate an include file something like this:#define ID_DATE 110#define ID_CLIENT 120#define ID_ARTICLE 130#define ID_AMOUNT 140#define ID_TOTAL 150#define ID_NOTES 160Then in your code you write something like this:redefine get var dData I...
Access violation with many includes
Try it later today when I get back home.Thanks for all your help.
Access violation with many includes
I created a small dll for the items the main.rc file will not compile. Everything is working fine even the manifest. You've been a great help.
Access violation with many includes
Glad to hear you got it working.James
Access violation with many includes
Harvey,an access violation can also happen if you have an icon file with several included icons inside and with a color depth which is not supported by the resource compiler of borland.Delete the unsupported icons out of the icon file and it will workIf I remember right, 8bit and 24bit colors are supported. So all icon...
Access cuantas tablas y cual es y su estructura
Quisiera saber (con ADODB.Connection) cuantas tablas tiene (numero) cuales (los nombres) y los nombres de los campos de cada una de ellas, en una base de datos ACCESS. Si ademas puedo saber el tipo de dato de cada campo (texto, fecha, numero, etc...) pues mejor. Gracias.
Access: copiar recordset a dbf y borrar el recordset
Hola. Tengo una base de datos Access con dos tablas. Lo que quiero es conectar periódicamente con esa base de datos, recuperar con recordset lo que tenga cada tabla, copiar los recordsets a archivos DBF y a continuación borrar la información que he recuperado de Access. Tengo claro lo de recuperar la información con l...
Access: copiar recordset a dbf y borrar el recordset
crear el recordset con FW_OpenRecordSet( oCn, cSql, nLockType, nCursorType, nMaxRecords, nOpt ) copiar el recorset a una tabla dbf FW_AdoExportToDBF( oRs, cDbf, lEditStruct ) borra la data en tabla de access si oConn enla conexion creada con Fw_OpenAdoConnection( cConnStr, lShowError ) oConn:execute( "DELET...
Accessing 32-bit DLLs from 64-bit code
Thanks to Lailton for googling for it <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> [url:bgrgxdoe]https&#58;//blog&#46;mattmags&#46;com/2007/06/30/accessing-32-bit-dlls-from-64-bit-code/[/url:bgrgxdoe] Basically the technique is to use IPC (Interprocess communication) b...
Accessing 32-bit DLLs from 64-bit code
[url:12zim179]https&#58;//stackoverflow&#46;com/questions/1128150/win32-api-to-enumerate-dll-export-functions[/url:12zim179] [url:12zim179]https&#58;//msdn&#46;microsoft&#46;com/en-us/library/windows/desktop/ms679318(v=vs&#46;85)&#46;aspx[/url:12zim179] [code=fw:12zim179]<div class="fw" id="{CB}" style="font-family: ...
Accessing 32-bit DLLs from 64-bit code
Hi Antonio, Thanks for it! I will to test <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
Accessing SQL Server via Internet
Is there an ado driver for Microsoft SqlServer which allows the user to access SQL through the internet. So you could create a FiveWin application which access the SQL data through the internet. Thanks, Byron ...
Accessing SQL Server via Internet
Hi Bayron I use SQLRDD for xHarbour regards.
Accessing SQL Server via Internet
I thought SQLRDD allowed the user to use the dBase DML to traverse through the data, how do you set it up for access through the internet? Byron ...
Accessing SQL Server via Internet
<!-- m --><a class="postlink" href="https://www.youtube.com/watch?v=VOUDdUJ5BLY">https://www.youtube.com/watch?v=VOUDdUJ5BLY</a><!-- m -->
Accessing SQL Server via Internet
You don't need a special driver for accesing ADO via internet. You only have to use the correct IP-adress (or noip) and forward the correct PORT to access the SQL-server if the SQL-server is behind a router
Accessing SQL Server via Internet
[quote="Marc Vanzegbroeck":161ixyvk]You don't need a special driver for accesing ADO via internet. You only have to use the correct IP-adress (or noip) and forward the correct PORT to access the SQL-server if the SQL-server is behind a router[/quote:161ixyvk] True. But a client can connect like this, if server-side is ...
Accessing a Delphi DLL function.
Hi Everybody, I have a Test DLL from a company that has a cost effective way of converting a standard USB Jump drive into a software protection device. The software is called AntiDuplicate. It modifies a standard USB Jump drive so that it knows the difference between the original and a copy thus allowing you to use i...
Accessing a Delphi DLL function.
Jeff, Please review samples\dlls\delphi32\*.prg to access a Delphi DLL from FW
Accessing a Delphi DLL function.
Antonio, I have looked at the sample but how do you return an array from a Delphi DLL? The samples seem to work fine for text but I get NIL returned with the array. Thanks, Jeff
Accessing a Delphi DLL function.
Jeff, > If you prefer example on other program language, please let me know Could you please ask them for a C language sample ? thanks
Accessing a Delphi DLL function.
Jeff, Please try this: [code:1lrjvjq1] #include "FiveWin&#46;ch" #include "Struct&#46;ch" function Main&#40;&#41; local oStruct, cBuffer STRUCT oStruct MEMBER n1 AS LONG MEMBER n2 AS LONG &#46;&#46;&#46; // please repeat it up to 128 MEMBER n128 AS LONG ENDSTRUCT cBuffer = oStr...
Accessing a Delphi DLL function.
Antonio, The code you gave me will only return a 0 (zero). I asked for a C Language sample and this is what they sent me: [code:nyaj8k2k] ======================= typedef VOID &#40;CALLBACK* LPFNDLLACC1&#41;&#40;LONG&#91;127&#93;&#41;; &#46;&#46;&#46;&#46;&#46; HINSTANCE hDLL; // Handle to DLL LPFNDL...
Accessing a Delphi DLL function.
Jeff, Please change this line: DLL FUNCTION TESTFUNC1( pValues AS LPSTR ) AS BOOL PASCAL FROM "TestFunc1" LIB "TestLib12.dll"
Accessing a Delphi DLL function.
Same thing ... Always shows 0 (zero)
Accessing a Delphi DLL function.
Jeff, Could you please ask the developers to place a MessageBox( 0, "here", "inside the DLL", 0 ); inside that DLL function just to check if we properly access it ? thanks
Accessing a Delphi DLL function.
Hi Antonio, Ok ... here is the latest DLL from the company: <!-- m --><a class="postlink" href="http://www.antiduplicate.com/t/TestDLL.zip">http://www.antiduplicate.com/t/TestDLL.zip</a><!-- m --> Thanks, Jeff
Accessing a Delphi DLL function.
Jeff, The function is getting called as the MessageBox() is shown. Could you provide me the PRG declaring the 128 members of the struct ? Thanks,
Accessing a Delphi DLL function.
Antonio, Please check your email. Jeff
Accessing a Delphi DLL function.
Jeff, I am testing it this way, so it can be simpler: [code:2ea4dl6v] #include "FiveWin&#46;ch" #include "Struct&#46;ch" function Main&#40;&#41; local oStruct, cBuffer, n STRUCT oStruct MEMBER cData AS STRING LEN 4 * 128 ENDSTRUCT oStruct&#58;cData = Replicate&#40; " ", 4 * 128 &#41; Msg...
Accessing a Delphi DLL function.
Jeff, There you have the MessageBox() shown value: [code:3g2rt5ct] for n = 1 to Len&#40; oStruct&#58;cData &#41; if SubStr&#40; oStruct&#58;cData, n, 1 &#41; != " " MsgInfo&#40; n &#41; endif next MsgInfo&#40; Bin2L&#40; SubStr&#40; oStruct&#58;cData, 1, 4 &#41; &#41; &#41; // <==...
Accessing a Delphi DLL function.
Antonio, Are you sure this is right? They told me that the value should be 8300 at a[99]. With this code we get a value of 808464534. It looks like the input and output values are the same? Jeff
Accessing a Delphi DLL function.
Jeff, I am not showing a[99], my code shows a[0]. In C language arrays are zero based, not 1 based, like in Clipper
Accessing a Delphi DLL function.
Considering that a long value uses four bytes, then you could inspect a[99] using SubStr( oStruct:cData, 99 * 4, 4 ). Please also try 98 * 4 and 100 * 4
Accessing a Delphi DLL function.
Antonio, Ok, I am lost. I really don't understand how we are connecting to this dll. I guess my main question is ... are we accessing the dll correctly and getting the correct response ? I don't want to spend $129.00 if it will not work with Fivewin <!-- s:? --><img src="{SMILIES_PATH}/icon_confused.gif" alt=...
Accessing a Delphi DLL function.
Jeff, The DLL expects an array of 128 long numbers (a long number uses 4 bytes = 32 bits). Instead of using 128 struct members, we are using one single string that has 128 * 4 bytes. The DLL is being accessed as the MessageBox() is shown, though they show a [99], and according to our test they are changing the firs...
Accessing a Delphi DLL function.
Hi Antonio, Here is the reply: Yes, in the DLL we change a[99] only, a[0] remains the same. We've compiled a test application (using the code from our C.txt sample), and placed this to the TestDLL.zip at the same address, please download it. By this application you can set a[0] value before the DLL function call ( ...
Accessing a Delphi DLL function.
Jeff, Ok, here you having it working fine. I redesigned it in a total different way: [code:2u3wtsc5] #include "FiveWin&#46;ch" function Main&#40;&#41; local cArray &#58;= FillArray&#40;&#41; MsgInfo&#40; A99&#40; cArray &#41; &#41; TestFunc1&#40; cArray &#41; MsgInfo&#40; A99&#40; cArray &#41; &#41...
Accessing a Delphi DLL function.
Thanks for all the help Antonio. I am going to buy the software today. I will let you know you well it works. Jeff
Accessing a Delphi DLL function.
Jeff, You are welcome, IMO it will work fine <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
Accessing a web service from FiveTouch !!!
Thanks to Rafa Carmona here you have a working example of how to access a web service using Harbour code and FiveTouch! <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> This opens the door to manage any remote database (MySQL, SQL, etc) using a web service which it is the ...
Accessing a web service from FiveTouch !!!
Excellent, Good News
Accessing a web service from FiveTouch !!!
Using it from FiveTouch for Android: [img:netzyvzj]https&#58;//bitbucket&#46;org/fivetech/screenshots/downloads/fivetouch_web_service_android1&#46;png[/img:netzyvzj] [img:netzyvzj]https&#58;//bitbucket&#46;org/fivetech/screenshots/downloads/fivetouch_web_service_android2&#46;png[/img:netzyvzj]
Accessing a web service from FiveTouch !!!
Antônio, Could you build an small example of use MySql with FiveTouch ?
Accessing a web service from FiveTouch !!!
Vilian, Simply call a remote PHP from FiveTouch, like in the above example, and use the MySQL returned value You don't even need to build a web service in the server. Just simple PHP code to retrieve a MySQL field value and return it
Accessing to MySQL from FiveTouch
<!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=33&t=36840">viewtopic.php?f=33&t=36840</a><!-- l -->
Acción al pulsar imagen en Browse
Hola. Estoy intentando ejecutar una acción cuando se pulsa una imagen de una celda del xBrowse pero no me reacciona, supongo que me dejo algo. En base al ejemplo xbrimag2.prg de Fivewin, he incluido el data bBmpAction: [code=fw:jnh16dpj]<div class="fw" id="{CB}" style="font-family: monospace;"><br />WITH OBJECT :<spa...
Acción al pulsar imagen en Browse
Victor, prueba con la data bLDClickData del objeto columna
Acción al pulsar imagen en Browse
Victor Intenta con: [code=fw:u28ilv3m]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oBrw:<span style="color: #000000;">bLClicked</span>:= <span style="color: #000000;">&#123;</span>|r,c,f,oBrw| <span style="color: #00C800;">If</span><span style="color: #000000;">&#40;</span>oBrw:<span style="color: ...
Acción al pulsar imagen en Browse
[quote="acuellar":1dlyncnt]Victor Intenta con: [code=fw:1dlyncnt]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oBrw:<span style="color: #000000;">bLClicked</span>:= <span style="color: #000000;">&#123;</span>|r,c,f,oBrw| <span style="color: #00C800;">If</span><span style="color: #000000;">&#40;</spa...
Acción con tecla ESCAPE en tGet
Las siguientes instrucciones en los metodos KeyChar y KeyDown de tGet y tControl(), no sólo evitan un beep, sino que también impiden la ejecución de cualquier acción al pulsar la tecla ESC. if nKey == VK_ESCAPE // avoids a beep! ::oWnd:KeyChar( nKey, nFlags ) return 1 endif Tuve que hacer override de esos ...
Acción con tecla ESCAPE en tGet
Buenos dias Cesar, desculpe el incomodo... Por favor, tienes alguna nueva version de SETMENUBG()???? // [code:gz4e1yjo] ******************************************************************************* * * Function SetMenuBG&#40;oWndMain, nClrBack, oBrush&#41; * * ENGLISH &#58; Changes menus backgrounds or paint them...
Acción con tecla ESCAPE en tGet
César, En principio no tiene que haber problemas por ese cambio, salvo que el GET tenga un VALID y no quieras que el usuario salga del diálogo con ESC. Aunque en tal caso el VALID del diálogo se ejecutaría.
Acción con tecla ESCAPE en tGet
Up! Donde está César??
Acción en Items TreeView
Al seleccionar una Items en un TreeView se puede ejecutar una acción ? ¿Como? Saludos, Manuel
Acción en un bitmap
Compañeros, tengo un bitmap en un dialogo, lo implementé de la siguiente manera, [code=fw:2hzz9hfd]<div class="fw" id="{CB}" style="font-family: monospace;"><br />hBitmap := LoadBitmap<span style="color: #000000;">&#40;</span> GetResources<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</s...
Acción en un bitmap
Horacio, Lo idóneo es que uses un control TBitmap. Si lo estás mostrando sobre una ventana puedes hacer: @ <nFila>, <nColumna> BITMAP oBmp OF oWnd RESOURCE "cerrar" ; ON CLICK MsgInfo( "Mi acción" ) Para un diálogo definido desde recursos: REDEFINE BITMAP oBmp ID <nId> OF oDlg RESOURCE "cerrar" ; ON CLICK Msg...
Acción en un bitmap
Antonio, esta rutina la utilizo en el método Paint del dialogo, si utilizo la clase me da errores cada tanto. Por eso decidí implementarlo de esta manera. Capaz que se pueda usar la clase pero no he podido dilucidar el porque de los gpf. Gracias Saludos
Acción en un bitmap
Horacio, te estoy contestando desde una tableta, por lo que no tengo el FWH a mano, pero con oDlg:blButtonDown o como se llame, puedes llamar a una función pasándole nRow y nCol, para saber si has pinchado sobre el Bmp o no. Eso lo hago algunas veces y va muy bien. Un saludo.
Acción en un bitmap
Antolín, gracias por tu respuesta. Si pudieras postear un ejemplo te lo agradecería. Saludos
Acción en un bitmap
Algo como esto:: [code=fw:2o3mfwi6]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #0000ff;">DEFINE</span> <span style="color: #0000ff;">DIALOG</span> ....<br />   <span style="color: #0000ff;">DEFINE</span> <span style="color: #0000ff;">GET</span> ....<br />   ...<br />   oDlg:<span style...
Acción en un bitmap
Muchas gracias Antolín por tu sugerencia, pruebo y comento. Saludos
Acción en un bitmap
Funcionó perfectamente. Muchas gracias Antolín. Saludos
Accordion Menu
Hello everyone, a cool new control for our programs I think it could be a Accordion Menu... I think it could be done by modifying the OUTLOOK CLASS... [img:30842qzd]http&#58;//f-source&#46;com/accordion-menu/iphone/images/iphone-menu-demo&#46;png[/img:30842qzd]
Accounting Software
Hi All Has anyone interfaced their software with Sage Pastel or any of the other smaller accounting packages ie MYOB , Quickbooks. Regards Colin
Accounting Software
Colin, I've done some work with Quickbooks. What do you want to know? Randal
Accounting Software
I import data from accounting software using CSV files. Colin I'd like to see what your doing with quickBooks. Do you have a direct link to QB or use an intermiedate step such as a csv file?
Accounting Software
Hi Randal and Harvey Harvey - Randal has the done the interface to Quickbooks. I am trying to interface my job costing software to an accounting package - my client likes Sage Pastel - there is a SDK which uses activex but I cant find any code samples and if I want to evaluate the product I would have to purchase t...
Accounting Software
Sorry Got you mixed up. Can you client upload data from a csv. I send my data to excel have it save in a CSV file which is then imported into their bookkeeping program. This any help?
Accounting Software
Harvey I am hoping to transfer data in realtime rather than in batches. Cheers Colin
Accounting Software
You can also use an SDK ( free ) for Quickbooks, but you would have to buy that product. There are samples available for working with QB.
Accounting Software
Harvey, [quote:mkosu07y]I send my data to excel have it save in a CSV file which is then imported into their bookkeeping program.[/quote:mkosu07y] You do know that you can save data directly to a CSV file directly from within FW? You don't have to go through Excel. James
Accounting Software
Thanks james I do create a CSV directly from the porgram. Its on the import side when the file to import must be a csv file.
Ace32.dll y mas dll porque?
saludos al foro: Valla que surgen detalles durante las actualizaciones. Como puedo saber para que me sirve la ace32.dll tanto local como en red. He tenido ese detalle con pruebas en red de mis app. Y asi como esa, las que necesite saber. Es suponer que algunas libs, requieren su dll, pero existe referencia de ello. M...
Ace32.dll y mas dll porque?
Noé, Usas Advantage RDD ? Si no lo usas, no tienes porque enlazar su libreria ni necesitar su DLL. Las aplicaciones en 32 bits (las que construyes con Harbour y FWH) funcionan perfectamente en Windows de 64 bits <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
Ace32.lib
Yesterday I changed xHarbour to newest , 1.1.0 version . All is working ok , except this lib . Sorry but in one place one program is using this .. <!-- s:( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":(" title="Sad" /><!-- s:( --> . Can any share with me a newest ace32.dll and adsloc32.dll ? My e-mail : <!-- e...
Ace32.lib
Thanks to NageswaraRao ! All is working OK now ... Regards !
Aceleradoes (Hotkeys)
Seria muy bueno que los Aceleradores (hotkeys), funcionen correctamente con o sin el parametro 2007 en BTNBMP y BUTTONBMP. Se ha trabajado en la apariencia, lo cual esta muy bien y es la razon por la cual me actualice a la 9.04, pero ... siempre hay un pero...se descuido la funcionalidad, a mi me paso hoy, una actualiz...
Aceleradoes (Hotkeys)
Blessed, Puedes proporcionar un pequeño ejemplo de lo que antes funcionaba bien y ahora no va ? gracias <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
Aceleradoes (Hotkeys)
Hello Antonio this is my workaround : Maurizio DEFINE BUTTONBAR oBar SIZE 40,40 OF oDlg DEFINE BUTTON oBtn RESOURCE 'Add' OF oBar ACTION MsgInfo("Ciao") oBtn:cargo := VK_F3 oDlg:bKeyDown = { | nKey | CheckKey(nKey,oBar)} Function CheckKey(nKey,oBar) Local nX,nY Local lControl := GetKeyState(VK_CONT...
Aceleradoes (Hotkeys)
saludos Antonio: [quote:ahro8tqs] Postby Antonio Linares » Wed May 06, 2009 7:39 am Blessed, Puedes proporcionar un pequeño ejemplo de lo que antes funcionaba bien y ahora no va ? gracias <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> regards, saludos [/quote:ahro8tqs] ...
Aceleradoes (Hotkeys)
Blessed, me referia a los hotkeys <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> Son los hotkeys de los textos de los botones ? Puedes mostrar un ejemplo de como los defines ? gracias,
Aceleradoes (Hotkeys)
Perdon, Aqui el ejemplo: [code=fw:3ryh6y8q]<div class="fw" id="{CB}" style="font-family: monospace;"> &nbsp; &nbsp;<span style="color: #0000ff;">REDEFINE</span> <span style="color: #0000ff;">BTNBMP</span> oBtn<span style="color: #000000;">&#91;</span><span style="color: #000000;">1</span><span style="color: #000000;"...