Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 812815
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T01:15:42+00:00 2026-05-15T01:15:42+00:00

I know that this is probably a simple problem but I am new to

  • 0

I know that this is probably a simple problem but I am new to Matlab GUI’s and basically want to get the old value which used to be stored in the text box to replace the value which has just been entered. E.g.

  1. Text box contains a valid string,
  2. User enters invalid string,
  3. Callback func, validates input and realises new input is an error and reverts to the old previous value.

How should this be implemented or done? Atm I am just using the get and set property values.
Below is some sample code:

function sampledist_Callback(hObject, eventdata, handles)
% hObject    handle to sampledist (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

% Hints: get(hObject,'String') returns contents of sampledist as text
%        str2double(get(hObject,'String')) returns contents of sampledist as a double

input = str2double(get(hObject,'String'));
if(input < 0 || input > 500)
    errordlg('Sampled Dist. must be > 0 and < 500','Sample Dist - Input Error');
    set(handles.sampledist,'String',['10']); %<--- I would like this value 10 to be the previous entry!
    guidata(hObject,handles);
else
   set(handles.sampledist,'String',['',input]);
   guidata(hObject,handles);
end
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T01:15:42+00:00Added an answer on May 15, 2026 at 1:15 am

    Simply add a new field sampledistPrev to your handles structure.

    In the openingFcn of the GUI, define the property with a line like this:

    handles.sampledistPrev = 10; %# or whatever you choose as default value
    %# if you want, you can set the default value to the GUI, so that you only need 
    %# to change it at one point, if necessary, like so:
    set(handles.sampledist,'String',num2str(handles.sampledistPrev));
    %# don't forget to save the handles structure at the end of the openingFcn
    guidata(hObject,handles)
    

    Then you update your callback like this:

    function sampledist_Callback(hObject, eventdata, handles)
    % hObject    handle to sampledist (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    structure with handles and user data (see GUIDATA)
    
    % Hints: get(hObject,'String') returns contents of sampledist as text
    %        str2double(get(hObject,'String')) returns contents of sampledist as a double
    
    input = str2double(get(hObject,'String'));
    if(input < 0 || input > 500)
        errordlg('Sampled Dist. must be > 0 and < 500','Sample Dist - Input Error');
        set(handles.sampledist,'String',num2str(handles.sampledistPrev)); %reset value be the previous entry!
        guidata(hObject,handles); %# Note that you don't need to save the handles structure unless
                                  %# you have changed a user-defined value like sampledistPrev
                                  %# It may still be useful to do it so you always remember
    else
       set(handles.sampledist,'String',['',input]);
       %# also update the reset value
       handles.sampledistPrev = input;
       guidata(hObject,handles);
    end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know that this is a simple question for PHP guys but I don't
I know that this is somewhat subjective, but I wonder if there is a
I know that this is subjective and all, but still, can you provide some
I know that in C#, if you write ~MyClass() , this basically translates to
This is a Bad Idea, I know, but... I want to configure log4net programmatically
I know that C# supports covariance in arrays like this : object[] array =
I know that in JavaScript, creating a for loop like this: for(int i =
I followed this tutorial on configuring the Rails plugin ExceptionNotifier. I know that I
Anyone know of a control for asp.net that can achieve this either server or
What tools are out there that compete with this product? CodeKana I know ReSharper

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.