From: Dee Earley on 7 Dec 2009 12:38 On 07/12/2009 17:00, Fred wrote: > "Dee Earley"<dee.earley(a)icode.co.uk> wrote in message > news:%230xG3u1dKHA.2460(a)TK2MSFTNGP04.phx.gbl... >> On 07/12/2009 15:43, Fred wrote: >>> After following this thread I tried it and I am satisfied with the >>> results. >>> However I have some problems with the frames captions which are bold and >>> underlined. >>> Those captions are not displayed completely, the endings are missing but >>> the >>> cut captions length is not equal so the problem is not the length of the >>> caption but something else. >> >> Not seen that. maybe a screenshot will help. Those aren't standard VB frame captions. They look like labels just placed on top of the frame control and not set to autosize. Note that themes do not (normally) change the caption font beyond the text colour. -- Dee Earley (dee.earley(a)icode.co.uk) i-Catcher Development Team iCode Systems
From: Fred on 7 Dec 2009 13:16 I checked and double checked. Those are the captions belonging to the frames not the labels. Fred "Dee Earley" <dee.earley(a)icode.co.uk> wrote in message news:Ow%230GQ2dKHA.4224(a)TK2MSFTNGP02.phx.gbl... > On 07/12/2009 17:00, Fred wrote: >> "Dee Earley"<dee.earley(a)icode.co.uk> wrote in message >> news:%230xG3u1dKHA.2460(a)TK2MSFTNGP04.phx.gbl... >>> On 07/12/2009 15:43, Fred wrote: >>>> After following this thread I tried it and I am satisfied with the >>>> results. >>>> However I have some problems with the frames captions which are bold >>>> and >>>> underlined. >>>> Those captions are not displayed completely, the endings are missing >>>> but >>>> the >>>> cut captions length is not equal so the problem is not the length of >>>> the >>>> caption but something else. >>> >>> Not seen that. maybe a screenshot will help. > > Those aren't standard VB frame captions. > They look like labels just placed on top of the frame control and not set > to autosize. > Note that themes do not (normally) change the caption font beyond the text > colour. > > -- > Dee Earley (dee.earley(a)icode.co.uk) > i-Catcher Development Team > > iCode Systems
From: Fred on 7 Dec 2009 14:05 I have just created simple project with one form and copied one of the frames to it. The problem is still there. You can see it for yourself: http://www.phonedialerpro.com/test.zip Fred "Dee Earley" <dee.earley(a)icode.co.uk> wrote in message news:Ow%230GQ2dKHA.4224(a)TK2MSFTNGP02.phx.gbl... > On 07/12/2009 17:00, Fred wrote: >> "Dee Earley"<dee.earley(a)icode.co.uk> wrote in message >> news:%230xG3u1dKHA.2460(a)TK2MSFTNGP04.phx.gbl... >>> On 07/12/2009 15:43, Fred wrote: >>>> After following this thread I tried it and I am satisfied with the >>>> results. >>>> However I have some problems with the frames captions which are bold >>>> and >>>> underlined. >>>> Those captions are not displayed completely, the endings are missing >>>> but >>>> the >>>> cut captions length is not equal so the problem is not the length of >>>> the >>>> caption but something else. >>> >>> Not seen that. maybe a screenshot will help. > > Those aren't standard VB frame captions. > They look like labels just placed on top of the frame control and not set > to autosize. > Note that themes do not (normally) change the caption font beyond the text > colour. > > -- > Dee Earley (dee.earley(a)icode.co.uk) > i-Catcher Development Team > > iCode Systems
From: Nobody on 7 Dec 2009 15:26 "Fred" <fred(a)nospamhotmail.com> wrote in message news:upTKHB3dKHA.1648(a)TK2MSFTNGP05.phx.gbl... >I have just created simple project with one form and copied one of the >frames to it. > The problem is still there. > You can see it for yourself: > http://www.phonedialerpro.com/test.zip Try: Frame1.Caption = Frame1.Caption Or change or set the font size Frame1.FontSize = Frame1.FontSize
From: Fred on 8 Dec 2009 00:59
I do not understand your advice. Do you mean this: Private Sub Form_Load() Frame1.Caption = "Select phone list:" Frame(15).Caption = "Auto dial:" Frame2.Caption = "Scheduler:" Frame1.FontSize = Frame1.FontSize End Sub ? I tried that but it does not help. "Nobody" <nobody(a)nobody.com> wrote in message news:OPgoju3dKHA.2596(a)TK2MSFTNGP04.phx.gbl... > "Fred" <fred(a)nospamhotmail.com> wrote in message > news:upTKHB3dKHA.1648(a)TK2MSFTNGP05.phx.gbl... >>I have just created simple project with one form and copied one of the >>frames to it. >> The problem is still there. >> You can see it for yourself: >> http://www.phonedialerpro.com/test.zip > > Try: > > Frame1.Caption = Frame1.Caption > > Or change or set the font size > > Frame1.FontSize = Frame1.FontSize > > |