How can I open two tables at once,
I tried this code but it didn't worked for me:
vb Code:
Dim rs As ADODB.Recordset Set rs = New ADODB.Recordset rs.CursorLocation = adUseClient rs.CursorType = adOpenStatic rs.LockType = adLockReadOnly rs.Open "SELECT * FROM avatar,singleplayername", conn, adOpenStatic, adLockOptimistic swfUserProfile.SetVariable "txtPlayerName", rs!playerName swfPictureAvatar.LoadMovie 1, rs!avatarFile swfPictureAvatar.Movie = rs!avatarFile rs.Close Set rs = Nothing
Need Help




Reply With Quote