I am using sql server and I am trying to have a timestamp of when a workorder was issued. When the form is complete I want to hit submit and the time be saved in the database. So far I have a textbox linked to my database called "issuedtextbox". Here is the code I have
IssuedTextBox.Text = TimeString
What this does is just constantly run the time and when I click save the form saves. When I re-open the dataform the time shows the current time again.
Also, I am going to be using a label so the code will actually be
issuedlbl2.text = timestring
In conclusion my problem is that I cannot get a saved timestamp upon completion of a workorder inside sql server database. Thanks.
IssuedTextBox.Text = TimeString
What this does is just constantly run the time and when I click save the form saves. When I re-open the dataform the time shows the current time again.
Also, I am going to be using a label so the code will actually be
issuedlbl2.text = timestring
In conclusion my problem is that I cannot get a saved timestamp upon completion of a workorder inside sql server database. Thanks.