Hello masters, i am working on my database and i want to select only my data(s) by simply chosing the start date and the end date. Is there any date dialogs that i can use to select the date from and the date to? Iknow there is already a date dialog but i can only select 1 date. Also is there any way to modify that? Sorry for my english hope you understand. Tnx!
Welcolm to b4A ...One approach would be 2 labels with text 'From .. ' & 'To ...' with a click event to display AnotherDatePicker .. (see above Similar threads).
This might also work with Date Dialogue ,but having never used it I cant comment.
A Flag variable would determine which label is updated.
you would have to do some date checks to validate correct date choices / spread.
Welcolm to b4A ...One approach would be 2 labels with text 'From .. ' & 'To ...' with a click event to display AnotherDatePicker .. (see above Similar threads).
This might also work with Date Dialogue ,but having never used it I cant comment.
A Flag variable would determine which label is updated.
you would have to do some date checks to validate correct date choices / spread.
Barry ... was doing nothing and wanted to learn a bit about AnotherDatePicker.
this is a basic display that allows user to choose 2 dates .. which can then be used for your SQL select statements.
at present the only check that is done is that the second date is Not older than the first date.
obviously other checks would have to be performed.
You might find it useful.
p.s. the selected dates are stored as Long so you would have to format to suite your SQL date data.