mex-files
Notes on setting up matlab R2007a/b at mathworks. Note that 32 and 64 bit mex-files are different.
Listbox: coloring individual lines
Here's an example for both background and font:
% list contains entires;
for i = 1:length(list)
list_colored{i} = sprintf( '<html><DIV bgcolor="yellow"><font color="red">%s</font></DIV></html>', list{i} );
end
set(handles.group,'String',list_colored)
See further info.
Add Comment