After many failed attempts to connect and edit / modify records via MySql I have tried Mediator (http://www.otc.pl)
It seems to be working and was fairly simple to set up.
Also, they are providing a free unlimited Rdd to connect to MySql for harbour/xharbour.
I have come across a problem and was wondering if anyone else has see this...
I have a listbox that uses fields from a table opened via MEDNTX (their rdd) and I cannot use the mouse to click on the rows in the listbox (I can use the up/down arrow keys then double click the highlighted item but cannot use the mouse to select a row)
If I change the FIELDS clause to ITEMS and try I can click on the rows.
Example: (non-working)
- Code: Select all Expand view
- @ 7,1 LISTBOX oLbx ;
FIELDS Patients->MRN,Patients->LastName,Patients->FirstName ;
SIZE 780,350 ;
of oSearch
Example: (working)
- Code: Select all Expand view
- aItems := { "One", "Two","Three" }
@ 7,1 LISTBOX oLbx ;
ITEMS aItems ;
SIZE 780,350 ;
of oSearch
Anyone seen this before? Anything I can do to get it working?