1
vote
String to time format but how?
In SQL you could use something like
convert(varchar(8),dateadd(second,45,nextrundate),114)
convert(varchar(8),dateadd(minute,45,nextrundate),114)
convert(varchar(8),dateadd(hour,4,nextrunda …
2
votes
conversion from string yyyyMMdd to type integer is not valid
Try
For Each dr As DataRow In ds.Tables("records").Rows
file = CDate(dr("timestamp")).ToString("yyyyMMdd") & "~.wav"
Next
…
