No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
3 Posted Topics
mailClient.Port = 587; mailClient.EnableSsl = true; mailsmtpClient.UseDefaultCredentials = false; mailClient.DeliveryMethod = SmtpDeliveryMethod.Network; I was facing same issue and fixed by adding above lines.
[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]
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.
The End.
Yaseen Hejazi