<div dir="ltr"><br><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div><blockquote type="cite"><p>I don't get how this is a bugfix. The documentation states:<br>
        Date    Returns a date without its time component<br>
        Yet I get some random time with a date when I print a date. <br>
      </p>
    </blockquote>
    <p><br>
    </p>
    <p>I mean, ok, time is not random, it's just a UTC conversion of a
      date selected on a DateChooser, assuming it's midnight localtime.</p>
    <p>But I dont expect to see the time at all, why it is printed at
      all? How do I print only a date value of a DateChooser now?<br>
    </p>
    </div></blockquote><div><br></div><div>With this code:<br><br>Public Sub DateChooser1_Click()<br><br>  Print DateChooser1.Value<br>  TextBox1.Text = Str(DateChooser1.Value)<br>  TextBox2.Text = Format(DateChooser1.Value, gb.MediumDate)<br>  TextBox3.Text = Format(DateChooser1.Value, "yyyy/mm/dd")<br><br>End<br><br><br>here in Italy and datechooser on DateOnly I get this:<br><br>TextBox1.Text = 17/08/2020 00:00:00 as on console<br>TextBox2.Text = 17 ago 2020<br>TextBox3.Text = 2020/08/17<br><br>Regards<br>Gianluigi <br></div></div></div>