I have created a dialog form in a libre office calc spreadsheet. I have a DateField for a date input which, along with other data which I can retrieve, I want to write to several different cells.
I have been able to retrieve the other data from textboxes, listboxes etc to variables ready for writing to appropriate cells. eg.
Dim sVeh As String
oCtl = oDlg.getControl(“ListBox4”)
sVeh = oCtl.getSelectedItem()
How do I retrieve an inputed date from a DateField?