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

Programming & Design - October 2007

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

2007-10-03 03:30:31 · 6 answers · asked by cameron.mitchell 2

i have 109 cards and in a reading 13 cards are laid down
you read the 13 cards as each position has a repesective answer as i was wondering would it cost me much to get somebody to design an automated reading program on the web

2007-10-03 01:19:52 · 5 answers · asked by valiant 1

do you use notepad to write a css?and if so is the extension .css? like xhtml? Im just starting and am unsure!

2007-10-03 00:11:13 · 6 answers · asked by Mrs Moo 2

I am working a project based on password authentication in linux.. but i cant use a getch() fuction in linux..So please help me how can i get * while i typing any word as in input......

2007-10-02 22:58:35 · 3 answers · asked by Thunder 1

How to I put this:

function displayAll()
{
for (var i=0; i {
document.write(stateName[i] + " entered the Union in " + stateYear[i] + ".
\n");
}
}

into an ordered list?

Thanks!

2007-10-02 20:04:04 · 2 answers · asked by manchildstudio 2

I'm in a computer class. I know quite a bit about computers (more than her, I'm pretty sure). My teacher is annoying at times and makes it seem like she knows everything about computers, while she doesn't. What i need is to find something to do that would annoy her, cause her anxiety, or freak her out, but not to get kicked out of the class. Any ideas? be creative

2007-10-02 16:43:50 · 5 answers · asked by uh...yup 1

I need to write a macro I have about 800 work orders to check on and I need to write one that does Alt B, Tab, G, Alt+E, and then I have to click on next to go to the next work order there is no hotkey for that. Is there any possible way that I can make that macro so that I dont have to waste my time manually doing all the work?

2007-10-02 15:32:47 · 1 answers · asked by jimisrvrox 2

I have 1000 lines of data from A1:D1000.

A= Names
B= Values
C= Values
D= Y or N

For example how do I write the code to do this:

"If cell "D5" equals "N", delete row; EXCEPT IF A5 = NAME XX"

and keeps looping to row 1000.

2007-10-02 14:30:05 · 4 answers · asked by Lai L 2

I know there are cellphones that use the Linux OS but what else? The program is so customizable that I have to believe its used for other machines/tools than the computer.

Is Microsoft limited to the PC however?

2007-10-02 13:17:07 · 2 answers · asked by Velocity 1

2007-10-02 13:10:14 · 12 answers · asked by Tanae S 1

I have a text box in a program I'm writing that I need to become bigger so a user who's inputting text can see what they are doing.
Stats on the text box:
With Text1
.Text=""
.Scrollbars=2 'vertical
.Multiline=True
End With

Once the text reaches the end and wraps I want the Text1.Height to go up for visibility. How can I do this?

If ???? Then
Text1.Height = 300
End If

Later in Text1_LostFocus I'll change the height back...

But what would be the conditions for the program to realize that the text has wrapped?

PS I don't want to do string manipulation or font changing.. Thank you for your time!

2007-10-02 12:32:43 · 3 answers · asked by neofrog46307 2

I have trouble reading the home page because of the size of the fonts, etc. Is it possible to make the page larger?

2007-10-02 09:29:05 · 2 answers · asked by Jessie R 1

I have a .doc file with pictures that I would like to put on my web site for people to print-out exactly as it appears (not an html page).

I've considered making a .jpg but are there any other ways to do this.

Thank you.

2007-10-02 08:21:16 · 4 answers · asked by Lawrie W 2

So I have this program that deals with one dimensional arrays. I want to expand it to two with array[row][col] how can I do this?

#include
using namespace std;

int* getArray(int row);
void printArray(int* array, int row);

int main()
{
int row;
cout <<"Enter row length: ";
cin>>row;
int* array = getArray(row);
cout << "array in main" << endl;
printArray(array, row);
/*int* array2 = getArray();
cout << "array2 in main" << endl;
printArray(array2);
cout << "array in main" << endl;
printArray(array);
delete[] array2;*/
delete[] array;
return 0;
}

int* getArray(int row){
int *array = new int[row];
for ( int i = 0; i < row; i++ ){
cout << "Enter an integer: ";
cin >> array[i];
}
cout << "array in getArray()" << endl;
printArray(array, row);
return array;
}

void printArray(int* array, int row)
{
for ( int i = 0; i < row; i++ ){
cout << *(array+i) << " ";
}
cout << endl;
cout << endl;
}

2007-10-02 07:57:19 · 4 answers · asked by thenamelessrock 1

2007-10-02 07:14:39 · 1 answers · asked by laketha p 1

2. start
read customerRecord
perform discount ()
perform calculation ()
stop
perform discount ()
if quantityOrdered > 100 then
discount = .20
else
if quantityOrdered > 12 then
discount = .10
endif
endif
perform calculation ()
total = priceEach * quantityOrdered
total = total – discount * total
print total
return

2007-10-02 07:13:46 · 1 answers · asked by caleb 1

Yes, it sounds weird, but I want to create an ActiveX object inside of a webpage that can host an IE session. The reason for this is we are creating a web application that will contain two other web apps inside iFrames. The problem with this is that if those web apps are loaded in the same IE session, one of them will not work. (It's a limitation of the web app, and we don't have control over it.)

We could always modify the app so that one of them runs in another browser window (this will work), but it isn't ideal. The purpose of the app we creating is that it is a single view portal that makes navigation easier.

The only possible solution we've come up with so far is to host one of the web apps inside an ActiveX object and hope that it uses a new browser session. That will keep the instances separate, and allow them both to work (in theory). So, basically, I'm trying to find the code to create an ActiveX browser session inside another browser.

2007-10-02 05:57:55 · 1 answers · asked by BicMan11 2

Hi,
I'm trying to find the font used in the text from this link:
http://img337.imageshack.us/img337/6991/vlcsnap156555kl6.png
Or at least something similar. I've seen it around many times, but as is the usual case can't find it now I need it.
I believe it may be the same as the Prisoner Cell Block H font but not positive.
Anybody any idea?

Thanks guys

2007-10-02 05:15:34 · 10 answers · asked by masterbrown2002 3

what is search engine optimisation?

2007-10-02 04:56:35 · 13 answers · asked by cool l 1

2007-10-02 04:41:57 · 3 answers · asked by Anonymous

to hold like a banner then 2 columns under it, left side navigation, right side the main page, but i also need the links from navigation to open in the main, Can anyone help?

2007-10-02 03:46:30 · 1 answers · asked by ~*~AngelLvr~*~ 1

I'm trying to make an icon that's supposed to point to a blog. But I can't think of any image that can represent a blog. Can you help me with ideas?

2007-10-02 03:40:32 · 3 answers · asked by Anonymous

i have just bought a domain with http://www.telivo.com now do i buy and added hosting at £50 where do i go from here ??? i need to know do i log in to it or what do i do ? please help i am a lighting 4 weddings buisness

2007-10-02 03:34:53 · 4 answers · asked by james l 1

I want to create a custom background image for the entire index page of my site. I have an 800px by 800px .png file coded into the CSS.
#main-container {
background-image: url(/assets/images/800x800.png);
}

