I have a problem in the combination of two values

karmba_a

Member
Licensed User
Longtime User
There is a problem in this project please clarify where the problem and solved :sign0085:

Thank you for your support
 

klaus

Expert
Licensed User
Longtime User
I suppose you want to add a day to the current date.

What do you want to do in this line ?
B4X:
EditText1.Text = d + m + y + jd
Add values or concacatenate strings.
To concacatenate strings you should use:
B4X:
EditText1.Text = d & m & y & jd
To add a day you can do it that way:
B4X:
EditText1.Text = DateTime.Date(DateTime.Add(DateTime.Now, 0, 0, 1))
What is jd supposed to be ?

Best regards.
 
Upvote 0
Top