<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/168893</link>
    <title>MATLAB Central Newsreader - fontsize of inputdlg box?</title>
    <description>Feed for thread: fontsize of inputdlg box?</description>
    <language>en-us</language>
    <copyright>&amp;copy;1994-2008 by The 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>The MathWorks</title>
      <url>http://www.mathworks.com/images/membrane_icon.gif</url>
    </image>
    <item>
      <pubDate>Wed, 07 May 2008 22:51:04 -0400</pubDate>
      <title>fontsize of inputdlg box?</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/168893#430917</link>
      <author>jay vaughan</author>
      <description>Hi,&lt;br&gt;
&lt;br&gt;
Anyone know how to change the fontsize of an inputdlg box? &lt;br&gt;
&lt;br&gt;
answer = inputdlg('default font too small for my old eyes!');&lt;br&gt;
&lt;br&gt;
Reading the help file, I saw there is the possibility of&lt;br&gt;
entering some options, such as options.WindowStyle='normal',&lt;br&gt;
but couldn't find one for fontsize.&lt;br&gt;
&lt;br&gt;
Thanks,&lt;br&gt;
J&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
</description>
    </item>
    <item>
      <pubDate>Wed, 07 May 2008 23:44:13 -0400</pubDate>
      <title>Re: fontsize of inputdlg box?</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/168893#430925</link>
      <author>Doug Schwarz</author>
      <description>In article &amp;lt;fvtbon$3vh$1@fred.mathworks.com&amp;gt;,&lt;br&gt;
&amp;nbsp;"jay vaughan" &amp;lt;jvaughan5.nospam@gmail.com&amp;gt; wrote:&lt;br&gt;
&lt;br&gt;
&amp;gt; Hi,&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Anyone know how to change the fontsize of an inputdlg box? &lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; answer = inputdlg('default font too small for my old eyes!');&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Reading the help file, I saw there is the possibility of&lt;br&gt;
&amp;gt; entering some options, such as options.WindowStyle='normal',&lt;br&gt;
&amp;gt; but couldn't find one for fontsize.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Thanks,&lt;br&gt;
&amp;gt; J&lt;br&gt;
&lt;br&gt;
If you look in the m-file, you'll see a line like this:&lt;br&gt;
&lt;br&gt;
TextInfo.FontSize           = get(0,'FactoryUIControlFontSize');&lt;br&gt;
&lt;br&gt;
which means that the font size is set to the factory default for &lt;br&gt;
uicontrols.  You can't change that, but you can chance that line in the &lt;br&gt;
m-file:&lt;br&gt;
&lt;br&gt;
TextInfo.FontSize           = 14;&lt;br&gt;
&lt;br&gt;
I'm not sure if MATLAB will see that change unless you clear the toolbox &lt;br&gt;
cache.  Try "clear inputdlg" or "clear functions".&lt;br&gt;
&lt;br&gt;
-- &lt;br&gt;
Doug Schwarz&lt;br&gt;
dmschwarz&amp;ieee,org&lt;br&gt;
Make obvious changes to get real email address.&lt;br&gt;
</description>
    </item>
    <item>
      <pubDate>Thu, 08 May 2008 04:34:03 -0400</pubDate>
      <title>Re: fontsize of inputdlg box?</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/168893#430949</link>
      <author>jay vaughan</author>
      <description>Doug,&lt;br&gt;
&lt;br&gt;
thanks for the reply. That is helpful!&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
J&lt;br&gt;
&lt;br&gt;
Doug Schwarz &amp;lt;see@sig.for.address.edu&amp;gt; wrote in message&lt;br&gt;
&amp;lt;see-52778E.19443807052008@71-129-133-66.dollamir.com&amp;gt;...&lt;br&gt;
&amp;gt; In article &amp;lt;fvtbon$3vh$1@fred.mathworks.com&amp;gt;,&lt;br&gt;
&amp;gt;  "jay vaughan" &amp;lt;jvaughan5.nospam@gmail.com&amp;gt; wrote:&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; Hi,&lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; Anyone know how to change the fontsize of an inputdlg box? &lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; answer = inputdlg('default font too small for my old&lt;br&gt;
eyes!');&lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; Reading the help file, I saw there is the possibility of&lt;br&gt;
&amp;gt; &amp;gt; entering some options, such as options.WindowStyle='normal',&lt;br&gt;
&amp;gt; &amp;gt; but couldn't find one for fontsize.&lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; Thanks,&lt;br&gt;
&amp;gt; &amp;gt; J&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; If you look in the m-file, you'll see a line like this:&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; TextInfo.FontSize           =&lt;br&gt;
get(0,'FactoryUIControlFontSize');&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; which means that the font size is set to the factory&lt;br&gt;
default for &lt;br&gt;
&amp;gt; uicontrols.  You can't change that, but you can chance&lt;br&gt;
that line in the &lt;br&gt;
&amp;gt; m-file:&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; TextInfo.FontSize           = 14;&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; I'm not sure if MATLAB will see that change unless you&lt;br&gt;
clear the toolbox &lt;br&gt;
&amp;gt; cache.  Try "clear inputdlg" or "clear functions".&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; -- &lt;br&gt;
&amp;gt; Doug Schwarz&lt;br&gt;
&amp;gt; dmschwarz&amp;ieee,org&lt;br&gt;
&amp;gt; Make obvious changes to get real email address.&lt;br&gt;
&lt;br&gt;
</description>
    </item>
  </channel>
</rss>
