Date selection components

Have you ever wondered why Matlab does not have standard GUI date-handling components?

Matlab has many built-in date-handling functions (calendar, date, datestr, datenum, datetick, datevec etc.). Unfortunately, this built-in support does not extend to Matlab GUI. If we need a date-selection drop-down or calendar panel we have to design it ourselves, or use a third-party Java component or ActiveX control.

JIDE Components

Luckily, we have a much better alternative, right within Matlab. This relies on the undocumented fact that Matlab uses JIDE components for many of its GUI components. As already explained earlier, JIDE controls are pre-bundled in Matlab (/java/jarext/jide/jide-grids.jar under the Matlab root). You can find further details on JIDE Grids in the Developer Guide (pages 28-35) and the Javadoc documentation.

In particular, JIDE Grids includes the following date-selection controls:

  • DateChooserPanel – an extension of Swing’s JPanel that displays a single month and enables selecting one or more days
  • CalendarViewer – a similar panel, that displays several months in a table-format (e.g., 4×3 months)
  • DateComboBox – a combo-box (drop-down/popup menu) that presents a DateChooserPanel for selecting a date
  • DateSpinnerComboBox – presents a date-selection combo-box that includes both the DateComboBox and a spinner control (this control is only available in the latest Matlab releases)
  • MonthChooserPanel – a panel that enables selection of entire months (not specific dates)
  • MonthComboBox – a month selection combo-box, similar to DateComboBox but without the ability to select individual days

Usage of these controls is very similar, so I’ll just show the basics here. First, to present any control, we need to use the built-in javacomponent function or the uicomponent utility:

% Initialize JIDE's usage within Matlab
com.mathworks.mwswing.MJUtilities.initJIDE;
 
% Display a DateChooserPanel
jPanel = com.jidesoft.combobox.DateChooserPanel;
[hPanel,hContainer] = javacomponent(jPanel,[10,10,200,200],gcf)


DateChooserPanel   MonthChooserPanel

DateChooserPanel and MonthChooserPanel components

CalendarViewer

2x2 CalendarViewer component


Just as with any Java object, properties may either be accessed with the Java accessor methods (e.g. getName() or setName(name)), or the Matlab get/set semantics (e.g. get(prop,’Name’) or set(prop,’Name’,value)). When using the Matlab syntax, remember to wrap the Java object in a handle() call, to prevent a memory leak (or use hPanel rather than jPanel):

jPanel.setShowWeekNumbers(false);    % Java syntax
set(hPanel,'ShowTodayButton',true);  % Matlab syntax

Retrieving the selected date is easy:

>> selectedDate = jPanel.getSelectedDate()
selectedDate =
Sun Jun 27 00:00:00 IDT 2010
% or: selectedDate = get(jPanel,'SelectedDate');
 
% Note: selectedDate is a java.util.Date object:
>> selectedDate.get
	Class = [ (1 by 1) java.lang.Class array]
	Date = [27]
	Day = [0]
	Hours = [0]
	Minutes = [0]
	Month = [5]
	Seconds = [0]
	Time = [1.27759e+012]
	TimezoneOffset = [-180]
	Year = [110]

We can enable selection of multiple dates (SINGLE_SELECTION=0, SINGLE_INTERVAL_SELECTION=1,MULTIPLE_INTERVAL_SELECTION=2):

jModel = hPanel.getSelectionModel;  % a com.jidesoft.combobox.DefaultDateSelectionModel object
jModel.setSelectionMode(jModel.MULTIPLE_INTERVAL_SELECTION);
 
>> hPanel.getSelectionModel.getSelectedDates
ans =
java.util.Date[]:
    [java.util.Date]
    [java.util.Date]
    [java.util.Date]

And of course we can set a callback for whenever the user modifies the selected date(s):

hModel = handle(hPanel.getSelectionModel, 'CallbackProperties');
set(hPanel, 'ValueChangedCallback', @myCallbackFunction);

For the combo-box (drop-down/popup menus) controls, we obviously need to modify the displayed size (in the javacomponent call) to something much more compact, such as [10,10,100,20]. These components display one of the above panels as their pop-up selection panels. Users can access and customize these panels using the combo-box control’s getPopupPanel() function (or PopupPanel property).

DateComboBox   DateSpinnerComboBox

DateComboBox and DateSpinnerComboBox components

