<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/173499</link>
    <title>MATLAB Central Newsreader - Making GUI as .exe file</title>
    <description>Feed for thread: Making GUI as .exe file</description>
    <language>en-us</language>
    <copyright>&amp;copy;1994-2012 by MathWorks, Inc.</copyright>
    <webmaster>webmaster@mathworks.com</webmaster>
    <generator>MATLAB Central Newsreader</generator>
    <docs>http://blogs.law.harvard.edu/tech/rss</docs>
    <ttl>60</ttl>
    <image>
      <title>MathWorks</title>
      <url>http://www.mathworks.com/images/membrane_icon.gif</url>
    </image>
    <item>
      <pubDate>Wed, 30 Jul 2008 15:05:20 -0400</pubDate>
      <title>Making GUI as .exe file</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/173499#446298</link>
      <author>M.Mohsin Siraj</author>
      <description>Hey GuyZ&lt;br&gt;
whenever we design any GUI, it creates two file one with &lt;br&gt;
extension .fig and .m&lt;br&gt;
i want to have the .exe file of the same GUI, how can i ve &lt;br&gt;
the .exe file of GUI... because i cannt give every one the &lt;br&gt;
code again n again...&lt;br&gt;
&lt;br&gt;
Regards,</description>
    </item>
    <item>
      <pubDate>Wed, 30 Jul 2008 15:13:54 -0400</pubDate>
      <title>Re: Making GUI as .exe file</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/173499#446299</link>
      <author>roberson@ibd.nrc-cnrc.gc.ca (Walter Roberson)</author>
      <description>In article &amp;lt;g6pvvg$8o3$1@fred.mathworks.com&amp;gt;,&lt;br&gt;
M.Mohsin Siraj &amp;lt;stylismoh@mathworks.com&amp;gt; wrote:&lt;br&gt;
&lt;br&gt;
&amp;gt;whenever we design any GUI, it creates two file one with &lt;br&gt;
&amp;gt;extension .fig and .m&lt;br&gt;
&amp;gt;i want to have the .exe file of the same GUI, how can i ve &lt;br&gt;
&amp;gt;the .exe file of GUI... because i cannt give every one the &lt;br&gt;
&amp;gt;code again n again...&lt;br&gt;
&lt;br&gt;
You would need the optional (extra cost) Matlab Compiler toolbox.&lt;br&gt;
-- &lt;br&gt;
&amp;nbsp;&amp;nbsp;&quot;He wove a great web of knowledge, linking everything together, &lt;br&gt;
&amp;nbsp;&amp;nbsp;and sat modestly at a switchboard at the center, eager to help.&quot;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;-- Walter Kerr</description>
    </item>
    <item>
      <pubDate>Wed, 30 Jul 2008 15:27:02 -0400</pubDate>
      <title>Re: Making GUI as .exe file</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/173499#446304</link>
      <author>Jeremy Smith</author>
      <description>It sounds like you're using Guide to create your GUIs.  If I&lt;br&gt;
remember correctly this always creates a .fig file to go&lt;br&gt;
with the code.  You will have to avoid using Guide if you&lt;br&gt;
don't want to have to include a fig file.&lt;br&gt;
&lt;br&gt;
Prgrammatically build a GUI using the uicontrol, figure,&lt;br&gt;
getappdata, setappdata, get, set, drawnow, and other GUI&lt;br&gt;
functions.  It looks like there is a good intro to non-Guide&lt;br&gt;
GUI design in the Matlab help (at least in R2007a).  Do a&lt;br&gt;
search in the Matlab help for &quot;gui&quot; and the third entry&lt;br&gt;
should be &quot;Designing a GUI&quot;.  That series of pages will help&lt;br&gt;
a lot.</description>
    </item>
    <item>
      <pubDate>Thu, 31 Jul 2008 03:02:01 -0400</pubDate>
      <title>Re: Making GUI as .exe file</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/173499#446465</link>
      <author>M.Mohsin Siraj</author>
      <description>&quot;Jeremy Smith&quot; &amp;lt;smit1729@umn.NOSPAM.edu&amp;gt; wrote in message &lt;br&gt;
&amp;lt;g6q186$qkh$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; It sounds like you're using Guide to create your GUIs.  &lt;br&gt;
If I&lt;br&gt;
&amp;gt; remember correctly this always creates a .fig file to go&lt;br&gt;
&amp;gt; with the code.  You will have to avoid using Guide if you&lt;br&gt;
&amp;gt; don't want to have to include a fig file.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Prgrammatically build a GUI using the uicontrol, figure,&lt;br&gt;
&amp;gt; getappdata, setappdata, get, set, drawnow, and other GUI&lt;br&gt;
&amp;gt; functions.  It looks like there is a good intro to non-&lt;br&gt;
Guide&lt;br&gt;
&amp;gt; GUI design in the Matlab help (at least in R2007a).  Do a&lt;br&gt;
&amp;gt; search in the Matlab help for &quot;gui&quot; and the third entry&lt;br&gt;
&amp;gt; should be &quot;Designing a GUI&quot;.  That series of pages will &lt;br&gt;
help&lt;br&gt;
&amp;gt; a lot.&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Mr.Smith&lt;br&gt;
Thnx for your answer, i am using guide, and i do have the &lt;br&gt;
compiler... now how it works can you kindly explain me its &lt;br&gt;
working???</description>
    </item>
  </channel>
</rss>

