Time Conversion

Introduction

Create an application that asks the user for a time in minutes and then
displays the time in seconds or hour:minute format depending on
which option button is clicked. Be sure to consider times where the
number of minutes left over is less than 10. For example, 184
minutes in hour:minute format is 3:04. Hint: use the Format()
function with “00” as the format.

Important features

  • Use integer and modulus division
  • Result displayed using Format() function
  • Change event clears previous result
  • Option buttons
  • Done button
  • Proper indents, spacing, comments

Example