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

Programming & Design - November 2006

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

Which you could use to do everything rather than have lots of them?

And if it is possible is it ever likely to happen?

2006-11-13 10:47:55 · 13 answers · asked by richy 2

need to test some code i typed in notepade but cant isntall an ide on my work computer. so i need a virtual ide, know of any?

2006-11-13 10:46:11 · 2 answers · asked by priestxes 1

This is a pre-test study question for an upcoming test that deals with pointer variables.

Know whether or not a name is associated with the pointer data type in C++.

I don't quite understand what this is referring to...i mean every pointer has to have a variable name..(ex int *varname), but is that what this question is to referring to?

2006-11-13 10:45:07 · 2 answers · asked by D 4

And other free content for my page?

2006-11-13 10:31:04 · 2 answers · asked by cami 4

I already know how to use active desktop.
I want to completely integrate my web browser with my desktop. Is this possible? I am wanting to not have to open a separate page while browsing the internet. I want to browse firefox from my desktop.
thanks

2006-11-13 09:59:52 · 1 answers · asked by historybuff2009 2

Hi, I'm trying to develop a script that will, given the friend id from a form input, get the html of the persons myspace profile, and serch through it to get their default picture, and display name. What could I use to do this? And if it's simple enough, could someone develop this for me?

Thanks,
Tyler

2006-11-13 09:54:48 · 2 answers · asked by thety2 1

I have some programming knoweldge i want to learn php which is the best book and authour i dont want to go for much costlier.Pls give suggestion.s

2006-11-13 09:52:20 · 4 answers · asked by md m 2

I know how to make a form. I want to know how to make one where the information gets sent to either my e-mail or to an asp page. And how do I set up my asp page to view the sent info.

2006-11-13 09:28:11 · 2 answers · asked by jadeaaustin 4

Write a program to do fraction arithmetic. A sample run follows:

Welcome to the Fraction Arithmetic program.
-------------------------------------------
Your problems with fractions can be solved here. Enter a
fraction arithemetic problem (Example 2/5 - 4/7). 1/2 + 1/4
The answer is 6/8.

Your program should handle the operations of addition, subtraction, multiplication
and division. The answer does not have to be in lowest terms for this version of the program.

Plan your program so that it is modular. Have the input done in one module,
the output done in a second module, and the calculation done in a third.
Put each module in a separate source code file. The function main() should reside in
its own module and be a driver program. If possible, try to write the
program without using any global variables.



Header file

enum ops {add,sub,mult,divide};

struct fraction
{
int num;
int den;
};

void problem8_7main();
void problem8_7input(struct fraction *first, struct fraction *second, enum ops *operation);
void problem8_7calc(struct fraction first, struct fraction second, enum ops operation,struct fraction *result);
void problem8_7output(struct fraction result);

Input module


#define _CRT_SECURE_NO_DEPRECATE

#include
#include
#include
#include "problem8_7.h"

void problem8_7input(struct fraction *first, struct fraction *second, enum ops *operation)
{
char Input[1024];

char *firsttoken = NULL;
char *opstoken = NULL;
char *secondtoken = NULL;
char *token = NULL;


printf("Welcome to the Fraction Arithmetic program.\n");
printf("-------------------------------------------\n");
printf("Your problems with fractions can be solved here.\n");
printf("Enter a fraction arithmetic problem (Example 2/5 - 4/7)\n");

fgets(Input,1024,stdin);

firsttoken = strtok(Input," \n");
opstoken = strtok(NULL ," \n");
secondtoken = strtok(NULL ," \n");

token=strtok(firsttoken,"/");
first->num=atoi(token);
token=strtok(NULL,"/");
first->den=atoi(token);

token=strtok(secondtoken,"/");
second->num=atoi(token);
token=strtok(NULL,"/");
second->den=atoi(token);

switch(opstoken[0])
{
case '+':
*operation=add;
break;
case '-':
*operation=sub;
break;
case '*':
*operation=mult;
break;
case '/':
*operation=divide;
break;
}

}



Output module

#include "problem8_7.h"
#include

