Click here to Skip to main content
15,896,453 members
Home / Discussions / C#
   

C#

 
GeneralRe: Trace and Config file problem Pin
James T. Johnson3-Jun-03 10:52
James T. Johnson3-Jun-03 10:52 
GeneralRe: Trace and Config file problem Pin
Le centriste4-Jun-03 3:30
Le centriste4-Jun-03 3:30 
Generalproblem with combo box !!! Pin
kokain3-Jun-03 3:09
kokain3-Jun-03 3:09 
GeneralRe: problem with combo box !!! Pin
apferreira3-Jun-03 3:21
apferreira3-Jun-03 3:21 
GeneralRe: problem with combo box !!! Pin
kokain3-Jun-03 6:27
kokain3-Jun-03 6:27 
GeneralRe: problem with combo box !!! Pin
James T. Johnson3-Jun-03 10:55
James T. Johnson3-Jun-03 10:55 
GeneralRe: problem with combo box !!! Pin
Anonymous6-Jun-03 4:25
Anonymous6-Jun-03 4:25 
GeneralApplyFont in Cristal Report Pin
Givi78394763543-Jun-03 2:56
sussGivi78394763543-Jun-03 2:56 
Can anybody help me. I really do not understand one thing!
This is an example from MSDN:
//***********************
private void SetFont(string reportObjectName)
{
TextObject text;
FontDialog fieldFont = new FontDialog();

// Get the ReportObject by name and cast it as a TextObject.
text = Report.ReportDefinition.ReportObjects[reportObjectName]
as TextObject;
if (text!= null)
{
// Show the Font dialog.
if (fieldFont.ShowDialog ()==DialogResult.OK)
{
// Apply the settings from the Font dialog.
text.ApplyFont(fieldFont.Font);
// Set the text object's color to blue.
text.Color = Color.Blue;
}
}
}
//***********************
but in reality the function ApplyFont works not properly, it can change anythign but Font.Size.
The main thing of font is its Size and I cannot change it in my reports. What's going on? Is it an error or it works as designed?

Thank you!!!
GeneralALT Key Pin
Valeria Bogdevich3-Jun-03 2:22
Valeria Bogdevich3-Jun-03 2:22 
GeneralRe: ALT Key Pin
Vasudevan Deepak Kumar3-Jun-03 5:00
Vasudevan Deepak Kumar3-Jun-03 5:00 
GeneralRe: ALT Key Pin
Vasudevan Deepak Kumar3-Jun-03 18:40
Vasudevan Deepak Kumar3-Jun-03 18:40 
GeneralRe: ALT Key Pin
3-Jun-03 22:16
suss3-Jun-03 22:16 
GeneralWindows to *nix with Mono Pin
Kannan Kalyanaraman3-Jun-03 0:31
Kannan Kalyanaraman3-Jun-03 0:31 
GeneralRe: Windows to *nix with Mono Pin
Daniel Turini3-Jun-03 0:41
Daniel Turini3-Jun-03 0:41 
GeneralRe: Windows to *nix with Mono Pin
Giles3-Jun-03 2:12
Giles3-Jun-03 2:12 
GeneralRe: Windows to *nix with Mono Pin
Philip Fitzsimons3-Jun-03 2:46
Philip Fitzsimons3-Jun-03 2:46 
GeneralRe: Windows to *nix with Mono Pin
James T. Johnson3-Jun-03 23:13
James T. Johnson3-Jun-03 23:13 
GeneralRe: Windows to *nix with Mono Pin
apferreira3-Jun-03 3:03
apferreira3-Jun-03 3:03 
GeneralRe: Windows to *nix with Mono Pin
Kannan Kalyanaraman3-Jun-03 4:59
Kannan Kalyanaraman3-Jun-03 4:59 
GeneralRe: Windows to *nix with Mono Pin
apferreira4-Jun-03 2:11
apferreira4-Jun-03 2:11 
GeneralManaged DirectX on the Desktop Pin
Jacques Buitendag3-Jun-03 0:25
Jacques Buitendag3-Jun-03 0:25 
GeneralRe: Managed DirectX on the Desktop Pin
Philip Fitzsimons3-Jun-03 2:49
Philip Fitzsimons3-Jun-03 2:49 
GeneralRe: Managed DirectX on the Desktop Pin
Jacques Buitendag3-Jun-03 3:38
Jacques Buitendag3-Jun-03 3:38 
GeneralMultilanguage application Pin
aeros2-Jun-03 21:53
aeros2-Jun-03 21:53 
GeneralRe: Multilanguage application Pin
apferreira3-Jun-03 1:36
apferreira3-Jun-03 1:36 

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.