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

Programming & Design - February 2007

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

Help to update 1 field in a table where the data is in another table and one field is matching ? SQL DB2 query please ?

2007-02-26 17:13:36 · 2 answers · asked by shiva 1

ok i think i have most of it figured out now, but theres a problem
void encrypt(char letter){
cout<<"Enter a message to encrypt"< cin>>letter;
while (letter!='!'){
if (letter=='k') cout<<"1 ";
26 more if statements after that.
I need to change encrypt (char) into encrypt (int) and i dont know how to do that

2007-02-26 17:09:46 · 1 answers · asked by Alex P 2

Im looking for the kind of myspace layouts you can make with scroll bars all over... please help.
if anyone has and old one i can use i really need this because i don't know how to make them ive tried but i failed.

2007-02-26 17:03:06 · 3 answers · asked by bushcasss b 1

Im new to Visual Basic, and I just made a small Windows application. Does anyone know how to save the actual application so that I can view it later, and not just the source code? Any help is appreciated! Thanks!

2007-02-26 16:50:31 · 4 answers · asked by Anonymous

http://x.myspace.com/images/blog/TomBlogProfilePhisherwithRedLine.JPG

please explain to me how to do this on my own?

someone did it. n i want to do the same with my own stuff

2007-02-26 16:44:29 · 2 answers · asked by Mr.Opinion 1

ok I wrote something not sure how right it is but i do need some help on it
here is what i have:
int menu(int x){
cout<<"Press 1 to encrypt, 2 to decrypt, 3 to quit)"< cin>>x;
return x;
}
void encrypt(char letter){
cout<<"Enter a message to encrypt"< cin>>letter;
while (letter!='!'){
if (letter=='k') cout<<"1 ";
then 26 more if statements for letters
cin>>letter;
}
return;
}



void decrypt(int code){
cin>>code;
while (code!=0){
if (code==1) cout<<"k";
26 more if statements
cin>>code;
}
return;
}




int main(){

int choice;
int shift = 7; // default shift
choice = menu();************
while (choice != 3){
if (choice == 1){
cout << "Enter the 'shift' value: ";
cin >> shift;
encrypt(shift); }
else
decrypt();************

cout< choice = menu(); **********
}
return 0

2007-02-26 16:43:18 · 2 answers · asked by Alex P 2

i was wondering if I have two arrays:

int array1 [15][15]
int array 2 [15][15]

and I want to create a 3rd array

int array3 [15][15]

such that each cell in array3 is the product of the corresponding cells in array1 and array2.

So,

array3 [1][1] = array1 [1][1] * array [1][1];
array3 [1][2] = array1 [1][2] * array [1][2];

etc.

is there an easier way to do this? for example is:

array3 = array1*array2;

a valid way to express this or do I need to creat a loop?

2007-02-26 16:24:49 · 7 answers · asked by cpine505 3

Here is my code:

PHP code on my page at process.php:



$req1 = $_GET['req1'];
$email = $_GET['email'];
mail("webmaster@plwebdesign.net", "Above All Question", $req1, "from: $email");

$thankyou = "Thank you for contacting us. We will respond as soon as possible.";
echo $thankyou;
?>


HTML Code on contact.html page:


Required Field:


Email:








2007-02-26 15:58:35 · 2 answers · asked by Tony l 1

So i want to send my friend a picture of the two of us that we took a while ago but I want to post it in a comment like i would with any other comment to get but am not sure how to go about it...help!? Please?

2007-02-26 15:48:01 · 2 answers · asked by o4_babygirl_o4 2

the output is "RADAR" still..pls help..

2007-02-26 15:47:12 · 2 answers · asked by pitong 1

I`ve selected a poem for the background on my pc but can`t fit in all the words,can i make it smaller?

2007-02-26 15:26:58 · 3 answers · asked by onlyme 5

I did it once but can't seem to remember how.

2007-02-26 15:20:59 · 5 answers · asked by latin_flavor24 1

Is this even possible? What's the code? Do I need to host the audio file online? Thanks for your help!

2007-02-26 15:14:43 · 6 answers · asked by Triple Nipple 1

I would like to create advertisement pamphlets for events and I would like a program that contains a wide range of professional images and fonts to use. Is there such kind of software I can buy? I just don't want to put simple clip art that will make the advertisement look tacky....n btw I have a tight budget. :)

thnx. :D

2007-02-26 15:07:58 · 5 answers · asked by sweetness_n_passion 2

I was asked this question in an interview for a computer security company.

Q. How can you multiply by 7 without using a multiplication operator?

I said, "By adding the number 7 times in a loop.". He laughed and said, "I want a better answer." I couldn't figure out.

Any one can crack this?

2007-02-26 15:00:12 · 3 answers · asked by Anonymous

Also, I'm searching for a microcontroller with 18 pins (both sides) similar to the PIC16f628 that can be programmed with BASIC by dumping a .hex file into it. What are very similar models that can be bought at stores like fry's, radio shack, and other electronic store and not just online.

2007-02-26 14:53:34 · 3 answers · asked by russianfool 3

2007-02-26 14:52:58 · 4 answers · asked by THANH N 1

I know you can use the object.Point method for a pictureBox, but doesn't work with a ImageBox.

2007-02-26 14:36:22 · 1 answers · asked by Tommy S 2

I am creating an HTML page with a background color. When I try to print the page, the background color does not. Does anybody know the code to print the background color in HMLT?

2007-02-26 14:27:15 · 1 answers · asked by buby 2

i have looked all through these q&a's and nothing is working for me, here is what i got

on (rollOver)
{
if (_root.link != 1)
{
gotoAndPlay(getProperty(this, _target) add ":s1");
} // end if
}
on (releaseOutside, rollOut)
{
if (_root.link != 1)
{
gotoAndPlay(getProperty(this, _target) add ":s2");
} // end if
}
on (release)
{
if (_root.link != 1)
{
if (_root.link)
{
gotoAndPlay(_root["item" add _root.link] add ":s2");
} // end if
_root.link = 1;
} // end if
}

where do i add my link?

2007-02-26 14:20:32 · 5 answers · asked by saab374 2

Please help me write this program. where do I put the formula.



Project 4 : This program will calculate the interest rate and monthly payment for
a loan of a 30 year timespan from the user.
****************************************************************************************/

#include
#include

using namespace std;
int main ()

{
double mortgage_amount; //This will be the mortgage amount that the user enters
double interest_rate; //This will be the interest rate that the user enters
int t_Span = 30; //This is the timespan that the loan is defaulted to the user at
double monthly_payment; //This variable will output the monthly payment over the defaulted
char YesNo = 'Y';

do //In order to allow my user to to re-enter date, I must have a loop

{
cout << "Enter mortgate amount. Press Return";
cin >> mortgage_amount;
cout << "What is interest rate o

2007-02-26 14:09:55 · 1 answers · asked by Anonymous

Ok I've installed it but it keep poping up with a series of warnings, I found something on the internet that sadi I need to change the permissions to 755??? help!

2007-02-26 14:01:44 · 1 answers · asked by Ferret 4

I want to insert a button in my Access database (next to the email address field that I created) that says "email to" and it will open outlook and insert the selected email address into the "to" field in outlook.

I know you can do it, anybody know how? (Vis. basic?)

2007-02-26 13:55:35 · 1 answers · asked by Anonymous

The idea is about Education in the univesities. very good one.

2007-02-26 13:53:42 · 1 answers · asked by Nablus 1

0

hi every body hope everybody had good weekend designing on a website and have just got the hang of using macromedia dream weaver and this is wat i wanna know how do i add background music

2007-02-26 13:46:37 · 2 answers · asked by sean m 1

fill the screen with character alt-178 entering clockwise

2007-02-26 13:25:05 · 3 answers · asked by jake 1

like when the mouse goes over the word, you can click the word and it'll take u to the website. Is there some kind of code for this??? like for myspace???

2007-02-26 13:22:12 · 3 answers · asked by sawc_10 3

fedest.com, questions and answers