Re: Playing audio from within VB



Also-- I'm having trouble putting data into the OLE Object.. Apparently
this method doesn't work:


With frmFiles.rsRecordSet
.Source = "Select * From songs"
.Open
.AddNew
.Fields("songArtist") = txtArtist.Text
.Fields("songName") = txtTitle.Text
.Fields("songArtistId") = 0
.Fields("songIsAd") = 1
'''''' this following line returns the error "Multiple-step operation
generated errors. Check each status value."
.Fields("songData") = m_strHttpResponse
.Update
End With


m_strHttpResponse holds data pulled from a server (ie, a song). When
you write that data to a file on the HDD, the file plays fine and
whatnot; the problem occurs when inserting it into that field.

Any ideas?

Thanks again,
Burak

.