I have a table with a structure like this : {id, url, content}. This content is all the text from a web page(memo). The problem is that I need to look in this content and to find some words and extract them. the table is called Link. I have this code , but it doesnt work. Do you have any suggestions?!
Dim Inhalt As String, rec As Recordset
sqlstr = "SELECT link.content FROM Link WHERE Link.ID = " & Me!cboCombo1.Column(0) & ""
Set rec = db.OpenRecordset(sqlstr)
Inhalt = rec!content
I want to do this for every url that I choose from a combo box.
Dim Inhalt As String, rec As Recordset
sqlstr = "SELECT link.content FROM Link WHERE Link.ID = " & Me!cboCombo1.Column(0) & ""
Set rec = db.OpenRecordset(sqlstr)
Inhalt = rec!content
I want to do this for every url that I choose from a combo box.