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

2007-02-14 19:42:02 · 16 answers · asked by shadab s 1

How I can do this?
I want when my my friend clicks on the link my home page opens...

Thanks in advanced!!

2007-02-14 19:24:30 · 2 answers · asked by Vi 1

Any good websites give free online graphic courses for Photoshop and Illustrator?

Regards,

Rei Elk

2007-02-14 18:48:05 · 2 answers · asked by Rei! 2

0

How do I put an image in the background

thanks..

2007-02-14 18:38:20 · 7 answers · asked by Vi 1

i want to install unix / telnet in my windows XP system. I like to know how i can do that and what and all the tools i require for that. I request to send me some details about that...

2007-02-14 18:23:07 · 6 answers · asked by rajesh t 1

I want to use a clients IP address to find where they are requesting from so that I can dynamically arrange page content to make it easier to find what they want and push less important stuff out of focus. Im sure you've seen something similar before.
Right now I have a PHP script that I wrote which captures the IP and stores it into a variable named "ipAddr". I can explode it into octects or keep it as a 32 bit value. And if needed i can write it to a .txt file, but I dont want to do this because I have no use for the file once the user leaves.
What IM looking to find out is what do I do with this variable to get geo info from it? Im aware of services that do this for a fee or do it if you type in every IP into a text field on their site.... but I need to be able to send out just the "ipAddr" variable and get beack just the [ city, state, zip, latitude, longitude ] . If I can get that info into a javascript variable (thru server or direct from source) then I'll be golden .

2007-02-14 18:19:46 · 2 answers · asked by bonesawosu 2

2007-02-14 18:10:26 · 11 answers · asked by Anonymous

text file is the identity of the scanned fingerprint. This text file will be uploaded in a database.

2007-02-14 17:58:42 · 2 answers · asked by Master YoH 2

I have to calculate the total by applying the 'SUM' formula.This is possible only when text is removed from the cell or cells.(In this case certain currency symbol is associated with the number in each and every cell after the data is exported from 'Microsoft great planes'.Please note that there are multiple cells the verticla format and each cell contains both text and numbers

2007-02-14 17:57:58 · 5 answers · asked by joseph m 1

If there is any programming to be done, please provide some codes. I am hopelessly lost here!!
Once I select the data (by ticking it in excel) The selected information should be transferred into the word document.

No cutting and pasting should be required.

2007-02-14 17:25:02 · 3 answers · asked by sassy 1

Hello, you either have JavaScript turned off.

2007-02-14 17:18:18 · 3 answers · asked by Anonymous

2007-02-14 17:13:58 · 1 answers · asked by DREAM BOY 1

I'm having a problem reading the characters I broke down into bits. Basically I'm trying to break the the character array down bitwise and put it back together (this is all part of a grander project I'm working on). I've discovered that it seems to be writing fine, but converting it back into a character string has given me complications.

int main() {
char input[10], output[10];
int bits[10][7];

cout<<"What 10 character string should I learn? ";
cin>>input;

for(int i=0; i<10; i++) {
for(int j=0; j<7; j++) {
bits[i][j] = input[i] & 1;
input[i] = input[i] >> 1;
}
}

for(int y=0; y<10; y++) {
for(int u=0; u<7; u++) {
output[y] = output[y] | bits[y][u];
output[y] = output[y] << 1;
}
}

for(int h=0; h<10; h++) {
cout< }
return 0;
}

Any suggestions? Thanks.

2007-02-14 16:54:44 · 1 answers · asked by Harb Frame 3

7

2007-02-14 16:43:36 · 4 answers · asked by Raghunath R 1

all links for converter are welcome!

2007-02-14 16:11:07 · 2 answers · asked by ultimate_spinz 3

2007-02-14 15:51:41 · 7 answers · asked by raman 1

I have this code to find the smallest factors of any number that is inputted but I need to know how to get it to print an interger only once. ex. if I put in 120 I get 2,2,2,3,5. But I only the output to show 2,3,5 someone please help!!


import javax.swing.JOptionPane;

public class Exercise4_16 {
// Main method
public static void main(String args[]) {
// Prompt the user to enter a positive integer
String intString = JOptionPane.showInputDialog(
"Enter a positive integer:");

// Convert string to int
int number = Integer.parseInt(intString);

// Find all the smallest factors of the integer
System.out.println("The factors for " + number + " is");
int factor = 2;
while (factor <= number) {
if (number % factor == 0) {
number = number / factor;
System.out.println(factor);
}
else {
factor++;
}
}
}
}

2007-02-14 15:42:39 · 2 answers · asked by Fresh Java meat 1

Hi there,

I want to edit the following website, which is built in flash.

http://www.theribosome.com

I want to put the text Out of the central boxes on every page. Also some flash images are not working at their places. How can I get them work?

Would anyone tell me please how can I do this?
Any help will be highly appreciated.
Regards
Kamil

2007-02-14 15:11:11 · 3 answers · asked by kashif414 1

what is the best way to start and learn sap BASIS

2007-02-14 14:48:17 · 3 answers · asked by Anonymous

I have been programming for a little while (2 years or so) and I only know a couple languages. I have been wondering for a while how you would program something so that it always runs the same speed on any computer all the time (for instance, all games nowadays don't run faster on faster computers). I have tried googling but have been unable to figure it out. I know about "delay" type statements that basically just eat up a certain amount of processor operations, and ones that delay for a certain length of time, but without knowing how long it took for operations between delays this would not help. I also know of time classes that allow you to measure time, but only to the nearest second (I assume from an internal clock). Maybe I would need a class that allowed to nearest milisecond? Seems like it would be really tricky to implement...

If you know, please let me know :) and if it's too complicated or something to explain here then the broad stroke or a reference is fine

2007-02-14 14:23:05 · 3 answers · asked by Anonymous

So heres my myspace- http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&friendid=14503876
i was wondering if there was anyway to put a marquee behind the yellow table, like on the light blue?
i know the code to do a marquee, but is there anything special i need to add to it to make it go behind the yellow table?
its a div profile by the way.
THANKS!~

2007-02-14 14:20:17 · 2 answers · asked by Anonymous

2007-02-14 14:03:54 · 1 answers · asked by Anonymous

2007-02-14 13:53:52 · 6 answers · asked by bhaynes2005 2

I am making web site with the menu on the left side,it contain about 50 items.(Links to 50 pages). Is it any way I can create one page or some kind include file in javascript? So if I have to make changes to these items I can only change one main page with the menu and it will automatically update all 50 pages and I don't have to go to every 50 pages and change it ? I have it in html tables. If I can do it what should I change?I can only use javascript or java with that free hosting.

2007-02-14 13:49:28 · 4 answers · asked by Nata 1

The user must be able to enter a string of any amount of characters and the output must count only one specific character. Thank you.

2007-02-14 13:47:46 · 3 answers · asked by Bernard 2

like without downloading

2007-02-14 13:14:09 · 2 answers · asked by yucksoup2007 1

fedest.com, questions and answers