View Single Post
  #2 (permalink)  
Old 02-10-2009, 08:07 PM
SWFKit SWFKit is offline
Senior Member
 
Join Date: Dec 2002
Posts: 2,015
Default

The "Fields" property of the rs object is another activex object, so you cannot use the syntax rs.fields(0) as in ffishscript. Please try the following code
Code:
playerIDtext.text = rs.Fields.item(0).Value;
ADO is the best method to access databases in swfkit. If you still have problem, please feel free to let us know.
Reply With Quote