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

Programming & Design - January 2007

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

I need this to look like the "my computer" icon, but when clicked, opens a sound file. It can not display a command prompt window. I would like to have the player not be visible on the computer, but that is not to important.

2007-01-23 11:55:25 · 2 answers · asked by Fork.bat 1

Have tried everything but can't do it. I remember though that in a previous version of word 2003 I could do it.

2007-01-23 11:46:22 · 2 answers · asked by MCM 3

2007-01-23 11:36:33 · 2 answers · asked by Myra 4

2007-01-23 11:25:40 · 2 answers · asked by Anonymous

I've been trying to find one and can't...

2007-01-23 11:16:54 · 3 answers · asked by Sunshine.Ragdoll 1

2007-01-23 11:16:47 · 1 answers · asked by ddaboue 1

loopback address 127.0.01, what is mean by loopback and how does it work, please show me some example, thx!

2007-01-23 11:04:11 · 4 answers · asked by lin 1

I am looking to start a wiki on the home buying process with how-tos, industry terms, etc. I like the look and layout of wikipedia, and I know how to use that. Any ideas?

2007-01-23 10:59:25 · 3 answers · asked by yigh 1

I am a web designer. Give some sites asking websites to create online

2007-01-23 10:55:05 · 3 answers · asked by jasmine j 1

i've never done this before, but i'm pretty good with a computer, and am creative. i was just wondering if i need a certain program to do this, or if i can just use paint or word?

2007-01-23 10:45:00 · 6 answers · asked by Jamie Lynn 3

get me web pages please!!!

2007-01-23 10:29:20 · 3 answers · asked by bunny 2

I want the IP address so I can look up thier geographic location (which I also dont know how to do). Once I know where the request is coming from I can dynamically build the page to be more personalized for the user. I know I need to run this server-side, and I know that the server knows where the page is being requested from-- but I only know client-side languages, so I need help. I need the IP address for a couple different scripts I plan to write for the site Im making. So I really need to figure out how to get it. I'll eventually need to format the IP address after its pulled in order to use it, but for now I'll take it any way I can.
If you can help me then please leave me an answer or email me (joseph.181@osu.edu) . That's the account I actually use. Any help is appreciated.

-Aaron

2007-01-23 10:16:13 · 2 answers · asked by bonesawosu 2

0

how can you use this for a magic SQ....
int main(int argc, char* argv[])

thank you.
from australia

2007-01-23 09:32:51 · 6 answers · asked by Romeo 1

I have a contact form setup and when a user hit's submit, I need to send (via POST) to SalesForce.com and the data needs to also send to my thank you page so that I can send out auto-responses and lead information.

Is there a way to post one form to two pages? Or can someone come up with a good workaround?

PHP or Javascript please.

Thanks

2007-01-23 09:10:46 · 2 answers · asked by Twister_Mc 1

i studied C++ and 3ds max and i'm good at them, now i need to understand Direct3D or OpenGl to start developing 3D applications, which one do you think i should start with and why?
what is the defferences?
which one have better future in quality and wider usage?

2007-01-23 09:00:45 · 2 answers · asked by Default 3

Palindrome algorithm in c or c++,can you illustrate the general algorithm of palindrome or could you give me site to study about palindrome code or program. thnx u.

2007-01-23 08:49:34 · 4 answers · asked by erwin 3

I got a html source code from a website to set up a page on myspace, but i typed the code in any text feild as myspace said to do and nothing about my page changed. Can someone give me detailed instructions on how to set up a new page with html, please?

2007-01-23 08:34:34 · 7 answers · asked by Ahhh....Me Time 4

I need one like www.whatever.com the one I have now www.freewebs.com/outdoorxtreme, I'm trying to attach the Google adsense links on it to get some extra income but I cant get any traffic to this one because of the wierd name... Please help ASAP

2007-01-23 08:16:33 · 6 answers · asked by boxer_lover 1

how can we know our computer system is idel ? if posible then give code for visual basic 6.0 and you don't have then purchase from me ?

2007-01-23 08:15:05 · 7 answers · asked by rikin15111982 1

Hi everyone,
Can any of you help me identify this font. URL below
http://www.mawson.com/Valley.jpg

2007-01-23 08:08:36 · 5 answers · asked by Anonymous

2007-01-23 08:07:09 · 7 answers · asked by rajkumar c 1

