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.

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:

private void frmAboutUs_Load(object sender, EventArgs e)
    {
      label1.Text = string.Format("Version compiled on {0:d}", DateTime.Today);
    }
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.