FiNaLhEaVeN
Would you like to react to this message? Create an account in a few clicks or log in to continue.
Latest topics
» MapleStory Updates
OmNomNom!! EmptyWed May 18, 2011 11:09 pm by Admin

» WonderKing (nDoors game)
OmNomNom!! EmptyTue Jun 29, 2010 2:04 pm by Ashy

» Maple Talk
OmNomNom!! EmptySun Apr 18, 2010 2:00 am by alchemicfreak13

» Youtube vids
OmNomNom!! EmptyThu Apr 08, 2010 4:39 am by alchemicfreak13

» CF Rank
OmNomNom!! EmptyTue Mar 02, 2010 8:09 am by father-sama

» Atlantica Talk
OmNomNom!! EmptyTue Mar 02, 2010 8:09 am by father-sama

» All other topic
OmNomNom!! EmptyTue Feb 16, 2010 3:43 am by alchemicfreak13

» OmNomNom!!
OmNomNom!! EmptyMon Feb 15, 2010 10:09 pm by father-sama

» Idea's......
OmNomNom!! EmptyMon Feb 15, 2010 10:08 pm by father-sama

facebook
FiNaLhEaVeN

FiNaLhEaVeN

Navigation
 Portal
 Index
 Memberlist
 Profile
 FAQ
 Search
Poll

How do you like the forum thus far?

OmNomNom!! I_vote_lcap75%OmNomNom!! I_vote_rcap 75% [ 3 ]
OmNomNom!! I_vote_lcap0%OmNomNom!! I_vote_rcap 0% [ 0 ]
OmNomNom!! I_vote_lcap0%OmNomNom!! I_vote_rcap 0% [ 0 ]
OmNomNom!! I_vote_lcap0%OmNomNom!! I_vote_rcap 0% [ 0 ]
OmNomNom!! I_vote_lcap0%OmNomNom!! I_vote_rcap 0% [ 0 ]
OmNomNom!! I_vote_lcap25%OmNomNom!! I_vote_rcap 25% [ 1 ]

Total Votes : 4


OmNomNom!!

Go down

OmNomNom!! Empty OmNomNom!!

Post by father-sama Mon Feb 15, 2010 8:23 am

If you get some time, register on my forum as well. I spend more time there than I can here.

My forum is better. Why, you ask? Because you can use html code as well as that shitty bbcode... It has nothing to do with that fact that I am an admin on the forum... or the manga/anime/j-music/hentai sites either.

And you don't need to have a minimum of 10 characters for the subject.
father-sama
father-sama
Admin

Posts : 45
Join date : 2010-02-11

http://ani-haven.net

Back to top Go down

OmNomNom!! Empty Re: OmNomNom!!

Post by father-sama Mon Feb 15, 2010 9:28 am

guess its time for me to start spamming this forum...

Anywho. Thanks XP Pro SP3 and MS for eatting my audio driver. At least that's what it looks like, even though my sound still works just fine. To make matters worse, I am unable to BLARGH!!!!!!!!!!! .... I am unable to use windows updates, due to the questionable... well not really questionable since we all know it is an illegal copy of windows. Last fucking time I ever update to SP3...
father-sama
father-sama
Admin

Posts : 45
Join date : 2010-02-11

http://ani-haven.net

Back to top Go down

OmNomNom!! Empty Re: OmNomNom!!

Post by father-sama Mon Feb 15, 2010 9:29 am

import java.awt.*;
import java.applet.*;
import java.awt.event.*;

public class Freddie extends Applet implements ItemListener
{
//Create components for applet
Label sandwichpromptLabel = new Label ("I made you a sammich, but I eatted it!!!");
TextField sandwichInputField = new TextField(25);
Label sizePromptLabel = new Label ();

Checkbox catsupBox = new Checkbox("Catsup",false);
Checkbox mustardBox = new Checkbox("Mustard",false);
Checkbox picklesBox = new Checkbox("Pickles",false);

CheckboxGroup sizeGroup = new CheckboxGroup();
Checkbox smallBox = new Checkbox("Small Box",true,sizeGroup);
Checkbox mediumBox = new Checkbox("Medium Box",false,sizeGroup);
Checkbox largeBox = new Checkbox("Large Box",false,sizeGroup);

public void init()
{
setBackground(Color.red);
add(sandwichpromptLabel);
add(sandwichInputField);
add(sizePromptLabel);
add(catsupBox);
catsupBox.addItemListener(this);
add(mustardBox);
mustardBox.addItemListener(this);
add(picklesBox);
picklesBox.addItemListener(this);
add(smallBox);
smallBox.addItemListener(this);
add(mediumBox);
mediumBox.addItemListener(this);
add(largeBox);
largeBox.addItemListener(this);
}

public void itemStateChanged(ItemEvent choice)
{

}
}
import java.awt.*;
import java.applet.*;
import java.awt.event.*;

