View previous topic :: View next topic |
Author |
Message |
|
Post subject: Computer FAQ
|
|
|
|
Revival is good. I welcome change and offer my A+ services to members of the board. Cheers. |
|
Thu Oct 31, 2002 5:46 pm |
|
|
|
|
|
|
heh, and I'm sure everyone here needs it... oh wait who's here? |
|
Thu Oct 31, 2002 10:34 pm |
|
|
|
|
|
|
Well, avatars are still in the works I guess but hey, its sweet to see my name on the screen cap on the Tylers latest post. LOL |
|
Fri Nov 01, 2002 11:47 am |
|
|
|
|
|
|
yeah i thought that was kinda funny, all our fellow pdf must be jealous ^_^ I love this place |
|
Fri Nov 01, 2002 11:36 pm |
|
|
|
|
|
|
yes... life is good. |
|
Sat Nov 02, 2002 12:43 am |
|
|
|
Post subject: thread revival
|
|
|
|
already reviving this thread
Lets go ahead and get this thread pinned up like old times.
Oh BTW I actually have a question. I'm actually asking this for Dreadnot, but for those who have WinXP, if your on a dial-up connection does WinXP ever suddenly pop-up when your dissconected and state the "Obvious" that "You're experiencing connection problems. Thought you'd like to know even though by using a pop-up window I've caused your multiplayer game to crash and/or time out." If something like this happens to you, what did you do to fix it?
EDIT: OMG it finally posted correctly!!! |
|
Thu Nov 07, 2002 9:35 am |
|
|
|
|
|
|
You can prolly change it in the internet options setting, the connections panel perhaps? (if there is one) _________________ The problem with America is stupidity. I'm not saying there should be a capital punishment for stupidity, but why don't we just take the safety labels off of everything and let the problem solve itself? |
|
Thu Nov 07, 2002 11:46 am |
|
|
|
|
|
|
How does my avatar look? hmmm? _________________ "You know, just once I'd like to meet an alien menace that WASN'T immune to bullets. . ."-----from Dr.Who
"Why is it so dark?"---Sebastian "In the beginning, it is always dark. . ."---The Empress-----from The Neverending Story |
|
Thu Nov 07, 2002 2:36 pm |
|
|
|
|
|
|
Like you asked that in a wrong thread... on that note
it doesn't look spectacular... _________________ The problem with America is stupidity. I'm not saying there should be a capital punishment for stupidity, but why don't we just take the safety labels off of everything and let the problem solve itself? |
|
Thu Nov 07, 2002 2:47 pm |
|
|
|
|
|
|
It looks better now.
Question: I want to find a DVD player for my DVD ROm, and i don't feel like buying one. Any ideas? _________________ The problem with America is stupidity. I'm not saying there should be a capital punishment for stupidity, but why don't we just take the safety labels off of everything and let the problem solve itself? |
|
Sat Nov 09, 2002 1:15 am |
|
|
|
|
|
|
dougisfunny wrote: |
It looks better now.
Question: I want to find a DVD player for my DVD ROm, and i don't feel like buying one. Any ideas? |
kacoughzaa? "test" them out from there to decide which one your going to get. I use one of my many dvd players for dvd's so I don't have any exact suggestions.
What device should I get got dv capturing and analog digitizing? I'd get a radeon 8500dv but I've heard that they are unreliable in quality of capture (plus now I'd rather wait to get a 9500dv if they ever are going to make one) _________________ "Veni. Vedi. Spooki." - Julius Caesar
I came. I saw. I spooked.
He's better than Pop-Rocks! |
|
Sat Nov 09, 2002 1:43 am |
|
|
|
|
|
|
I'd say go with a pepito, or the low cost verson the dazzle. If you are looking for a card.. i dunno what would be your best bet, depends on the system _________________ The problem with America is stupidity. I'm not saying there should be a capital punishment for stupidity, but why don't we just take the safety labels off of everything and let the problem solve itself? |
|
Sat Nov 09, 2002 4:54 am |
|
|
|
|
|
|
I don't know exactly what pepito's model is, and more than likely there has been a release of a better model (probably with less personality) since his release. _________________ "Veni. Vedi. Spooki." - Julius Caesar
I came. I saw. I spooked.
He's better than Pop-Rocks! |
|
Sat Nov 09, 2002 1:00 pm |
|
|
|
|
|
|
I dunno bout that, but i was saying something similar. _________________ The problem with America is stupidity. I'm not saying there should be a capital punishment for stupidity, but why don't we just take the safety labels off of everything and let the problem solve itself? |
|
Mon Nov 11, 2002 3:00 am |
|
|
|
|
|
|
why won't this work?
import java.io.*;
public class Project3
{
public static void main (String []args)throws IOException
{
incallout();
}//end of main
public static void incallout()
{
BufferedReader infile = new BufferedReader (new FileReader("C:/data_in.txt"));
String ordernumber[]= new String[5];
String orderamount[]= new String[5];
String freightamount[]= new String[5];
String ordertotal[]= new String[5];
String freightdiscount[]= new String[5];
String totaldue[]= new String[5];
ordernumber[0]= "Order Number";
orderamount[0]= "Order Amount";
freightamount[0]= "Freight Amount";
ordertotal[0]= "Order Total";
freightdiscount[0]= "Freight Discount";
totaldue[0]= "Total Due";
Project3workingfile ordervalues;// = new Project3workingfile();
int i=1;
do
{
ordernumber[i]= infile.readLine();
String amount = infile.readLine();
String freight = infile.readLine();
ordervalues.computing(amount, freight);
orderamount[i] = ordervalues.getOrderamount();
freightamount[i] = ordervalues.getFreightamount();
ordertotal[i] = ordervalues.getOrdertotal();
freightdiscount[i] = ordervalues.getFreightdiscount();
totaldue[i] = ordervalues.getTotaldue();
++i;
}//end of while
while (infile.readLine() != null);
Padspaces bleh;// = new Padspaces();
ordernumber= bleh.Pad(ordernumber);
orderamount = bleh.Pad(orderamount);
freightamount = bleh.Pad(freightamount);
ordertotal = bleh.Pad(ordertotal);
freightdiscount= bleh.Pad(freightdiscount);
totaldue = bleh.Pad(totaldue);
//String paddedorderamount[]= new String(oderamount[])
//String paddedorder
//*/
}//end of io class
}//end of class _________________ The problem with America is stupidity. I'm not saying there should be a capital punishment for stupidity, but why don't we just take the safety labels off of everything and let the problem solve itself? |
|
Thu Nov 14, 2002 2:51 am |
|
|
|