Sunday, July 14, 2013

Java Applets Notes

Java Applets Notes

















0 comments :

Java Exception Handling Complete Note

Java Exception Handling Complete Note








0 comments :

Friday, July 12, 2013

Java Script Alert Box Example

Java Script Alert Box Example


<html>
<head>
</head>
<script language="JavaScript">
function show_alert()
{
alert("Hello! I am an alert box!")
var i=1,j
while(i<=5)
{ j=1 
while(j<=i)
{
document.write(i)
j++
}
i++
document.write("<br>")
}
}
</script>
<body>

<input type=button onclick="show_alert()"  value="Show alert box">
</body>
</html>

Out Put


0 comments :

Java Script Check Box Example

Java Script Check Box Example

<html>
<head>
<title>
using check box.
</title>
<script language=JavaScript>
function check1clicked()
{
var str=""
if(document.form1.check1.checked==true)
{
str+="Learn With Fun"
}
if(document.form1.check2.checked==true)
str+="http://satyarahulraj.blogspot.in"
document.form1.textfield.value=str
}
</script>
</head>
<body>
<center>
<h1>using check boxes</h1>
<form Name=form1>
 <input type = checkbox name=check1 onclick="check1clicked()">please click
<input type = checkbox name=check2 onclick="check1clicked()">please click on me
 <br><input type=textarea name="textfield" size=30>
</form>
</center>
</body>
</html>

Out Put


0 comments :

Hello World Java Script Example

Hello World Java Script Example

<html>
<head>
<title>
      JavaScript Example 
</title>
</head>
<script language="javascript">
        document.write("Hello World!")
document.write("<marquee/><h6/>Hello World!");
     <!--This is comment -->
 </script>

<body>
  </body>
</html>

Out Put


0 comments :

Thursday, July 11, 2013

Make Your Laptop Connectify Wi Fi Network without using Wi Fi Router and Third party Software







How to Make Your Windows 8 Laptop Connectify Wi-Fi Network without using Any Wi--Fi Router And Also any third party Software, Through the simple two line code write in your command prompt, or make and share your own wi-fi network in Dos Mode.
If have you any doubt then post your doubt through comment. I'll resolve it. Or visit http://www.satyarahulraj.blogspot.com

0 comments :