Click here to Skip to main content
15,867,704 members
Home / Discussions / C#
   

C#

 
GeneralRe: how to release the COM server? Pin
CherezZaboro19-Oct-02 10:45
CherezZaboro19-Oct-02 10:45 
GeneralRe: how to release the COM server? Pin
Stephane Rodriguez.19-Oct-02 21:01
Stephane Rodriguez.19-Oct-02 21:01 
Generalcall a .Net exe from COM client Pin
Anonymous19-Oct-02 4:30
Anonymous19-Oct-02 4:30 
GeneralRe: call a .Net exe from COM client Pin
Stephane Rodriguez.19-Oct-02 5:23
Stephane Rodriguez.19-Oct-02 5:23 
GeneralRe: call a .Net exe from COM client Pin
Anonymous19-Oct-02 7:28
Anonymous19-Oct-02 7:28 
GeneralRe: call a .Net exe from COM client Pin
Stephane Rodriguez.19-Oct-02 7:34
Stephane Rodriguez.19-Oct-02 7:34 
GeneralFonts Pin
Substitute19-Oct-02 0:45
Substitute19-Oct-02 0:45 
GeneralRe: Fonts Pin
Nick Parker19-Oct-02 1:40
protectorNick Parker19-Oct-02 1:40 
Essentially iterating through your array, make sure you have a graphics object when doing this (e.g. - grfx):
<code>
Color c = Color.Black;
Brush brush = new SolidBrush(c);
float y = 0;
FontFamily[] aff = FontFamily.Families;


foreach (FontFamily ff in aff)
{
      Font font = new Font(ff, 12);
      grfx.DrawString(ff.Name, font, brush, 0, y);
      y += font.GetHeight(grfx);

}
</code>


HTH Smile | :)



Nick Parker

The greatest lesson in life is to know that even fools are right sometimes. - Winston Churchill



GeneralRe: Fonts Pin
Substitute19-Oct-02 3:25
Substitute19-Oct-02 3:25 
GeneralManipulate Access DB Pin
Venet18-Oct-02 23:27
Venet18-Oct-02 23:27 
GeneralRe: Manipulate Access DB Pin
Stephane Rodriguez.19-Oct-02 0:44
Stephane Rodriguez.19-Oct-02 0:44 
GeneralRe: Manipulate Access DB Pin
David Stone19-Oct-02 6:44
sitebuilderDavid Stone19-Oct-02 6:44 
GeneralRe: Manipulate Access DB Pin
Stephane Rodriguez.19-Oct-02 7:25
Stephane Rodriguez.19-Oct-02 7:25 
GeneralRe: Manipulate Access DB Pin
Stephane Rodriguez.19-Oct-02 7:31
Stephane Rodriguez.19-Oct-02 7:31 
GeneralExport C# appz Pin
Anonymous18-Oct-02 8:53
Anonymous18-Oct-02 8:53 
GeneralRe: Export C# appz Pin
Paul Riley18-Oct-02 8:59
Paul Riley18-Oct-02 8:59 
GeneralRe: Export C# appz Pin
Stephane Rodriguez.18-Oct-02 9:58
Stephane Rodriguez.18-Oct-02 9:58 
GeneralRe: Export C# appz Pin
Anonymous18-Oct-02 23:16
Anonymous18-Oct-02 23:16 
Questiongrabbing focus with a Pop-up? Pin
Dave Gustafson18-Oct-02 3:05
Dave Gustafson18-Oct-02 3:05 
AnswerRe: grabbing focus with a Pop-up? Pin
Paul Riley18-Oct-02 3:46
Paul Riley18-Oct-02 3:46 
GeneralRe: grabbing focus with a Pop-up? Pin
Dave Gustafson18-Oct-02 4:36
Dave Gustafson18-Oct-02 4:36 
GeneralRe: grabbing focus with a Pop-up? Pin
Paul Riley18-Oct-02 4:46
Paul Riley18-Oct-02 4:46 
GeneralRe: grabbing focus with a Pop-up? Pin
Dave Gustafson18-Oct-02 12:33
Dave Gustafson18-Oct-02 12:33 
GeneralRe: grabbing focus with a Pop-up? Pin
Paul Riley18-Oct-02 13:20
Paul Riley18-Oct-02 13:20 
GeneralRe: grabbing focus with a Pop-up? Pin
Dave Gustafson18-Oct-02 16:53
Dave Gustafson18-Oct-02 16:53 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.