Numerous other customizations are possible with these JIDE components – have fun exploring (my uiinspect utility can be quite handy in this)! Just remember that JIDE evolves with Matlab, and so JIDE’s online documentation, which refers to the latest JIDE version, may be partially inapplicable if you use an old Matlab version. The older your Matlab, the more such inconsistencies that you may find.

Alternative components

There are several alternatives to the JIDE components:

If we have Matlab’s Financial toolbox, we can use the uicalendar function. Unfortunately, this control is not available if you don’t own the expensive Financial toolbox.

If we only target Windows-based platforms, we could use third-party ActiveXes such as the Microsoft Date-and-Time-Picker (MSComCtl2.DTPicker.2), Microsoft MonthView (MSComCtl2.MonthView.2) or the Microsoft Office Calendar (MSCAL.Calendar.7) ActiveX controls. Depending on your installed applications, you may have other similar controls. For example, if you have Symantec’s EndPoint Protection (SEP), you have access to the SEP Date Control (LDDATETIME.LDDateCtrl.1). Of course, these controls will not work on non-Windows platforms, or platforms that do not have these ActiveX controls installed.

We can also use other (non-JIDE) third-party Java controls from places like javashareware.com, swinglabs.org, downloadthat.com, sharewareconnection.com, easyfreeware.com, l2fprod.com, fileheap.com/software/components.html, swing-components.safe-install.com and many others. One specific example is NachoCalendar, from SourceForge.com.

Finally, we could use some of the utilities posted on the Matlab File Exchange: uical, uisetdate, calender (sic) and several others.

In my own biased opinion, none of these alternatives comes close to the ease-of-use and functionality of the JIDE components presented above. What do you think? Please add your comments here.

Categories: GUI, Java, Medium risk of breaking in future versions, Undocumented feature

Tags: , , , , ,

Bookmark and SharePrint Print

