error is in this part of code
Const DATE_RANGE As String = "g10:g10"
Const TITLE_RANGE As String = "h10:h100"
Const TIME_RANGE As String = "i10:i100"
in the first line you have defined a range G10:G100... which will have 90 different values..
And in the below code u are calling that 90 values in one text box .. which is not possible...
try modifying the above code to
"G10:G10" " , "h10:h10" and "i10:i10"
lbldate.Caption = Range(DATE_RANGE).Text
lbltitle.Caption = Range(TITLE_RANGE).Text
lbltime.Caption = Range(TIME_RANGE).Text
Bookmarks