public class Freddie extends Applet implements ItemListener
{
//Create components for applet
Label sandwichpromptLabel = new Label ("I made you a sammich, but I eatted it!!!");
TextField sandwichInputField = new TextField(25);
Label sizePromptLabel = new Label ();

Checkbox catsupBox = new Checkbox("Catsup",false);
Checkbox mustardBox = new Checkbox("Mustard",false);
Checkbox picklesBox = new Checkbox("Pickles",false);

CheckboxGroup sizeGroup = new CheckboxGroup();
Checkbox smallBox = new Checkbox("Small Box",true,sizeGroup);
Checkbox mediumBox = new Checkbox("Medium Box",false,sizeGroup);
Checkbox largeBox = new Checkbox("Large Box",false,sizeGroup);

public void init()
{
setBackground(Color.red);
add(sandwichpromptLabel);
add(sandwichInputField);
add(sizePromptLabel);
add(catsupBox);
catsupBox.addItemListener(this);
add(mustardBox);
mustardBox.addItemListener(this);
add(picklesBox);
picklesBox.addItemListener(this);
add(smallBox);
smallBox.addItemListener(this);
add(mediumBox);
mediumBox.addItemListener(this);
add(largeBox);
largeBox.addItemListener(this);
}

public void itemStateChanged(ItemEvent choice)
{

}
}
import java.awt.*;
import java.applet.*;
import java.awt.event.*;

public class Freddie extends Applet implements ItemListener
{
//Create components for applet
Label sandwichpromptLabel = new Label ("I made you a sammich, but I eatted it!!!");
TextField sandwichInputField = new TextField(25);
Label sizePromptLabel = new Label ();

Checkbox catsupBox = new Checkbox("Catsup",false);
Checkbox mustardBox = new Checkbox("Mustard",false);
Checkbox picklesBox = new Checkbox("Pickles",false);

CheckboxGroup sizeGroup = new CheckboxGroup();
Checkbox smallBox = new Checkbox("Small Box",true,sizeGroup);
Checkbox mediumBox = new Checkbox("Medium Box",false,sizeGroup);
Checkbox largeBox = new Checkbox("Large Box",false,sizeGroup);

public void init()
{
setBackground(Color.red);
add(sandwichpromptLabel);
add(sandwichInputField);
add(sizePromptLabel);
add(catsupBox);
catsupBox.addItemListener(this);
add(mustardBox);
mustardBox.addItemListener(this);
add(picklesBox);
picklesBox.addItemListener(this);
add(smallBox);
smallBox.addItemListener(this);
add(mediumBox);
mediumBox.addItemListener(this);
add(largeBox);
largeBox.addItemListener(this);
}

public void itemStateChanged(ItemEvent choice)
{

}
}
import java.awt.*;
import java.applet.*;
import java.awt.event.*;

public class Freddie extends Applet implements ItemListener
{
//Create components for applet
Label sandwichpromptLabel = new Label ("I made you a sammich, but I eatted it!!!");
TextField sandwichInputField = new TextField(25);
Label sizePromptLabel = new Label ();

Checkbox catsupBox = new Checkbox("Catsup",false);
Checkbox mustardBox = new Checkbox("Mustard",false);
Checkbox picklesBox = new Checkbox("Pickles",false);

CheckboxGroup sizeGroup = new CheckboxGroup();
Checkbox smallBox = new Checkbox("Small Box",true,sizeGroup);
Checkbox mediumBox = new Checkbox("Medium Box",false,sizeGroup);
Checkbox largeBox = new Checkbox("Large Box",false,sizeGroup);

public void init()
{
setBackground(Color.red);
add(sandwichpromptLabel);
add(sandwichInputField);
add(sizePromptLabel);
add(catsupBox);
catsupBox.addItemListener(this);
add(mustardBox);
mustardBox.addItemListener(this);
add(picklesBox);
picklesBox.addItemListener(this);
add(smallBox);
smallBox.addItemListener(this);
add(mediumBox);
mediumBox.addItemListener(this);
add(largeBox);
largeBox.addItemListener(this);
}

public void itemStateChanged(ItemEvent choice)
{

}
}
import java.awt.*;
import java.applet.*;
import java.awt.event.*;