void problem8_7output(struct fraction result)
{
printf("The result is %d/%d\n",result.num,result.den);

}

2006-11-13 09:24:31 · 1 answers · asked by Anonymous

I run my own business and I want to track how much money comes in each month, year, .... Can I do this using excell? I would like to make a bar graph or some kind of chart so I can compare each month and year...thanks

2006-11-13 09:12:55 · 7 answers · asked by Anonymous

could anyone tell me a site were i might find begginers help for macromedia dreamweaver 8 ?

2006-11-13 08:20:02 · 3 answers · asked by Alex :D :D 2

i have a form on my website and when the user clicks submit it will send and take them back to my homepage but what i would like to do is take them back to the page they were on before they got to the form does anyone know the code for this please

2006-11-13 08:12:50 · 3 answers · asked by themanwithtwoarms 3

How to connect and handle a access data base with asp???
from where i can get the sourece codes..?

2006-11-13 07:59:12 · 4 answers · asked by Anonymous

0

How do I make a web site for no cost at all? (pesides Piczo)

2006-11-13 07:52:54 · 2 answers · asked by Rain-- 3

Problems associated with multimedia retrieval.
How do they affect the creation, use and management/support of the system.

2006-11-13 07:49:52 · 2 answers · asked by ericaarae 1

2006-11-13 07:37:28 · 2 answers · asked by party diva 1

I have an array of JButtons all with an icon. I want to make it so that when the button is pressed, the icon disappears and the button reverts to its background color, which will be set at the same time. I know how to set thebackground image, but how do you remove the ImageIcon?

2006-11-13 07:33:42 · 3 answers · asked by snoboarder2k6 3

2006-11-13 07:03:47 · 2 answers · asked by HeLLboY 2

I am working on a script that accepts a name in the log-in. When the name (let's say it's "East West") gets passed, only up to the space is passed ("East").

How can I get around this?

2006-11-13 06:54:56 · 2 answers · asked by beatnik75 1

2006-11-13 06:37:42 · 3 answers · asked by playfoolcom 1

I would like to use aaa logo design to design a letterhead

2006-11-13 06:23:23 · 5 answers · asked by Anonymous

I'm getting REALLY frustraited with adobe imageready.

I can't figure out how to make an animated icon.
I know how you're supposed to do it but i can't figure it out.

The only thing i'm having problems with is the layers.
I can only get one picture up and then when i open up another, it makes a whole new layer thingy, without the first one.

I don't see how you're supposed to make an icon if you can't even get all the pictures you need on the same layer.

So please, can someone help me? I'd be very grateful and the person who can actually help me will get 10 points.

2006-11-13 06:17:12 · 1 answers · asked by RecycledxHeart 3

I would like to build an e-commerce site and thought about just using the simple yahoo templates, but thought that I would get better results but building my own site that I can customize with my own flavor. Does anyone have any experience with web building? How long does it normally take this will be my first project without using ready made templates. I need to have a design studio area.

2006-11-13 05:54:38 · 4 answers · asked by Anonymous

1: Users to search their desktop, hardrives etc to find a file.
2: Upload to a server/email address.

Any help would be greatly appreciated!

2006-11-13 05:48:52 · 10 answers · asked by whocaresaboutusnow 2

version mx 2004

2006-11-13 05:18:00 · 2 answers · asked by martin h 6

2006-11-13 05:13:22 · 1 answers · asked by Anonymous

I have an existing databse of roughly 249 tables with hundred sof thousands of rows of data. I am trying to get this uploaded to our mysql databse through yahoo hosting. Is there any scripts or programs that I can load to do this?

2006-11-13 05:04:48 · 3 answers · asked by latah280 1

i need a site about tech that has article about new product & development . help !

2006-11-13 04:49:16 · 2 answers · asked by altair 1

Please do not suggest the following, since these do not work in XP:
1>attrib command works in DOS, but in XP u can delete the file/folder created

2>renaming files with special characters (viz. ALT+1234) is not compatible with XP.

2006-11-13 04:49:13 · 3 answers · asked by scorpiomaddy 1

fedest.com, questions and answers