Back once again...
Code:
<TR><INPUT TYPE="button" NAME="About"   VALUE="ABOUT ME" _
STYLE="HEIGHT:35px; WIDTH:120px; BORDER:0; _
BACKGROUND=Transparent" TR<>
is one of my tabel columns (I know this bit is correct). I then have a VBScript code using the About_OnMouseMove property to make a change to this. If I use the :
Code:
Private Sub About_OnMouseMove
	Document.Frm_MenusLeft.About.Value = "I've Been Changed!"
End Sub
this works! However, if I call some of the other properties, which were recognised as working when the page loads, there is an error - the end part is not recognised :

Code:
Private Sub About_OnMouseMove
    Document.Frm_MenusLeft.About.STYLE="HEIGHT:50px; _
    WIDTH:150px; BORDER:1; BACKGROUND=LightYellow"
End Sub
Can someone please tell me why this is playing up? :Confused:
Thank you in advance!

[Edited by alex_read on 10-05-2000 at 09:44 AM]