Icons disappear from application after using matlab compiler
Ältere Kommentare anzeigen
Hi
I made an application that I need to run in another computer without matlab, but after use compiler (from matlab R2015b) all the application Icons disappear.
All the icons use some code like this:
pic = fullfile('C:\Program Files\OpenFile.png');
gui.ButOpenFile = uicontrol('Style', 'PushButton', 'Position', [0, 0, 34, 32],...
'parent',panOpen{1}, 'fontsize',11,'Tag','ButOpenFile',...
'String',...
['<html><img src = "file:/', strrep(pic, '\', '/')],...
'TooltipString','Open database folder',...
'Callback', {@OnOpenFile});
I also have been using the following Tool Boxes from which i also get some errors
GUI Layout Toolbox Java Table Wrapper for User Interfaces Tree Controls for User Interfaces
Any help would be apreciated.
Antworten (2)
Armindo
am 30 Sep. 2016
0 Stimmen
2 Kommentare
Walter Roberson
am 30 Sep. 2016
How are you saving the object? You say that the changes to the object are done inside the application: are you expecting that if you save() inside an application that the saved file will be available later? If so then where are you saving it? And are you expecting that the saved changes will be available to all users of the application or only to the person who ran the application and made the changes through the application?
derboo
am 7 Jul. 2017
How did you solve the problem with the Icons? I have the same problem.
Armindo
am 1 Okt. 2016
0 Stimmen
Kategorien
Mehr zu MATLAB Compiler finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!