public class Freddie extends Applet implements ItemListener
{
//Create components for applet
Label sandwichpromptLabel = new Label ("I made you a sammich, but I eatted it!!!");
TextField sandwichInputField = new TextField(25);
Label sizePromptLabel = new Label ();

Checkbox catsupBox = new Checkbox("Catsup",false);
Checkbox mustardBox = new Checkbox("Mustard",false);
Checkbox picklesBox = new Checkbox("Pickles",false);

CheckboxGroup sizeGroup = new CheckboxGroup();
Checkbox smallBox = new Checkbox("Small Box",true,sizeGroup);
Checkbox mediumBox = new Checkbox("Medium Box",false,sizeGroup);
Checkbox largeBox = new Checkbox("Large Box",false,sizeGroup);

public void init()
{
setBackground(Color.red);
add(sandwichpromptLabel);
add(sandwichInputField);
add(sizePromptLabel);
add(catsupBox);
catsupBox.addItemListener(this);
add(mustardBox);
mustardBox.addItemListener(this);
add(picklesBox);
picklesBox.addItemListener(this);
add(smallBox);
smallBox.addItemListener(this);
add(mediumBox);
mediumBox.addItemListener(this);
add(largeBox);
largeBox.addItemListener(this);
}

public void itemStateChanged(ItemEvent choice)
{

}
}
father-sama
father-sama
Admin

Posts : 45
Join date : 2010-02-11

http://ani-haven.net

Back to top Go down

OmNomNom!! Empty Re: OmNomNom!!

Post by father-sama Mon Feb 15, 2010 9:33 am

fail copy-pasta is fail...

Someone should make my program work... or rather they should finish coding it for me...

import java.awt.*;
import java.awt.event.*;
import java.applet.*;

public class PetClinic extends Applet implements ItemListener, ActionListener
{

//Declare Variables


//Construct Applet Components
Label serviceLabel = new Label("Select Services:");

Checkbox officeVisitBox = new Checkbox("Office Visit",false);
Checkbox vaccinationBox = new Checkbox("Vaccination",false);
Checkbox hospitalBox = new Checkbox("Hositalization",false);
Checkbox heartwormBox = new Checkbox("Heartworm Prevention",false);
Checkbox boardingBox = new Checkbox("Boarding",false);
Checkbox dentistryBox = new Checkbox("Dentistry",false);
Checkbox xrayBox = new Checkbox("X-Ray",false);
Checkbox labWorkBox = new Checkbox("Lab Work",false);
Checkbox prescriptionBox = new Checkbox("Prescription",false);

Button CalcButton = new Button ("Calculate");

public void init()
{
add(officeVisitBox);
officeVisitBox.addItemListener(this);
add(vaccinationBox);
vaccinationBox.addItemListener(this);
add(hospitalBox);
hospitalBox.addItemListener(this);
add(heartwormBox);
heartwormBox.addItemListener(this);
add(boardingBox);
boardingBox.addItemListener(this);
add(dentistryBox);
dentistryBox.addItemListener(this);
add(xrayBox);
xrayBox.addItemListener(this);
add(labWorkBox);
labWorkBox.addItemListener(this);
add(prescriptionBox);
prescriptionBox.addItemListener(this);
add(CalcButton);
CalcButton.addActionListener(this);
}

public void itemStateChanged(ItemEvent choice)
{

}

}


______________________________________________
I can't figure out how to do it. If its just a really easy IFTHEN statment (well quite a few easy statements) or if I need to include getState() to make that work. And If so, Should I make invisible labels for each output, and just have text put in if getState() = True... MY HEAD HURTS, and I still have one more problem that I need to do.
father-sama
father-sama
Admin

