I have the following function:
<script language="JavaScript" type = "text/javascript">
function returnObjById( id )
{
var returnVar = document.getElementById(id);
return returnVar.value;
}
</script>
How can I transmit the value of the function to the value...
Well thank you,it works both ways.
bluetongol: It was a tsr program because I'm now learning assembly and I had to write a program that shows smth on screen for a couple of seconds and than give the control to the operating system.
for example if i have the following lines:
mov ah,09h
mov al,':'
mov bh,0
mov bl,7
mov cx,1
int 10h
mov ah,0
int 16h
in a tsr program. My program displays the character -- : -- until i press a key and then it comes back to the initial screen. That's what I did:D...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.