English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

Programming & Design - October 2006

[Selected]: All categories Computers & Internet Programming & Design

Will somebody make me a flash website template for free? could any1 make it for games and game reviews??? could any1 make me one or link one to me?

2006-10-28 14:49:27 · 5 answers · asked by lilloverboy94 1

Can anyone write this program in C++ using a do while loop for me?

Write a program that asks the user for a series of integers one at a time. When the user enters the integer 0, the program displays the following information.

1) the number of integers in the series (not including zero)
2) the average of the integers
3) the largest integer in the series
4) the smallest integer in the series
5) the range (difference between largest and smallest integer)

2006-10-28 14:17:26 · 7 answers · asked by jdk7212000 1

2006-10-28 14:08:53 · 1 answers · asked by Anonymous

I'm working on an MMORPG called Parcels and Pirates. If I could get some help coding some of the characters and the rest of the website, I could get some work done. Oh, and by the way, I have an idea of how I want it to work. I can e-mail you a prelim sketch.
#1denverfan

2006-10-28 13:43:43 · 2 answers · asked by #1denverfan 3

I am trying to display a picture in a web page and I have to write the raw code and I am having troubles getting my picture display in IE. This is what I have for a line.

Me
Does anyone know why this doesn't work?

2006-10-28 13:29:58 · 5 answers · asked by skinut 1

I am an amateur trying to learn C++. I complie my first prgram, it gives no errors, but when I run it, the output screen disappears so quickly that I barely get a glance of the output. Please help.

2006-10-28 12:40:28 · 8 answers · asked by Razor 5

ic ant seem to make this thing work..

2006-10-28 12:14:10 · 2 answers · asked by Anonymous

What is a class variable? Would you mind showing me an example of one being made that will save a random integer? Thanks!

2006-10-28 12:00:15 · 2 answers · asked by Galbadian 2

I get errors saying macromedia flash player is not installed or i dont have java enabled. I do have both. What can i do to fix this problem?

2006-10-28 11:44:59 · 2 answers · asked by Josh 2

can't be in a zip file

2006-10-28 10:19:08 · 5 answers · asked by c R 1

okay so i am working on this turbo c 3.0 program
the problem is that i have 9 arrays in this program declared as global variables within a structure called BUTTONS

now i want to call this array using a function that has the declaration
void press( struct buttons b )
{
.....
}


==================

The structure looks like this:
struct buttons
{
int coord1[6][4], coord2[6][4], coord3[6][4];
int coord4[6][4], coord5[6][4], coord6[6][4];
int coord7[6][4], coord8[6][4], coord9[6][4];
};
struct buttons b;

int coord1[6][4] = { { 220,173,260,203 },
{ 220,203,260,203 },
{ 260,173,260,203 } };

int coord2[6][4] = { { 270,173,310,203 },
{ 270,203,310,203 },
{ 310,173,310,203 } };

int coord3[6][4] = { { 320,173,360,203 },
{ 320,203,360,203 },
{ 360,173,360,203 } };


===================

i'll be posting the structure in a mo' with addn'l details... PL WAIT>..

2006-10-28 09:59:54 · 3 answers · asked by Shariq M 5

I know somebody who wants to make a website but doesn't know how hard it might be to make a web site.Any tips, recommended web sites or downloads? to help it along would be greatly appreciated.

2006-10-28 09:44:40 · 14 answers · asked by anon4112 3

I used to use a photo editing site.. I think it was www.blib.com/animationfactory or something like that..
all the editing was done on the website and I didn't need to download anything.
By editing I mean colouring the backround,adding lettering..
do you know any similar sites?
Please use the clickable code..

2006-10-28 09:44:22 · 2 answers · asked by burntumber 5

I am wanting to find out how to start one up and looking for any info ie: what equipment and software, how to market, business start up, what to charge, etc. Please help!

stormdw@yahoo.com

2006-10-28 09:28:18 · 2 answers · asked by lostand confused 2

2006-10-28 09:12:07 · 7 answers · asked by Larry m 6

2006-10-28 09:01:48 · 6 answers · asked by rajkambo80 1

I am trying to write a Java program using JCreator called Triangles that asks the user to enter three whole numbers representing the angles of a triangle. The purpose of the program is to determine, based on these numbers if the triangle is equalateral, isosceles or right angles.

If all angles are equal then I want to output the sentence using System.out.print, stating that this is an equalateral triangle. If only two angles are equal I want the sentence to state that this is an isosceles triangle. If any of the angles are 90o then I want to output a sentence stating that this is a right angled triangle.

So far I have:
String triangle(double angle1, double angle2, double angle3) {
if( (angle1 + angle2 + angle3) !=180)
return "Not a triangle";
else{
if(angle1 == angle2 || angle1 == angle3 || angle2 == angle3)
return "Isosceles";
if(angle1 == 90.0 || angle2 == 90.0 || angle3 == 90.0)
return "Right";
if(angle1 == angle2 && angle1 == angle3)
return "Equalateral";
}

}

2006-10-28 08:43:00 · 2 answers · asked by Princess Peach 3

i want to earn online money by ads for which i required a web site of my own. Please tell me simple procedure.

2006-10-28 08:30:51 · 1 answers · asked by JAGGU 1

i want to earn online money by ads for which i required a web site of my own. Please tell me simple procedure.

2006-10-28 08:29:11 · 0 answers · asked by JAGGU 1

The question pretty much explains itself.. I know I could copy and paste, but I really would just like to know for myself which numbers to push when I hold down the alt key..Thanks.. Or a site where I could find all the things I am able to make with my alt key would be nice!

2006-10-28 08:22:28 · 4 answers · asked by Anonymous

1)write a program to read in an integerN>2 and determine if N is prime number.
2)y=x^4_5x^2+7x-8 write a program which calculate y for values of x from -4 to 4in steps of 0.2. prite x and itscorresponding y value on diffferent lines.
3)print each two-digit odd number N,N^2,N^3 on different lines. the program should be written so that the column of N is headed by NUMBER, N^2 by SQURE,N^3 by CUBE.

2006-10-28 08:20:26 · 1 answers · asked by kater al nada 2

2

2006-10-28 07:52:16 · 5 answers · asked by asawaridhande 1

I have no knowledge of animation.

2006-10-28 07:49:08 · 3 answers · asked by Laura M 1

Hi,

I would like to put some music on my website but also provide visitors with the possibility to toggle it on/off. I don't want to use a button but simple the words ON | MUSIC | OFF (as a button doesn't do the design any good). So (the way I fugure it out) both ON and OFF should be working on thier own? Anyway, I've searched everywhere but I only find HTML codes for adding buttons but not text. Could someone please help me?

Thanks in advance! :-)

P.S. I am really new at this so could you please keep it as simple as possible? Thanks again :-)

2006-10-28 07:40:08 · 2 answers · asked by gingerlilly 1

If I set an image as a LINK, the image ends up with a blue box around it..how do I get rid of that box, or is there another way to command these type of links? I put the image inside the link
()

2006-10-28 07:35:25 · 3 answers · asked by Anonymous

How? I have tried saving it localy, and pasting it. All it does is show a thin, black, box around where the image should be. Oh, and it DOESN'T show the image! :(

2006-10-28 07:22:04 · 2 answers · asked by compugecko 1

I need to build some interactive forms allowing the end user to go on to the next level after submitting each form.
Thanks

2006-10-28 07:19:34 · 4 answers · asked by Dr Who 1

fedest.com, questions and answers