Ramkumar_k 0 Newbie Poster 15 Years Ago Hi all, I created one application for windows mobile. I want to display the version date dynamically in the aboutus form. Can any one help. Thanks in advance, Ram. display 0 0 Reply with Quote Share sknake 1,622 Senior Poster Featured Poster 15 Years Ago What is a "version date"? Is this a constant you have defined in the application? You can set a label's text to contain a date value like this: Copy to Clipboardprivate void frmAboutUs_Load(object sender, EventArgs e) { label1.Text = string.Format("Version compiled on {0:d}", DateTime.Today); } 0 0 Reply with Quote Share Share Facebook Twitter LinkedIn Reply to this topic Be a part of the DaniWeb community We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge. Sign Up — It's Free!
sknake 1,622 Senior Poster Featured Poster 15 Years Ago What is a "version date"? Is this a constant you have defined in the application? You can set a label's text to contain a date value like this: Copy to Clipboardprivate void frmAboutUs_Load(object sender, EventArgs e) { label1.Text = string.Format("Version compiled on {0:d}", DateTime.Today); } 0 0 Reply with Quote Share