Hey guys. quick question here. How do I get the "Connected" to come up in Green, and the "Not Connected" in RED ?
Case IP_SUCCESS: msg = "Connected"
Case IP_REQ_TIMED_OUT: msg = "Not Connected"
Thanks
ScarEye
Printable View
Hey guys. quick question here. How do I get the "Connected" to come up in Green, and the "Not Connected" in RED ?
Case IP_SUCCESS: msg = "Connected"
Case IP_REQ_TIMED_OUT: msg = "Not Connected"
Thanks
ScarEye
Maybe someone can help you if you tell a little more. MAybe where it is displayed....
Well if you are using HTML, then this is how:Quote:
Originally posted by ScarEye
Hey guys. quick question here. How do I get the "Connected" to come up in Green, and the "Not Connected" in RED ?
Case IP_SUCCESS: msg = "Connected"
Case IP_REQ_TIMED_OUT: msg = "Not Connected"
Thanks
ScarEye
Case IP_SUCCESS: msg = "<font color='green'>Connected</font>"
Case IP_REQ_TIMED_OUT: msg = "<font color='red'>Not Connected</font>"
Enjoy