Posts : 45
Join date : 2010-02-11

http://ani-haven.net

Back to top Go down

OmNomNom!! Empty Re: OmNomNom!!

Post by father-sama Mon Feb 15, 2010 9:34 am

Forgot to say (and I don't feel like editing my posts), I don't understand how to use getState() with an IF statement.
father-sama
father-sama
Admin

Posts : 45
Join date : 2010-02-11

http://ani-haven.net

Back to top Go down

OmNomNom!! Empty Re: OmNomNom!!

Post by father-sama Mon Feb 15, 2010 11:30 am

I never realized how much i hated english until just now. She gave us an assignment. Whatever, not that hard. But, because of how I work (shitty like) I can get the stuff done in no time at all. So we have from 9:40-11am to do this assignment. I've been done since 10... its now 10:30.... I am wasting time here. I could be on my way to elcho already. I have to stop and pay my phone first, but that wont take long.
father-sama
father-sama
Admin

Posts : 45
Join date : 2010-02-11

http://ani-haven.net

Back to top Go down

OmNomNom!! Empty Re: OmNomNom!!

Post by father-sama Mon Feb 15, 2010 11:37 am

I told myself. For the gen. eds, when we need to bring a laptop to class. I would not connect to the internet, unless stipulated by the instructor. Well that worked, until I had my work done and she still hasn't said what we could do after that. So here I am spamming away at these dead forums. I would go to facebook... but I already went there and did what I needed to do (i.e. Mafia wars). And since today is a day that no anime I watch is released, I don't need to dl anything. So what is a man to do?
father-sama
father-sama
Admin

Posts : 45
Join date : 2010-02-11

http://ani-haven.net

Back to top Go down

OmNomNom!! Empty Re: OmNomNom!!

Post by father-sama Mon Feb 15, 2010 11:39 am

Kayla, you should develop the sudden need to want a website. So that I would have something to do.

Making my own website is such a pain in the ass since I get bored with it right away.

Actually you could either want me to make a website, or a completely random java program that does something incredibly stupid but funny. Everyone loves those kinds of programs!!!!!
father-sama
father-sama
Admin

Posts : 45
Join date : 2010-02-11

http://ani-haven.net

Back to top Go down

OmNomNom!! Empty Re: OmNomNom!!

Post by father-sama Mon Feb 15, 2010 11:44 am

I would put this in my other thread, but its not really a program. This is the website I made for my webfinal... Kayla would like it.

Oh Snap! I just remembered that I don't have my Flashdrive (can't even find it atm) so I had to dl my website from my MegaUpload account. If you read this before I see you today bessa, check for my flashdrive around your room (if i forget to remind you). my website will be in the next installment of my spam!!!!

So Look Forward To It!!!
father-sama
father-sama
Admin

Posts : 45
Join date : 2010-02-11

http://ani-haven.net

Back to top Go down

OmNomNom!! Empty Re: OmNomNom!!

Post by father-sama Mon Feb 15, 2010 11:46 am

fucking awesome. With 15 minutes left in class, she finally tells us that If we are done with the assignment, that she has another assignment that she needs us to do... Damnit I hate idiots.


And I lied. My website will be in the next post, not this one.
father-sama
father-sama
Admin

Posts : 45
Join date : 2010-02-11

http://ani-haven.net

Back to top Go down

OmNomNom!! Empty Re: OmNomNom!!

Post by father-sama Mon Feb 15, 2010 11:59 am

<html>
<head>
<!--
Author: Tom Nelson
Title: bleach_streaming.htm
Files: glompIE.css, glomp.css



-->
<title>Web Final</title>
<!--[if IE]><!-->
<link type="text/css" rel="stylesheet" href="glompIE.css" />
<!--<![endif]-->

<link type="text/css" rel="stylesheet" href="glomp.css" />



</head>

<body>
<!--<script type="text/javascript" src="http://www.haven-family.co.cc/scripts/haven.js"></script>-->
<div id="container">
<span style="width:100%; height:246px; float:left; display:block"></span>
<div class="center">
<div class="shadowtop">.</div>
<div class="float" >
<div class="pagecontent">
<div align="center">

</div>
</div>
<!-- end page content -->




