Guest_imported
New member
- Jan 1, 1970
- 0
I can't pass an array through using a write command to another sub.Probily because of the syntax such a method requires. Heres my prob
array(4) = 1000
document.write("<td onclick=Show(array(4))>Test</td>"
Sub Show(msg)
msgbox(msg)
End Sub
A TYPE MISMATCH ERROR OCCURS.
WHATS THE CORRECT SYNTAX
array(4) = 1000
document.write("<td onclick=Show(array(4))>Test</td>"
Sub Show(msg)
msgbox(msg)
End Sub
A TYPE MISMATCH ERROR OCCURS.
WHATS THE CORRECT SYNTAX