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

Programming & Design - March 2007

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

anybody can give an example, a very simple sample
i really nead it now

2007-03-21 16:36:33 · 1 answers · asked by student programmer 1

I need a site that offer tutorials for 3dsmax, photoshop, flash, and lightwave could any of you give me the url to such a site?

2007-03-21 15:58:24 · 3 answers · asked by James curry 2

do i have to install apache or xampp or wamp ?
What is what ?

2007-03-21 15:55:27 · 4 answers · asked by Anonymous

Does anyone have any tips for how to solve logic problems with C++? I'm having some problems with loops. Any place where I could find practice problems would be great.

2007-03-21 15:54:10 · 2 answers · asked by Froggiesmiles 3

I am writing a program to do simple matrix operations. but i want the dimensions of the matrix to be fed by the user. the code below, gives the following error during compile time...

`cols' cannot appear in a constant-expression

cout << "Number of rows:";
int r;
cin >> r;
cout << "Number of columns:";
int c;
cin >> c;

const int rows=r;
const int cols=c;

// Assign dimensions
float* mat1[rows][cols]; float* mat2[rows][cols]; float* mat3[rows][cols];

mat1= new float [rows][cols];
mat2= new float [rows][cols];
mat3= new float [rows][cols];

it works fine if they are 1 dimensional arrays, so why doesnt it compile if i use 2 dimensions. please help.

2007-03-21 15:44:08 · 2 answers · asked by aswan k 1

I just uploaded a phpbb. How do I customize the words on top?

Please see picture link below to see what parts I mean.
http://www.superteacherworksheets.com/page2.html

Many thanks for any and all answers.
- Tim

2007-03-21 15:41:41 · 1 answers · asked by TumbleTim 4

It was installed when I had Windows 98, but when I upgraded to XP it was lost and I can't find it!

2007-03-21 15:36:56 · 1 answers · asked by turboranch1997 1

i want a lilboosie background on my yahoo page and wants to know how i can put it on my yahoo background page?

2007-03-21 15:33:00 · 3 answers · asked by LIL'BOOSIE GIRL 1

You will write the pseudocode for a simple game playing system, which plays against a user. Let’s call the program & the user UA (user agent). PA and UA are in a magical world, in which a dragon can appear.
PA and UA both know that they are being watched by a troll. PA and UA know that the troll will give them coins depending on their joint behavior when the dragon appears. If they both do nothing, the troll will think they are nice, animal lovers and will give them each 3 gold coins. If they both draw their swords on the dragon, the troll will think they are stressed out and over-reacting, and give them 1 coin each. However, if the PA draws its sword and the UA does nothing, the troll will think that the PA is very brave and that UA is a coward, and give PA 5 coins, and UA nothing. Similarly, if UA draws its sword and PA does nothing, then the UA will seem brave and get 5 coins, and PA will get nothing.

2007-03-21 15:30:11 · 1 answers · asked by Facilitate 1

I know that there are pleanty of webiste building programs out there but what is the best of the wysiwyg website programs and if there is no really good program is there some type of place that you can direct me to to learn how to easily build with html or xhtm. I would greatly appriciate it and thank you to anyone who is considerate enough to listen to my retarded questions.

2007-03-21 15:27:48 · 5 answers · asked by Anonymous

I am familiar with HTML and CSS, which really aren't programming languages, but are worth mentioning I guess. I also am pretty familiar with the programming for a Ti-83, which is a lot like BASIC, though I haven't even used BASIC. I am really just looking for something pretty easy, but a good bit powerful; I am a quick read, and I'll pick something up fast.


Oh, and a guide which teaches me your suggestion would be nice too.

2007-03-21 15:27:21 · 9 answers · asked by Anonymous

I really dont know much on how to work with the special features on it. If anyone is really good at creating sites with Frontpage please leave me either a few tips or email me that way maybe I could possibly find out.

2007-03-21 15:23:28 · 2 answers · asked by Anonymous

Even I cannot play Yahoo free games due to absence of Java support.

2007-03-21 15:21:45 · 3 answers · asked by deepak57 7

I'm supposed to write a program that accepts two interger vallues typed by the user. Then display the results of dividing the first interger by the second, to three decimal place accuracy. It is supposed to be able to check for division by 0 and must use a conditional operator.

My idea was to float variables a b c
have the user input a and b then make a conditional operator stating

c = (b==0) ? .454 : a/b;
if(c==.454)
printf("Dividing by 0 is undefined");
else
printf("The answer is %f\n" c)

It's ghetto and its obviously bad programming, I know.

I get a floating exception when I make a and b and type of integer which I don't understand.

I'm going to drop this class this week because I need to face that I have absolutely no aptitude for this programming language, but I would still like learn just in case I attempt it again next semester.

Can anyone guide me?

2007-03-21 15:17:14 · 4 answers · asked by Gearz 2

Instead of just one pic next to the heading, there are two pics.

2007-03-21 15:09:43 · 2 answers · asked by mizzeshill 1

Assume the following function F();

unsigned F(unsigned n)
{
if (n==0)
return 0;
//else
returnF(n/10) + n % 10;

what will be returned by the function call?

F(0)
F(1)
F(2)
F(10)
F(11)
F(12)
F(22)

any help is gladyl appresiated thanks

2007-03-21 15:07:49 · 1 answers · asked by DJ F 1

Im new to JavaScript and I have traced problems I have been having to this. Can you tell me what Im doing wrong.

Works
if( document.myform.box1.checked ){
document.write( "true
" );
} else {
document.write( "false
" );
}
Prints
true

Works
if( document.myform.box2.checked ){
document.write( "true
" );
} else {
document.write( "false
" );
}
Prints
true

Works
if(true){
document.write( "true
" );
}
else{
document.write( "false
" );
}
if(false){
document.write( "true
" );
}
else{
document.write( "false
" );
}
Prints
true
false

Doesnt Work
if( document.myform.box1.checked ){
document.write( "true
" );
} else {
document.write( "false
" );
}
if( document.myform.box2.checked ){
document.write( "true
" );
} else {
document.write( "false
" );
}
Prints
true

The first 3 print what you would expect, the last only prints the first line. It wont print both true/false messages. Any ideas why?

2007-03-21 15:04:22 · 2 answers · asked by rsmith985 3

I know a little HTML, no Java...I have & use Photoshop CS & Elements. I would like to learn to use Flash.
- What is the minimum software I would have to buy & learn, to be able to create my own auction templates in Ebay?
- Best recommendations to learn the software FAST by CD or website?
- Best books to help me?

2007-03-21 14:56:04 · 1 answers · asked by CINDY B 1

I have a question concerning how to draw on a computer. I have photoshope and other programs but i want to get better at drawing on my computer, is there any tool out there thats like a pencil or pen and i can draw on something and it transfers to my program i have open on my comp?

2007-03-21 14:51:42 · 7 answers · asked by microsofth8me 1

I heard a bunch of semiconductor people referring to Fi design or PHI design, or maybe even Fy design. Does anyone know what this means and where I can learn more?

Thanks!

2007-03-21 14:42:28 · 1 answers · asked by Anonymous

i wanted to do a thing where every time i bolded something, it would change color AND size, and same with italics and underlining. the problem is, it's only changing color...can someone fix the code to make it change color and size?



hey
hey
hey

2007-03-21 14:26:14 · 4 answers · asked by zbam91 3

2007-03-21 14:25:20 · 1 answers · asked by romo182 2

I have been trying to install the security update for .net framework 1.1 but it fails every time. Something about the path of netfx. Do I really need the update

2007-03-21 14:06:29 · 2 answers · asked by jmhshippos 2

For a while I've been asking people how to make a database like tv.com (www.tv.com) and The Big Cartoon Database (www.bcdb.com) have. I've seen scripts about making a database but I'm starting to think it's something other than what I'm talking about. This is what I want, a list from A to Z, each letter of the alphebet goes to a page with a list of shows that start with that letter. When you choose a show it goes to a page with it's info like cast, crew, trivia, and stuff like that. So tell me, can SQL create such a database?

2007-03-21 13:56:46 · 4 answers · asked by lord_dolmus 1

i am not good at this computer stuff but i need to email these pictures and they need to be jpeg and right now they are psd how do i make them ddifferent?

2007-03-21 13:56:16 · 3 answers · asked by gotwins694 1

I've made an input box and I'm try to have it so that if the user types in say "red" in the input box then 29.99 will show in a text box on the form.

Someone tell me how to do this

2007-03-21 13:44:07 · 4 answers · asked by Anonymous

2007-03-21 13:35:04 · 5 answers · asked by mastertouchdesigns 1

2007-03-21 13:29:45 · 5 answers · asked by Fear and Bullets 1

fedest.com, questions and answers