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

Programming & Design - September 2006

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

2006-09-05 23:28:01 · 2 answers · asked by Sudbala 1

can someone plz tellme the html codes for adding html codes in my website...
as in adding html codes inside the site

2006-09-05 23:24:31 · 6 answers · asked by Anonymous

I learned the basic of database theory. My teacher asked me what’s the different between File and Table? Please explain in simple and logic answer, thanks! 10 pts.

2006-09-05 23:19:44 · 3 answers · asked by NR 2

its very URGENT.....pls..help me out..!
wen i try to play swf it does in a PSP version 2.7 but wen i hav a swf which contains any flv, it fails to open or it does not.. is there any other way to open a FLV file in PSP or what can be done to overcome...it....? pls...help me..!

2006-09-05 23:16:35 · 1 answers · asked by mithra_universe 1

2006-09-05 23:13:47 · 2 answers · asked by Sudbala 1

Hello all
can any one of you give me the code of a program which can save the data to a file as a picture in C++, javascript, VBscript or assembly language.
If you dont have the code but have the program please let me know about ii
Regards.

2006-09-05 22:23:08 · 2 answers · asked by rashid_6mehmood 2

I need reliable products with strong service in remote areas.

2006-09-05 22:20:01 · 1 answers · asked by Anonymous

I have information saved on a WORD file but I need to save it in EXCEL so that I can minipulate the work & do sorts. When I copy the info across to EXCEL, all the information only gets copied to the first coulumn instead of seperating it into other columns.

Thanks A Lot

2006-09-05 21:49:08 · 7 answers · asked by Claude 6

I am building my site with dreamweaver for my art store this couple of weeks. I am thinking about add a page for my visitors to send ecard to their friends and family to increase my traffic. I don't have problem design the layout for the cards with photoshop, but can anyone tell me where I can find the information about how to write the html code to send the e-card from a site?( like yahoo greeting page)
Thank you very much!

2006-09-05 21:33:38 · 1 answers · asked by jian l 1

How can I correct the same and get it in ALPHABETICAL order without retyping them all over again.
Can you please help me ? URGENT !!

2006-09-05 21:18:36 · 7 answers · asked by shenoy 1

2006-09-05 20:25:03 · 7 answers · asked by simi s 1

2006-09-05 20:22:43 · 2 answers · asked by J S 2

im looking for a change on xi

2006-09-05 20:20:41 · 1 answers · asked by ram m 1

I have Spa Mud to sell. How do I get my own website, where should I go to get it, and what should I keep in mind? Any ideas or info?

2006-09-05 17:55:30 · 4 answers · asked by BadGirlGimpy 3

How do you get a picture to be black and white except for a few things in it? *exp: a picture of a girl holding a flower and the whole picture be b&w except for the flower?? Help please:)

2006-09-05 17:38:15 · 5 answers · asked by Anonymous

Need to locate the cookie file. Most likely need to delete some cookies. Also, what setting is advisible - first party or 2nd party, or 3rd party. It may be everyone's partying on my laptop!
Also, where is the cache file and list, may have the same disgusting stuff there too!

2006-09-05 17:28:01 · 4 answers · asked by regwoman123 4

Many people have told me the key to keeping up with user's needs is to make programs flexible, so changes can be made easily. Programmers, how do you make your programs flexible (easier to make changes)? Thanks a bunch!

2006-09-05 16:52:49 · 1 answers · asked by GirlsRGamers2 7

I'm trying to print thru a crystal report object, which calls data from an access db, and then clear the database after its done. the problem i have is that before the crystal report object can load and print, the lines of code that execute the clear are implemented and so when the report prints it's blank.
what can i do to fix this issue?
heres the process:
1) insert into db
2) load crystal report
3) print from crystal report (via destination printer)
4) clear database ( via rs.delete)

2006-09-05 16:49:03 · 1 answers · asked by solomon d 2

hey jus help me with this..... sometimes when i play GTA san andreas on my PC it slows down and at times even hangs.... this problem continues even if i reload the game.... and some times it just runs fantastic....i dont get if its a hardware problem then it should have been a permanent one... but this thing occurs sometimes... i dont get it.....pls help me....

Is there any other way available(i meant the blink software) to run PS2 games on my PC.... whats an emulator and will that help... if u ll have any software that could do it jus let me know... ya and one more thing is the PSP version same as PS2 one, thats becoz i heard someone sayin that the PSP version will run on normal PC s without any problem....what do u ll say

2006-09-05 16:22:00 · 9 answers · asked by Funtooshh 2

We all have seen the moving pictures (some body's picture that moves), But is there any body who know how to make one?

2006-09-05 16:04:25 · 5 answers · asked by Mahan 2

I had a tech at a computer retail store tell me this to be true, and a friend of my daughters say it is not true. The friend is in the field and manages computer systems for fortune 500 corporations. I dont know what her job title is, sorry about that.

2006-09-05 15:54:33 · 6 answers · asked by pjs1951 1

i want to make a binary program that a computer can read, or input binary data to make a simple program

2006-09-05 15:48:59 · 4 answers · asked by whitewingjek 3

import java.io.*;

public class slope extends Object
{
public static void main(String[] args)
{

try
{
BufferedReader myReader =
new BufferedReader(new InputStreamReader(System.in));

// Prompt the user for x and y coordinates for the
// first point and read them in.
System.out.println( "Enter x coordinate of the first point : ");
string input = myReader.readLine();
double x1 = Double.parseDouble( input );
System.out.println( "Enter y coordinate of the first point : ");
string input = myReader.readLine();
double y1 = Double.parseDouble( input );
// Prompt the user for x and y coordinate for the
// second point and read them in.
System.out.println( "Enter x coordinate of the second point : ");
string input = myReader.readLine();
double x2 = Double.parseDouble( input );
System.out.println( "Enter y coordinate of the second point : ");
string input = myReader.readLine();
double y2 = Double.parseDouble( input );
double lineSlope = (x2 - x1) / (y2 - y1);
System.out.println( "The slope of the line is " + lineSlope);
}
catch(Exception e)
{
System.out.println("bad input");
System.exit(1);
}




// End main
}
}

2006-09-05 15:43:57 · 3 answers · asked by mark79_24 1

I've looked everywhere I could think of, and can't figure it out....

2006-09-05 15:26:36 · 7 answers · asked by bigmike1119 1

the greatest common devisor of two integer

2006-09-05 15:22:32 · 3 answers · asked by joechelbasti1428 1

How do you keep up with the changing needs of the user, or how to keep your programs more user-friendly? Thanks!

2006-09-05 15:17:14 · 2 answers · asked by GirlsRGamers2 7

Ok, so im writing books- and my spellcheck doesnt work. i have it programmed to work, and the options are set, but say if i type in this: "jhfnjs fjhs" it says that its a word. There's no little red underlining under the mispelled word. Or say if i type in a fictional name "Juriyala" for example, it says its right, when i know for a fact, it is not. So is there anyone that can help me get my spellcheck back!? i hate writing with no spellcheck- makes things alot harder! i even called the microsoft works number, and they didnt have an phone recorded options that help with microsoft word works. So can anyone help me?! please!!!

2006-09-05 14:10:43 · 2 answers · asked by Anonymous

**i just copied and pasted the ™ sign above**

2006-09-05 13:42:14 · 4 answers · asked by Anonymous

fedest.com, questions and answers