I am back to town
After a small pause due to issues in family, I am back to tech world.
Hi… whats up???
After a small pause due to issues in family, I am back to tech world.
Hi… whats up???
List as on 21 Aug 2009
Here goes the code:
folder = this.Application.Session .GetDefaultFolder(Outlook.OlDefaultFolders.olFolderContacts); Outlook.ContactItem ci = (ContactItem)folder .Items.Add(OlItemType.olContactItem); ci.FirstName = "xyz"; ci.LastName = "zyx"; ci.Save();
A traditional hobby script based on numerology
You can download the WinForms application from: http://kidoos.net/media/p/578.aspx
namespace WindowsFormsApplication1 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void btnClose_Click(object sender, EventArgs e) { Application.Exit(); } private void dtpicker_ValueChanged(object sender, EventArgs e) { lblLifePathNumber.Text = LifePathNumber(dtpicker.Value); } private int GetSumOfDigits(string num) { int sum = num.ToCharArray().Sum(n => n - '0'); if (sum.ToString().Length > 1) { sum = GetSumOfDigits(sum.ToString()); } return sum; } private string LifePathNumber(DateTime dt) { return GetSumOfDigits(dt.Month.ToString() + dt.Year.ToString()+ dt.Day.ToString()).ToString(); } private void Form1_Load(object sender, EventArgs e) { dtpicker.MaxDate = DateTime.Today; } private void button1_Click(object sender, EventArgs e) { MessageBox.Show("Thanks for testing. PraVeeN - ninethsense@hotmail.com", "Thank You", MessageBoxButtons.OK); } } }
Just found a good free eBook on Redgate website.
Found this useful link while surfing.
Check this: http://www.developerfusion.com/article/5385/highperformance-net-application-development-architecture/
Found this one interesting.
With the AJAX Language API, you can translate and detect the language of blocks of text within a webpage using only JavaScript. In addition, you can enable transliteration on any textfield or textarea in your web page. For example, if you were transliterating to Hindi, this API will allow users to phonetically spell out Hindi words using English and have them appear in the Hindi script.
Read more here
Use the System.Xml.Linq namespace for this.
Here is a sample program:
string str = @" <LanguageDetails> <UserNode> <Lang> <![CDATA[en]]> </Lang> </UserNode> </LanguageDetails>"; // XDocument xdoc = XDocument.Load(new StringReader(str)); // Update: more faster method XDocument xdoc = XDocument.Parse(str); var lang = from d in xdoc.Elements("LanguageDetails") .Elements("UserNode") select d; MessageBox.Show( lang.FirstOrDefault().Element("Lang").Value );
Recent Comments