public class TicTacToe {


public static void main(String [] args){

char x[][]=new char[3][3];
int turn=0;
char computer='*';
char human='*';
//TicTacToe TTC = new TicTacToe();


Move(x,HumanLetter(),ComputerLetter(computer,human),turn,WhosTurn(turn));

System.out.println(turn);




}



public static char HumanLetter(){

System.out.println("What would you like to be X or O?");
char human=Console.readChar();

if (human=='o' || human=='O'){
return human='O';
}
else if (human=='x' || human=='X'){
return human='X';
}

System.out.println("Entry Invalid");
return 0;


}
public static char ComputerLetter(char computer, char human){

if (human=='X'){
return computer='O';
}
else if(human=='O') {
return computer='X';
}

return 0;

}


public static boolean WhosTurn(int turn){
boolean HumanTurn;
if (turn%2==0){
HumanTurn=true;
}
else {
HumanTurn=false;
}
//turn++;
return HumanTurn;

}


public static void Move(char [][]x, char human, char computer,int turn, boolean HumanTurn)
{
if (HumanTurn==true){
System.out.println();
System.out.println("Where do you want move");
System.out.println("Choose from Box Spaces 1 - 9");
int space=Console.readInt();

InsertValue(space,x,human);

NewPrint(x);
turn++;
WhosTurn(turn);
CheckIfWon(x,human,computer);
}
else if(turn == 9){
Draw();
}
else if(HumanTurn==false){
CompMove(x,human,computer,turn);
//create the AI FUnction here
}
Move(x,human,computer,turn,HumanTurn);

}

public static void CompMove(char x[][], char human, char computer,int turn){
if(x[1][1] != human){
x[1][1]=computer;
}
else if(x[0][0] != human){
x[0][0]=computer;
}
else if(x[0][2] != human){
x[0][2]=computer;
}
else if(x[2][0] != human){
x[2][0]=computer;
}
else if(x[2][2] != human){
x[2][2]=computer;
}
else if(x[0][1] != human){
x[0][1]=computer;
}
else if(x[1][0] != human){
x[1][0]=computer;
}
else if(x[1][2] != human){
x[1][2]=computer;
}
else if(x[2][1] != human){
x[2][1]=computer;
}
turn++;
CheckIfWon(x,human,computer);
Move(x,HumanLetter(),computer,turn,WhosTurn(turn));

}

public static char InsertValue(int space,char x[][], char t){

if (space==1){
return x[0][0]=t;
}
else if (space==2){
return x[0][1]=t;
}
else if (space==3){
return x[0][2]=t;
}
else if (space==4){
return x[1][0]=t;
}
else if (space==5){
return x[1][1]=t;
}
else if (space==6){
return x[1][2]=t;
}
else if (space==7){
return x[2][0]=t;
}
else if (space==8){
return x[2][1]=t;
}
else if(space==9){
return x[2][2]=t;
}
else {
System.out.println("Invalid Entry");
return 0;
}
}

public static void CheckIfWon(char x[][], char computer, char human){
if (x[0][0]==computer && x[0][1]==computer && x[0][2]==computer
|| x[1][0]==computer && x[1][1]==computer && x[1][2]==computer
|| x[2][0]==computer && x[2][1]==computer && x[2][2]==computer
|| x[0][0]==computer && x[1][0]==computer && x[2][0]==computer
|| x[0][1]==computer && x[1][1]==computer && x[2][1]==computer
|| x[0][2]==computer && x[1][2]==computer && x[2][2]==computer
|| x[0][0]==computer && x[1][1]==computer && x[2][2]==computer
|| x[2][0]==computer && x[1][1]==computer && x[0][2]==computer)
{
System.out.println("Computer has won the game");
}
else if (x[0][0]==human && x[0][1]==human && x[0][2]==human
|| x[1][0]==human && x[1][1]==human && x[1][2]==human
|| x[2][0]==human && x[2][1]==human && x[2][2]==human
|| x[0][0]==human && x[1][0]==human && x[2][0]==human
|| x[0][1]==human && x[1][1]==human && x[2][1]==human
|| x[0][2]==human && x[1][2]==human && x[2][2]==human
|| x[0][0]==human && x[1][1]==human && x[2][2]==human
|| x[2][0]==human && x[1][1]==human && x[0][2]==human){
System.out.println("You have won the game");
}
}

public static void NewPrint(char [][]x){

System.out.println();
System.out.print(" " + x[0][0] + " " + x[0][1] + " " + x[0][2]);
System.out.println();
System.out.print(" " + x[1][0] + " " + x[1][1] + " " + x[1][2]);
System.out.println();
System.out.print(" " + x[2][0] + " " + x[2][1] + " " + x[2][2]);

}
public static void Draw()
{
System.out.println("The Game Has Ended in a Draw");
}

}

2007-01-23 07:43:59 · 1 answers · asked by Anonymous

Can someone show me how to repeat records from a table without using Dreamweaver. Everything I find on google about repeating regions relates to Dreamweaver.

What I'm wanting to do is pull everything from a table in my DB. Then I will be putting those fields in a table on my page. Let's say the table is 2 rows and 4 columns. The first row is a header. The second row is where the returned recordset fields will go (in each of the 4 columns in the second row. Now, let's say there are 6 records in the DB table which have been returned by the recordset. I want those six records to be placed into the table on
the asp page. How do I repeat the second row?

I really appreciate any help you guys can offer.
Thanks!

2007-01-23 07:15:46 · 1 answers · asked by UBigDummie 1

I'm editing my website and it says that password protection per webpage is only available "on the UNIX platform". (for hosting customer's using the website's setup system called ImageCafe) What does this mean?

2007-01-23 06:36:39 · 4 answers · asked by ♫ ∫aoli 4

2007-01-23 06:01:09 · 5 answers · asked by rileston 1

My mum has taken over two franchises and I am looking for a decent computer programme to design posters, menus, brochures, etc.

Can anyone recommend one to me which is easy to use.

I do have good computer knnowledge but just don't know of many programmes which are specifically for this.

2007-01-23 05:46:09 · 13 answers · asked by Anonymous

embarq is my web site so should i stay on 6.0 and not hurt my computer . i use the 7 and i could not get on any site so i think i need help ty
darla b
]

2007-01-23 05:41:25 · 2 answers · asked by darla b 2

I copied and pasted my old resume, made in Clarisworks, into a Word document. It looks perfect, but cannot be edited! The text appears in a box which can be moved around, but inside the box the text is frozen. I've had success with opening the old resume with Mac link, but all the formatting is gone. Any suggestions?

2007-01-23 05:37:14 · 1 answers · asked by Diana E 1

fedest.com, questions and answers