<div id="column">
<div class="item">
<span class="item-top"><a href="#column-nav">Main Navigation</a></span>
<span class="item-main"><div id="column-nav">
<span style="width:100%; height:3px; float:left; display:block; margin-left:20px"></span>
<a href="index.htm">Home</a>
<a href="http://animeormanga.com/enter/index.php">Forums</a>
<a href="ongoing.htm">Ongoing Anime</a>
<a href="completed.htm">Completed Anime</a>
<a href="stream.htm">Streamed Anime</a>
<a href="moviesovas.htm">Movies & OVA's</a>
<a href="faq.htm">Faq</a>
<a href="report.htm">Report Links</a>
<a href="staff.htm">Staff</a>
<a href="rules.htm">Rules</a>
<a href="contact.htm">Contact Us</a>
<a href="music.htm">Music</a>
</div></span>
<span class="item-btm"></span>
</div>
<br />
<div class="item">
<span class="item-top"><a href="#column-chat" class="selected">Chat</a></span>
<span class="item-main"><div id="column-chat"><center>
<span style="width:100%; height:3px; float:left; display:block"></span>
<div id="cboxdiv" style="text-align: center; line-height: 0">
<div><iframe frameborder="0" width="286" height="450" src="http://www3.cbox.ws/box/?boxid=2402040&amp;boxtag=9996&amp;sec=main" marginheight="0" marginwidth="0" scrolling="auto" allowtransparency="yes" name="cboxmain" style="border: none;" id="cboxmain"></iframe></div>
<div><iframe frameborder="0" width="286" height="100" src="http://www3.cbox.ws/box/?boxid=2402040&amp;boxtag=9996&amp;sec=form" marginheight="0" marginwidth="0" scrolling="no" allowtransparency="yes" name="cboxform" style="border:none;" id="cboxform"></iframe></div>
</div>

</center></div></span>
<span class="item-btm"></span>
</div>



</div><!--column-->


</div><!--float-->
<div class="shadowbtm">.</div>
</div><!--center-->

<!-- page content -->

<!-- Banner -->
<div id="banner">
<div class="center">
<div id="randomdiv1" class="bannerimage" style="display:none;"></div>
<div id="randomdiv2" class="bannerimage" style="display:none;"></div>
<div id="randomdiv3" class="bannerimage" style="display:none;"></div>
</div>
</div>
</div>
<!-- END BANNER -->

<!-- Random Banner Script -->
<script type="text/javascript" language="JavaScript">
NumberOfDivsToRandomDisplay = 3;
var CookieName = 'DivRamdomValueCookie';
function DisplayRandomDiv() {
var r = Math.ceil(Math.random() * NumberOfDivsToRandomDisplay);
if(NumberOfDivsToRandomDisplay > 1) {
var ck = 0;
var cookiebegin = document
father-sama
father-sama
Admin

Posts : 45
Join date : 2010-02-11

http://ani-haven.net

Back to top Go down

OmNomNom!! Empty Re: OmNomNom!!

Post by father-sama Mon Feb 15, 2010 12:00 pm

= document
father-sama
father-sama
Admin

Posts : 45
Join date : 2010-02-11

http://ani-haven.net

Back to top Go down

OmNomNom!! Empty Re: OmNomNom!!

Post by father-sama Mon Feb 15, 2010 12:00 pm

why is this fucking forum failing so damned hard...
father-sama
father-sama
Admin

Posts : 45
Join date : 2010-02-11

http://ani-haven.net

Back to top Go down

OmNomNom!! Empty Re: OmNomNom!!

Post by father-sama Mon Feb 15, 2010 2:42 pm

father-sama
father-sama
Admin

Posts : 45
Join date : 2010-02-11

http://ani-haven.net

Back to top Go down

OmNomNom!! Empty Re: OmNomNom!!

Post by father-sama Mon Feb 15, 2010 10:09 pm

we got most of them done, and done.
father-sama
father-sama
Admin

Posts : 45
Join date : 2010-02-11

http://ani-haven.net

Back to top Go down

OmNomNom!! Empty Re: OmNomNom!!

Post by Sponsored content


Sponsored content


Back to top Go down

Back to top


 
Permissions in this forum:
You cannot reply to topics in this forum