|
|||
|
I don't know if it's a bug.
But I did have difficulties finding out what was wrong I tried to transfer the recordcount of a query to the Flashplayer like this. Code:
totaal = rs.RecordCount;
trace(totaal);
FlashPlayer.setVariable("totaal",totaal)
Seems like you can only transfer strings as a variable So the code should look like that Code:
totaal = new String(rs.RecordCount);
trace(totaal);
pla.setVariable("totaal",totaal)
|
![]() |
Was this information helpful? Yes No
| Thread Tools | |
| Display Modes | |
|
|