[81c116]: / pushbutton1_CreateFcn.m

Download this file

15 lines (12 with data), 567 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
% --- Executes during object creation, after setting all properties.
function pushbutton1_CreateFcn(hObject, eventdata, handles)
% hObject handle to pushbutton1 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles empty - handles not created until after all CreateFcns called
% Add the Axes information to the Handles
handles.Play_Button = hObject;
%Update the Message Bar
hObject.String = 'Process Data';
% Update handles structure
guidata(hObject, handles);
end