1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
| %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% push button moi de JANVIER %%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
h2 = uicontrol(...
'Parent',h1,...
'Units','characters',...
'Position',[19.8 47.4615384615385 4.4 1.76923076923077],...
'String','1',...
'callback',@pushbutton,...
'Tag','pushbutton1');
...
h33 = uicontrol(...
'Parent',h1,...
'Units','characters',...
'BackgroundColor',[0.831372549019608 0.815686274509804 0.784313725490196],...
'FontSize',10,...
'FontWeight','demi',...
'ForegroundColor',[0.0784313725490196 0.168627450980392 0.549019607843137],...
'Position',[19.8 49.1538461538462 24 1.46153846153846],...
'String','JANVIER',...
'callback',@texte,...
'Style','text',...
'Tag','text1'); |