Monday, June 25, 2007

ANSI C for Programmers

This link provides a good introduction into programming with ANSI C. It covers all of C including its data-types, variables, functions, operators that will get you started with C Programming.

Saturday, May 12, 2007

Sending mail in VB.NET 2.0

clipped from aspalliance.com
'Create a new MailMessage object and specify the"From" and "To" addresses
Dim Email As New System.Net.Mail.MailMessage( _
"Brad.Kingsley@orcsweb.com", "Brad@KingsleyTeam.com")
Email.Subject = "test subject"
Email.Body = "this is a test"
Dim mailClient As New System.Net.Mail.SmtpClient()
'This object stores the authentication values
Dim basicAuthenticationInfo As _
New System.Net.NetworkCredential("username", "password")
'Put your own, or your ISPs, mail server name onthis next line
mailClient.Host = "Mail.RemoteMailServer.com"
mailClient.UseDefaultCredentials = False
mailClient.Credentials = basicAuthenticationInfo
mailClient.Send(Email)
 blog it

Wednesday, April 4, 2007

A great way to bookmark

Using clipmarks.com is worth it. I am able to bookmark just any portion of a site and even post it in my blog.
clipped from clipmarks.com
Clipmarks


Use the clip button to clip the web

Want to clip the web but haven't installed yet? Install now
Already installed but don't see the button in your browser? Click here



Watch the clipping demo


Read more about clipping on the How to Clip page

To see examples of other people's clips, choose a topic...


ScienceTechnologyPolitics
HealthEntertainmentReligion
 powered by clipmarksblog it