71 Responses to Date selection components

  1. Mike says:

    Could you please explain how to change the date format of the DateSpinnerComboBox? I poked around with the findjobj tool, but it appears the format must be a java class?

    Currently it reads 30/06/10. How would you change it to appear as June 30, 2010?

    Thanks.

  2. Mike says:

    Ok, I’m starting to love them java components in my GUI, but I still dont know anything about java.

    How would I initialize a date for the DateComboBox?

    • @Mike – you can use the setDate() function, as follows:

      dateSpinner = com.jidesoft.combobox.DateSpinnerComboBox;
      myDate = java.util.Date('July 4 1776');
      dateSpinner.setDate(myDate);

      Use my UIInspect utility or Matlab’s built-in methodsview function to explore the dozens of available methods.

    • Mike says:

      Thanks for your response and your patience. Java syntax is completely new to me, so I have great difficulty reading the doc pages online.

  3. Gunnar says:

    I inserted the OK button with

    set(hPanel,'ShowOKButton',true);

    Now I want the window to close when I push the OK button.

    How can I do that by using callback?

  4. Henric says:

    Thank you for posting this!

    I created a DateChooserPanel with a ValueChangedCallback assigned to it, but it is not triggered when i change the month. Is there a separate callback for this? uiinspect only shows ValueChangedCallback.

    Is there any way to get a callback to trigger when changing the month?

    • @Henric – clicking the month is not an actionable event in DateChooserPanel – only selecting a specific date is actionable. If you wish to select a month, use MonthChooserPanel instead.

  5. Amy says:

    Hi, Yair,
    I’m trying to implement a callback for the selection from a DateSpinnerComboBox. Unfortunately, it does not appear to have a date selection model, as you show in your example. I bought your book, but it has the same info as this web page. I’m assuming this is more complicated, since it it has several components (text field, spinner, and DateChooserPanel). Do I have to create some kind of listener for each component?

    Thanks,

    Amy

    • set(jhDateChooser, 'ItemStateChangedCallback', callback);
    • Amy says:

      Yair,

      You are amazing! Thank you! This worked like a champ! Maybe this will go into the next edition of the book? :)

      Amy

    • @Amy – maybe :-) I’m not sure at the moment if and when a second edition of my book will be published. A lot will depend on the question of how much will the upcoming Matlab 8 change the Java internals and interfaces.

      In the meantime I’ve already started working on an altogether different Matlab programming book, and this is taking up much of my time…

  6. Carlos says:

    Hi,
    First of all thanks for posting this. I’m trying to add a DateComboBox in my GUI, but I need to be able to make some custom dates non selectable (and if possible also display them in another color).

    I think I need to override some of the java code (I found an example in jide forum), but I don’t know if it’s possible in Matlab. If it’s possible, how do I do it?

    This is the code I found:

    new DateComboBox() {
       @Override
       protected DateChooserPanel createDateChooserPanel() {
          return new DateChooserPanel(getDateModel(), isShowTodayButton(), isShowNoneButton(), isShowWeekNumbers(), getLocale()) {
             @Override
             protected void updateDateLabel(JComponent dateLabel, Calendar date, boolean isSelected, boolean isToday, boolean withinCurrentMonth) {
                super.updateDateLabel(dateLabel, date, isSelected, isToday, withinCurrentMonth);
                if (isHoliday(date)) { // take your logic to decide which date you want to change color
                   dateLabel.setOpaque(true);
                   ((JideButton) dateLabel).setBackgroundOfState(ThemePainter.STATE_DEFAULT, Color.gray);
                }
             }
          };
       }
    }
    • @Carlos – I’m not sure you can customize the controls this way. However, I think you can use something similar to this (untested):

      jDateChooser = javaObjectEDT(com.jidesoft.combobox.DateComboBox);
      calendar = java.util.Calendar.getInstance;
      calendar.setTime(java.util.Date(datestr(dateNum)));  %dateNum is your invalid Matlab date
      jDateChooser.getDateModel.addInvalidDate(calendar);

      Alternately, you can create a Java class that implements com.jidesoft.combobox.DateFilter. This is a simple interface that just defines 3 methods:

      getMaxDate() : java.util.Calendar
      getMinDate() : java.util.Calendar
      isDateValid(java.util.Calendar) : boolean

      Once you compile this class, you can add an object of it to the jDateChooser via

      jDateChooser.getDateModel.addDateFilter(newDateFilter)
    • Carlos says:

      Thanks a lot! It worked and it also changes de color of the non selectable dates to gray.
      But the correct method was addInvalidDate instead of removeInvalidDate. removeInvalidDate is for making the invalid date selectable again.
      I found out that you can also set a min date and a max selectable date easily with setMaxDate or setMinDate (calling them in the same way that addInvalidDate).

    • Carlos says:

      I’ve just seen your edited comment. I want to change the selectable dates during the execution of my program depending on several things so I guess it’d be more simple to just use addInvalidDate, setMinDate and setMaxDate.
      Thanks a lot!

  7. Cesar says:

    It would be possible to show an example in java which display multiple dates selected, for example if the dates are taken from the db and need to be shown on the calendar

  8. Ivan says:

    Hey Yair, I am following your guide and I ran into a problem.
    I did exactly the same as you wrote, and everything was good until the part where i wanted to select
    multiple dates on a calendar. But when I type in this line:
    jModel = hPanel.getSelectionModel;

    It says: “No appropriate method, property, or field getSelectionModel for class handle.handle.”

    What am I doing wrong? I’ve tried everything.
    Thanks in advance!

    • @Ivan – this means that the hPanel was not created properly, or perhaps was deleted by the time your program got to the jModel assignment line.

    • Ivan says:

      So how do I fix that? I followed your guide and used exactly the same commands up to that point.
      This would really help me a lot.

    • Ivan says:

      When I leave the figure window open and type the lines:

      jModel = hPanel.getSelectionModel;
      jModel.setSelectionMode(jModel.MULTIPLE_INTERVAL_SELECTION);

      then it doesn’t report the error I mentioned above. But it still doesn’t change the ability to select more dates on a calendar.
      I’m confused.

    • @Ivan – it is impossible to know exactly why this happens without debugging your code and knowing more details about your environment (platform, Matlab release, java version – basically what ver reports). Contact me via email (altmany at gmail) with all the details and I’ll send you a proposed quote for solving this.

  9. Varouj says:

    I am not too clear about how to include this in my own GUI. I have an app for which I created a GUI using GUIDE. How do I embed calendar tools in my GUI?

  10. amodedude says:

    This is probably something so obvious that, for 90% of the people here, it may not be worth mentioning. For the sake of people like me that are still learning the absolute basics, I’d like to note that a simple way to make the calender disappear after selecting the desired date is:

    jPanel.setVisible(false);

    Also, a way of getting the date so that you can use it for whatever you may need would be:

    % Get the selected date
    selectedDate = hModel.getSelectedDate();
     
    % Get Date Values
    dayNumber  = get(selectedDate, 'Date');
    monthVal   = get(selectedDate, 'Month');
    yearVal    = get(selectedDate, 'Year');
  11. Peter Neilley says:

    I have a MATLAB GUI app that uses the DateChooserPanel. The app works fine on my Windows machines and on most of my Linux machines too. However, on one of my Linux machines, I get the following error when starting the application: “Unauthorized usage of JIDE products. You get this message if you didn’t input a correct license key.” The application runs, and the DateChoosePanel seemingly works other than returning a null date upon click.

    The linux box that I have this issue on is running V2.6.18. Another linux box running 2.6.18 runs the application just fine.

    I did not install any JIDE products/licenses on any of the machines this application works fine on. I thought JIDE automatically is part of MATLAB and no additional license is necessary.

    Any ideas from anyone what’s going on here?

    • Yair Altman says:

      @Peter – JIDE is indeed part of Matlab, but sometimes Matlab initializes JIDE after your application, and therefore when it first starts to use JIDE in your app then JIDE complains. You can workaround most of these cases by issuing the following command at the very top of your application:

      com.mathworks.mwswing.MJUtilities.initJIDE;

      In rare cases this is not enough, since Matlab’s JIT pre-compiles the application and tries to load the relevant JIDE classes before initJIDE gets called in runtime. The workaround in these cases is to simply use eval to force Matlab to only load these classes in run-time. For example:

      jtable = eval('com.jidesoft.grid.GroupTable(model);');  % prevent JIDE alert by run-time (not load-time) evaluation

      My recent treeTable utility illustrates both of these workarounds.

  12. Pingback: Using JIDE combo-boxes | Undocumented Matlab

  13. Max says:

    Hi, nice article!
    I try to make calendarViewer on my figure. But then i run

    f = figure();
    jPanel = com.jidesoft.combobox.CalendarViewer();
    [hPanel,hContainer] = javacomponent(jPanel,[10,10,200,200],f);

    I get calendarViewer, which is not filled. It looks like a 4×3 blue boxes with control arrows.
    What I do wrong?
    Win 8.1, Matlab R2014a

    • @Max – you can’t expect a full year’s calendar to appear nicely in 190×190 pixels – change the control’s position vector to [10,10,600,600] or larger if you wish to see the internal text

    • Max says:

      Sorry, I found the reason of problem. Argument [10,10,200,200] in javacomponent define too small width and height.

    • Max says:

      @Yair Altman
      thanks a lot. You make my life a bit simpler with JIDE calendarViewer.

  14. Max says:

    Hi again, Yair.
    Is there some way to highlight holidays and colorize background in calendarViewer?

  15. Marc says:

    Hello,
    I am trying to get a callback when clicking on a date but it returns the error :

    Error using javahandle_withcallbacks.com.jidesoft.combobox.DateChooserPanel/set
    The name ‘ValueChangedCallback’ is not an accessible property for an instance of class ‘com.jidesoft.combobox.DateChooserPanel’.

    Error in ZenRX>date_push_Callback (line 358)
    set(hPanel, ‘ValueChangedCallback’, @myCallbackFunction);

    Here is my code :

    function date_push_Callback(hObject, eventdata, handles)
       % Initialize JIDE's usage within Matlab
       com.mathworks.mwswing.MJUtilities.initJIDE;
     
       % Display a DateChooserPanel
       jPanel = com.jidesoft.combobox.DateChooserPanel;
       jPanel.setShowWeekNumbers(false);
       [hPanel,~] = javacomponent(jPanel,[10,250,730,350],gcf);
       set(hPanel,'ShowTodayButton',false);
       set(hPanel,'ShowNoneButton',false);
       set(hPanel, 'ValueChangedCallback', @myCallbackFunction);
     
    function myCallbackFunction()
       hModel = handle(hPanel.getSelectionModel, 'CallbackProperties');
       selectedDate = hModel.getSelectedDate();
       dayNumber  = get(selectedDate, 'Date')
  16. Marc says:

    Thank you very much Yair. One last question. I would like to delete the jpanel and not just hide it [ jPanel.setVisible(false) ] like someone mentioned before. Is there a command for that ?

  17. Simon du Plooy says:

    Hi Yair,

    I have create a DateCombobox abnd I am having trouble customizing the PopupPanel using the getPopupPanel method. It appears that the PopupPanel only gets created once the down arrow button is clicked and gets deleted once a date has been clicked, thus I am unable to get the handle and make changes.

    For instance if I implement this code:

    %Initialize JIDE's usage within Matlab
    com.mathworks.mwswing.MJUtilities.initJIDE;
     
    %Create Date Combobox
    jDateChooser = javaObjectEDT(com.jidesoft.combobox.DateComboBox);
    [hPanel,hContainer] = javacomponent(jDateChooser,[50,400,200,20],gcf);
     
    % Get handle to PopupPanel
    jDateChooser.getPopupPanel
     
    ans = []

    An empty matrix is returned, implying the PopupPanel doesn’t exist yet.

    However, If I then implement the following code:

    % Create font object:
    import java.awt.*
    fontObj = javax.swing.plaf.FontUIResource('Gill Sans MT',Font.PLAIN, 12);
     
    % Set Font for PopupPanel
    jDateChooser.showPopup
    jDateChooser.getPopupPanel.setFont(fontObj)

    The font in the PopupPanel does change, but doesn’t persist until the next instance, implying the PopupPanel got destroyed and recreated.

    Lastly, I used your uiinspect tool and noticed the isPopupVolatile method returns true. I tried to change this using the setPopupVolatile method to false, but to no avail.

    jDateChooser.setPopupVolatile(false);
    jDateChooser.isPopupVolatile
     
    ans = 1

    Any ideas how I can access the PopupPanel of a DateCombobox?

    • Yair Altman says:

      @Simon – You could try to trap the object’s PopupMenuWillBecomeVisibleCallback:

      set(hPanel,'PopupMenuWillBecomeVisibleCallback',@myCallbackFcn);

      Inside the callback function I think that you would get a valid PopupPanel handle (untested)

    • Simon du Plooy says:

      Hi Yair,

      Thank you. Implementing this code worked perfectly.

      function myCallbackFcn(hObject,event)
      import java.awt.*
      fontObj = javax.swing.plaf.FontUIResource('Gill Sans MT',Font.PLAIN, 12);
       
      hObject.getPopupPanel.setFont(fontObj)
    • Even simpler:

      function myCallbackFcn(hObject,event)
         jFont = java.awt.Font('Gill Sans MT', java.awt.Font.PLAIN, 12);
         hObject.getPopupPanel.setFont(jFont)
  18. dingchi says:

    Hi Yair,

    I have create a DateCombobox and I am having trouble about how to retrieve the selected date.

    %Initialize JIDE's usage within Matlab
    com.mathworks.mwswing.MJUtilities.initJIDE;
     
    %Create Date Combobox
    jDateChooser = javaObjectEDT(com.jidesoft.combobox.DateComboBox);
    [hPanel,hContainer] = javacomponent(jDateChooser,[50,400,200,20],gcf);
     
    % Get handle to PopupPanel
    jDateChooser.getPopupPanel
     
    ans = []
    • @dingchi – the popup panel needs to be displayed at least once for the panel to be created. You can do this programmatically:

      jDateChooser.showPopup; jDateChooser.hidePopup;  % show and immediately hide the popup panel
      jDateChooser.getPopupPanel
       
      ans =
      com.jidesoft.combobox.DateChooserPanel[,0,0,272x219,invalid,...]
  19. Emma says:

    Hi Yair,

    Maybe I posted to the wrong blog….

    Here is the date selection. I want to know is there any function or component can do the hour, minute and second selection?

    Sorry..little bit mess up. Thanks

    • @Emma – you can display a time-selector in the date panel using the following code snippet:

      jPanel.setTimeDisplayed(true)

      There are also the related TimeFormat (default=”) and TimeZone properties that you can set.

      If you need to interact with the time-related aspects of the panel, then you will need to investigate this yourself or hire me for a short consulting gig, since it’s beyond the scope of a simple blog comment.

  20. David M says:

    Hi Yair,

    In my application, I have coupled the appearance of a DateChooserPanel with the selection of a pushbutton/calender icon. Here is my issue: the pushbutton is located in the middle of a number of edit/text boxes. As such, when the DateChooserPanel is made visible, it appears on-top of or behind the other objects around it, and stays that way even after I ‘close it’ (i.e. set visible to false). The only way I could figure to make a seamless appearance/disappearance of the DateChooserPanel involves creating and then deleting the java component handle ‘hPanel’ every time the pushbutton is selected. This works, but I was wondering if there was a better way? I have read in normal Java script, I would need to create a JLayeredPane or make use of GlassPane.

  21. Piyush says:

    I am using this Calendar. I was wondering does this have the functionality to resize itself if you change the screen. It would be great if you help me in this process.

    • You can set the java component’s Matlab container’s Units property to ‘normalized’ in order to automatically resize when the figure resizes:

      % Display a DateChooserPanel
      com.mathworks.mwswing.MJUtilities.initJIDE;
      jPanel = com.jidesoft.combobox.DateChooserPanel;
      [hPanel,hContainer] = javacomponent(jPanel,[10,10,200,200],gcf)
      set(hContainer,'Units','norm')
  22. amir says:

    is there menu for other kind of calenders such as month date (in arabic language) …
    or sun date(in nfarsi language)… thanks alot

  23. Efraim Salari says:

    Hi,
    I only see day 1-9 of the month, all the other days are indicated with three dots (like this …). I work on linux matlab 2015a.

    On windows, matlab 2014b it works properly!
    Any suggestions?
    Thanks,

  24. Heiko says:

    Hi,

    how to set the default date that Shows up when inititalizing the DateSpinnerComboBox?

    Thanks,
    Heiko

  25. Mikhail says:

    Hi, Yair Altman!
    I use this helpful functionality but got interesting problem:

    Create calendar this way:

    % --- Executes just before AddEditDoc is made visible.
    function AddEditDoc_OpeningFcn(hObject, eventdata, handles, varargin)
       % code code code
       handles.jPanel = com.jidesoft.combobox.DateChooserPanel;
       [hPanel,hContainer] = javacomponent(handles.jPanel,[500,130,200,200],gcf);
       handles.hPanel = hPanel;
       handles.output = hObject;
       set(handles.hPanel, 'MousePressedCallback', ...
           @(src, evnt)CellSelectionCallback(src, evnt, handles));
       set(handles.hPanel, 'KeyPressedCallback', ...
           @(src, evnt)CellSelectionCallback(src, evnt, handles));
       guidata(hObject, handles);

    And Callback function:

    function CellSelectionCallback(hObject, evnt, handles)
       hModel = handle(hObject.getSelectionModel, 'CallbackProperties');
       selectedDate = hModel.getSelectedDate();
       dayNumber = get(selectedDate,'Date');
       handles.edit_text.String = num2str(dayNumber); 
       guidata(handles.figure1, handles);

    The problem: if I use Debug mode it works correct (put date day into this edit_text Object) but in normal mode it stays empty.
    I thought a lot about some local variables deleted after exiting from function but still can’t figure out it.

    Thank you

  26. Mohammad says:

    Dear Yair

    I have inserted Date selection components into my MATLAB GUI but I do know how I can make a handle for the Date selection components in order to update the date which is selected by user.

    Many thanks in advance….

    Kind Regards,

    Mohammad

  27. Alex says:

    Hi Yair,

    I noticed that for the DateComboBox, the current date value was outlined in red (by default) and remained that way even when the selection was changed. Is there any way to move that red outline to another initialized date? Also, I wanted to set a selectable date range, was there any way to do that easily (say by greying out non-valid dates)? Thanks in advance for the help!

    • @Alex – You can disable certain dates and date-ranges in the calendar as follows:

      jDateChooser = javaObjectEDT(com.jidesoft.combobox.DateComboBox);
      jDateModel = jDateChooser.getDateModel;
      calendar = java.util.Calendar.getInstance;
      calendar.setTime(java.util.Date(datestr(startDateNum)));
      jDateModel.setMinDate(calendar);  % and similarly for MaxDate

      Similarly, you can use jDateModel.addInvalidDate(calendar) to add specific invalid dates within the relevant min/max dates.

      You can set the date chooser to have a different initial (default) date value, but the current date is always marked on the calendar and AFAIK this cannot be avoided.

      If you’d like any additional assistance with your Matlab project, please contact me by email for a consulting offer.

    • Alex says:

      Thanks so much for your help Yair, code worked perfectly, you’re a life saver.

  28. Andrés Aguilar says:

    Hello, has anyone tried to change the language of the DateComboBox? For example

    English -> French
    ——————-
    January -> Janvier
    April -> Avril

    English -> Italian
    ——————-
    Today -> Oggi
    None -> Nessuna

    Thanks in advance!

Leave a Reply

Your email address will not be published. Required fields are marked *