User-1797368610 posted
hi
i was able to retrieve the first value with the help from this forum. Now i would like to retrieve middle position characters only, in below string how can i retrieve Date Only (11-DEC-2017)?
002071:11-DEC-2017:1068 Gerard Avenue
To retrieve the first values i was using below code:
txtInsp_dt.Text = Mid(Ddl_newproj.SelectedItem.Text, 1, InStr(1, Ddl_newproj.SelectedItem.Text, searchchar, 1) - 1)
Appreciated for your help!