Hi
Giving a try to the latest release, still no way to run any of my VB6 project there.
I've tried a very simple app that works perfectly in VB6, fails in TB:
Code:
dim b() as byte
dim db as new ADODB.Connection
Dim rs As New ADODB.Recordset
db.Open "DRIVER={sql server};SERVER=10.158.100.2,1433;DATABASE=MyDB;UID=MyUID;PWD=MyPWD;"
rs.Open "Select t0.id, t1.cert From certs t0 inner join certs_repo t1 on t1.id_cert=t0.id where t0.CN = 'TEST'", db, adOpenForwardOnly
b = rs("cert")
...
Error TB5001 unable to assign this value to an array (last line)
May be it needs any different syntax?