From: dude on
Hi all, i want know how we can import a MS SQL table in to Matlab GUI figure. i tried many times but no use..

i used a list box to display my records but the records doesnt show as in a table format..can any one help me to correct this??

the code i have used is this,

[code]

curs = exec(conn,'select * from customer');
curs = fetch(curs);

set(handles.lbAvailableCustomers,'String',curs.data);

[/code]

thanks in advance..