PDA

View Full Version : display sysdate


momo
10-08-2004, 08:29 PM
if u please can u tell how can i display sysdate in my project

sside
10-09-2004, 02:18 PM
If i understand you correctly you want to show date in your project. There are lot of ways. Here is one of them:

1-Place a label object in your page where you want the date to be displayed
2-Place this code in the page where the label is at, at On Show event.
----------------------------------------------------------------
Label.SetText("Label1", System.GetDate(DATE_FMT_EUROPE));
----------------------------------------------------------------

Sside