Click here to Skip to main content
15,920,217 members
Home / Discussions / C#
   

C#

 
GeneralRe: exit after if statement Pin
Vasudevan Deepak Kumar17-Jul-05 23:11
Vasudevan Deepak Kumar17-Jul-05 23:11 
GeneralRe: exit after if statement Pin
J4amieC17-Jul-05 23:20
J4amieC17-Jul-05 23:20 
QuestionWhat kind of Control is that? Pin
Fitud17-Jul-05 22:03
Fitud17-Jul-05 22:03 
AnswerRe: What kind of Control is that? Pin
Carsten Zeumer18-Jul-05 0:19
Carsten Zeumer18-Jul-05 0:19 
AnswerRe: What kind of Control is that? Pin
dwatkins@dirq.net18-Jul-05 3:40
dwatkins@dirq.net18-Jul-05 3:40 
GeneralRe: What kind of Control is that? Pin
dwatkins@dirq.net18-Jul-05 3:50
dwatkins@dirq.net18-Jul-05 3:50 
Generalrichtextbox appendtext bold Pin
xrado17-Jul-05 22:01
xrado17-Jul-05 22:01 
GeneralRe: richtextbox appendtext bold Pin
maheswara18-Jul-05 1:48
maheswara18-Jul-05 1:48 
Use the Font dialog box to change the fonts, the font size, and/or the font style for text and data fields on your reports.

Access the Font dialog box through the Fonts tab of the Default Settings dialog box.

Font
Lists all the available fonts. Click a font name to select a different font.
Font style
Lists the available styles for the specified font. Click a font style to select a different style.
Size
Lists the available point sizes for the specified font. Click a size to change the size of the font.
Strikeout
Specifies whether the font should appear with strikeout marks.
Underline
Specifies whether the font should appear with underlines.



private void Fontmenu_Click(object sender, System.EventArgs e)
{
fontDialog1.ShowColor = true;
fontDialog1.Font = richTextBox1.Font;
fontDialog1.Color = richTextBox1.ForeColor;
if(fontDialog1.ShowDialog() != DialogResult.Cancel )
{
richTextBox1.Font = fontDialog1.Font ;
richTextBox1.ForeColor = fontDialog1.Color;
}
}

mahes
GeneralMultilingual Pin
alok_2k317-Jul-05 20:45
alok_2k317-Jul-05 20:45 
GeneralRe: Multilingual Pin
Vasudevan Deepak Kumar17-Jul-05 23:13
Vasudevan Deepak Kumar17-Jul-05 23:13 
GeneralRe: Multilingual Pin
mhmoud rawas18-Jul-05 2:11
mhmoud rawas18-Jul-05 2:11 
GeneralCancel Events Pin
Beringer17-Jul-05 20:38
Beringer17-Jul-05 20:38 
GeneralRe: Cancel Events Pin
leppie17-Jul-05 20:47
leppie17-Jul-05 20:47 
GeneralRe: Cancel Events Pin
J4amieC17-Jul-05 23:27
J4amieC17-Jul-05 23:27 
GeneralRe: Cancel Events Pin
Beringer18-Jul-05 10:22
Beringer18-Jul-05 10:22 
GeneralRe: Cancel Events Pin
maheswara18-Jul-05 2:17
maheswara18-Jul-05 2:17 
GeneralRe: Cancel Events Pin
Beringer18-Jul-05 10:22
Beringer18-Jul-05 10:22 
QuestionConnecting ORACLE to C# ? Pin
Member 198359717-Jul-05 20:14
Member 198359717-Jul-05 20:14 
AnswerRe: Connecting ORACLE to C# ? Pin
V.17-Jul-05 22:57
professionalV.17-Jul-05 22:57 
AnswerRe: Connecting ORACLE to C# ? Pin
Vasudevan Deepak Kumar17-Jul-05 23:17
Vasudevan Deepak Kumar17-Jul-05 23:17 
QuestionImporting in Access pogrammatically? Pin
kbalias17-Jul-05 18:38
kbalias17-Jul-05 18:38 
AnswerRe: Importing in Access pogrammatically? Pin
Kodanda Pani17-Jul-05 19:55
Kodanda Pani17-Jul-05 19:55 
GeneralQuestions about objects and class Pin
tttyip17-Jul-05 18:27
tttyip17-Jul-05 18:27 
GeneralRe: Questions about objects and class Pin
Christian Graus17-Jul-05 19:06
protectorChristian Graus17-Jul-05 19:06 
Generalquestion ==> planing phase Pin
daat9917-Jul-05 17:49
daat9917-Jul-05 17:49 

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.