VB.NET input academic year using ComboBox or DateTimePicker

  • Thread starter Thread starter carlOQMN
  • Start date Start date
C

carlOQMN

Guest
Hello! So i need to have an option to select academic year. Either will do: ComboBox or DateTimePicker



What I have tried so far: I have read from other threads they used this in combobox to select year only.

ComboBox1.DataSource = Enumerable.Range(2018, 20).ToList
ComboBox1.SelectedIndex = -1

But the output of this is -> 2018

This is the output i needed->2018-2019

i cant seem to concatenate the strings together :( help please

Continue reading...
 
Back
Top