Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~293 People Reached

3 Posted Topics

Member Avatar for mania_comp

mailClient.Port = 587; mailClient.EnableSsl = true; mailsmtpClient.UseDefaultCredentials = false; mailClient.DeliveryMethod = SmtpDeliveryMethod.Network; I was facing same issue and fixed by adding above lines.

Member Avatar for Yaseen Hejazi
-1
135
Member Avatar for k8lj

[quote=sneekula;277114]Nice program! I ran it and for factorial 13 I got 1932053504 when it should be 6227020800.[/quote] That because he used int type to total variable which can hold 2,147,483,647 as maximum positeve value. You can change this line: [CODE][COLOR=#0000ff]int[/COLOR][COLOR=#000000] total = 1;[/COLOR][/CODE] to: [CODE][COLOR=#0000ff]double[/COLOR][COLOR=#000000] total = 1;[/COLOR][/CODE]

Member Avatar for Member #46692
0
119
Member Avatar for Yaseen Hejazi

Hi all, I am looking for a sample code that show how to change Microsoft Windows console font. I found a way to add more fonts to console but I could not find how to select this font from the code.

Member Avatar for Member #46692
0
39

The End.