I have downloaded the dialog box ad on which has the date and time. I was just wondering why isn't this (and others) not included in the main program?
I mean, the B in BASIC stands for beginner so why not just include them. I spend several hours trying to figure out why this library dialog thing was. Then round out I had to download it, unzip it, move parts to a folder, then rerun the program and then could look at it. Why not just include these libraries in the main program?
================================
question 2: using this code from the library, how fo I figure out the day of the week (like saturday)? I have seen other programs that give the day where 'set the required date" is show. it'll just say 'saturday"
Dim Dd As DateDialog
Dd.Year = DateTime.GetYear(DateTime.Now)
Dd.Month = DateTime.GetMonth(DateTime.Now)
Dd.DayOfMonth = DateTime.GetDayOfMonth(DateTime.Now)
ret = Dd.Show("Set the required date", "B4A Date Dialog", "Yes", "No", "Maybe", Bmp)
ToastMessageShow(ret & " : " & Dd.DayOfMonth & "/" & Dd.Month & "/" & Dd.Year , False)
I mean, the B in BASIC stands for beginner so why not just include them. I spend several hours trying to figure out why this library dialog thing was. Then round out I had to download it, unzip it, move parts to a folder, then rerun the program and then could look at it. Why not just include these libraries in the main program?
================================
question 2: using this code from the library, how fo I figure out the day of the week (like saturday)? I have seen other programs that give the day where 'set the required date" is show. it'll just say 'saturday"
Dim Dd As DateDialog
Dd.Year = DateTime.GetYear(DateTime.Now)
Dd.Month = DateTime.GetMonth(DateTime.Now)
Dd.DayOfMonth = DateTime.GetDayOfMonth(DateTime.Now)
ret = Dd.Show("Set the required date", "B4A Date Dialog", "Yes", "No", "Maybe", Bmp)
ToastMessageShow(ret & " : " & Dd.DayOfMonth & "/" & Dd.Month & "/" & Dd.Year , False)
Last edited: