Forum: HTML and CSS Feb 22nd, 2005 |
| Replies: 5 Views: 8,771 Yep I just found out there was a hotfix for Flash so it wouldn't be blocked. All is good again. |
Forum: HTML and CSS Feb 18th, 2005 |
| Replies: 5 Views: 8,771 That just isn't as cool though. The only reason I use CSS is for the text and so I don't have to make those irritating tables. I am trying to figure this out too though. If you go to web sites... |
Forum: C Jan 11th, 2005 |
| Replies: 3 Views: 11,870 It would probably be easier if you took a look at this thread I made in another forum. I am Siege-Tank.
http://www.bwhacks.com/forums/showthread.php?t=1984 |
Forum: Visual Basic 4 / 5 / 6 Nov 24th, 2004 |
| Replies: 14 Views: 151,131 Yeah, I found it. I think I got over stressed because my assignment was due soon so I resorted to the forum too fast. I found it on Google in almost no time at all. Guess in the rush I forgot... |
Forum: Visual Basic 4 / 5 / 6 Nov 20th, 2004 |
| Replies: 14 Views: 151,131 Well I have to make a microwave program in Visual Basic for school.
I can't seem to find anything in the index that will help me with the timer/countdown. I found TimeOfDay() and was going to... |
Forum: C Sep 15th, 2004 |
| Replies: 8 Views: 5,629 I get it now. I goes 1-500 in the third loop for every 1 in the second loop. Then the third 1-500 for every 1 in the second loop 500 times for every 1 in the first loop. I dunno if I explained... |
Forum: C Sep 14th, 2004 |
| Replies: 8 Views: 5,629 DUH. I want so smack myself in the head for restating the integers. But the error was because I didn't put a == because it is a question and not an assignment. DUH........
I'm going to keep... |
Forum: C Sep 14th, 2004 |
| Replies: 8 Views: 5,629 Error...
#include <iostream>
using namespace std;
int main()
{
int side1 = 0;
int side2 = 0;
int hypotenuse = 0; |
Forum: C Sep 14th, 2004 |
| Replies: 8 Views: 5,629 What the hell? That is what I had but I got an error. I'm going to go try again.
Wait a second, that part I know is correct. I think I have an idea now. I'm going to go try it out. |
Forum: C Sep 14th, 2004 |
| Replies: 8 Views: 5,629 I need to make a program for school and I have no idea how to make it. I am supposed to do: I know how to make the triple nested loops but I get lost when I try to figure out how to make it loop... |
Forum: C++ Sep 12th, 2004 |
| Replies: 3 Views: 33,646 Yeah, I did search Google. Amazingly hard to find things sometimes... But thanks everyone.:cheesy: |
Forum: C++ Sep 12th, 2004 |
| Replies: 3 Views: 33,646 Would I have to go about doing the math manually and make my own function? Is there some built in function I can use to be lazy? Is there some totally easier way that I am oblivious to? |
Forum: Legacy and Other Languages May 3rd, 2004 |
| Replies: 2 Views: 4,521 Ack... What the...
Thanks haha. I need to be more careful. Sorry for wasting you're time. I thought it would have been something more complicated. Usually I catch my misspelling. |
Forum: Legacy and Other Languages May 2nd, 2004 |
| Replies: 2 Views: 4,521 If anyone still knows Qbasic could you take a look at this code for me?
CLS
READ nam$, addr$
DO UNTIL nam$ = "END OF DATA"
PRINT nam$, addr$
READ nam$, addr$
LOOP |