25 years ago, I started with Logo and then moved to Basic. I loved Logo, watching the turtle move was inspiring and fun. The later move to basic was a leap ahead. I still believe this is the right way today too. MS Small Basic seems like a great start, basic programming principals, graphics, eventing, they have also includes Logo implementation which is awesome. IMHO definitely worth a try. Web: http://msdn.microsoft.com/en-us/devlabs/cc950524.aspx[^] User guide: http://download.microsoft.com/download/9/0/6/90616372-C4BF-4628-BC82-BD709635220D/Introducing%20Small%20Basic.pdf[^] Boulderdash
rockford boulderdash
Posts
-
Programming for my kids -
plzz write a simple function on..........He can learn a lot from the code snippest... (At least I hope :doh: )
-
plzz write a simple function on..........There you go, enjoy :) ============================================= using System.Net.Mail; public static void SendMailMessage(string sMailBody, string sFromAddress, string sFromName, string[] sToAddress, string[] sCC, string[] sBCC, string sSubject, bool IsHTML) { SmtpClient objSMTPClient = new SmtpClient("localhost"); MailMessage objMessage = new MailMessage(); try { MailAddress objFromAddress = new MailAddress(sFromAddress, sFromName); // From address will be given as a MailAddress Object objMessage.From = objFromAddress; // To address collection of MailAddress for (int i = 1; i <= sToAddress.Length; i++) { objMessage.To.Add(sToAddress[i - 1]); } // CC and BCC optional // MailAddressCollection class is used to send the email to various users // You can specify Address as new MailAddress("user@host.com") if (sCC != null) { if (sCC.Length > 0) { for (int i = 1; i <= sCC.Length; i++) { objMessage.CC.Add(sCC[i - 1]); } } } if (sBCC != null) { if (sBCC.Length > 0) { for (int i = 1; i <= sBCC.Length; i++) { objMessage.Bcc.Add(sBCC[i - 1]); } } } // Body can be html or text format if (IsHTML) objMessage.IsBodyHtml = true; objMessage.Subject = sSubject; objMessage.Body = sMailBody; // Send SMTP mail objSMTPClient.Send(objMessage); } catch { } } My blog: http://www.asaf.co.il