It shows up in Dreamweaver. It shows up on the internal site check browser... When I FTP the changes to my site, the background image does not show up.

Is this a CSS error on my behalf or a browser error I am not aware of.?

How do designers get those elaborate background images on their pages.

2007-10-02 03:31:30 · 4 answers · asked by rviano11 2

Hi to all Visual Basic 6 programmers: I am doing a project and i really need help.. i wanted to make it this way. when the form loaded the values on listbox sums up on a txtbox.?

to make it clear:
i wanted to have a program that will sum up all the numbers on the list box and automatically show the summed number on a textbox when the form loaded.. :) who can figure it out? any help will be appreciated.. i hope this questions helps other users too..

2007-10-02 03:21:54 · 1 answers · asked by ro_anne8 1

I am a graphic designer looking to apply myself to programming. I want to choose a language that will enable me to deliver web applications, and provide a solid foundation for the programming languages to come. However, I don't want to spread myself thin by trying to learn multiple languages at once - I want to choose one and learn more later.

Which is better for today, and the next 3 years? PHP, Javascript, or something I haven't mentioned? Opinions are nice, but please provide sound reasoning.

2007-10-02 03:16:04 · 8 answers · asked by Anonymous

please help i hate using freewebs advance tools wanted as long as its not editing scripts CSS codes etc...

2007-10-02 03:00:39 · 3 answers · asked by AnimeCrescent.DL.AM 1

I dont want to buy it as I am learning for my college project so can anyone tell me how to write computer programmes or better yet specifically tell me how to write a speech recognition programme? Arigato Gozaimasu

2007-10-02 02:38:21 · 2 answers · asked by Anonymous

hello folks i have implement a web application, the problem is that i don't know what to do exactly if you have any ideas or beutiful projects please tell me.

2007-10-02 02:21:34 · 4 answers · asked by omar_kababji 1

fedest.com, questions and answers