if u please can u tell how can i display sysdate in my project
Professional Software Development Tools
if u please can u tell how can i display sysdate in my project
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