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

Programming & Design - March 2007

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

1. Describe six types of user interface controls and provide an example of how you could use each type in a data entry screen.

2. List and describe various types of output, including technology-based forms of information delivery.

2007-03-18 16:07:28 · 2 answers · asked by mohotbabe 2

2007-03-18 16:05:47 · 1 answers · asked by dennis e 1

I need a program where i can make tickets. i have to make ticket for this event we are having and i was wondering if there was a program that i could use and is simple to operate.

2007-03-18 15:43:31 · 2 answers · asked by its_me 2

Devics - Just One Breath

i need a mp3 url for this song.. but im so lost.. the one that i found only play half of the song not full song.. gosh like if u guys have this song url?? or can help me out?? plllllllllls? im so lost i really like this song. thank you.

2007-03-18 15:40:14 · 2 answers · asked by chinese_lil_bratty 1

I'm creating a program to calculate total hours worked, while taking out lunches, for my boss...seen here...

http://answers.yahoo.com/question/index?qid=20070318175500AA6pqfq&r=w

I pretty much have an idea of what to do now, but what code would I enter to set a certain value to a string? Also, where would I put that code in the overall code? I want to make the data like this...

1AM = 1
2AM = 2
3AM = 3
4AM = 4
5AM = 5
6AM = 6
7AM = 7
8AM = 8
9AM = 9
10AM = 10
11AM = 11
12PM = 12
1PM = 13
2PM = 14
3PM = 15
4PM = 16
5PM = 17
6PM = 18
7PM = 19
8PM = 20
9PM = 21
10PM = 22
11PM = 23
12AM = 24

That way, if someone entered 7AM - 4PM, it would take 4PM's 16, and take away 7AM's 7 from it, to equal 9. After that I would take an hour out for a lunch hour and I know it's something like IF mondaytotal > 9 -1 or something like that. If someone could help me out on the part with defining numbers with the AMs and PMs, and/or help me out with lunch part, it would be greatly appreciated!

2007-03-18 15:27:36 · 2 answers · asked by alphaaxl 1

I can not figure out how to find the prime numbers given to inputs. (For examply 1 and 100, I would want to find all primes between those numbers)

Here is what I have thus far:

Dim countShort As Short
Dim number1Short As Short
Dim nuber2Short as Short
Dim largeNumberShort As Short
Dim smallNumberShort As Short
Dim countShort As Short

number1Short = number1Textbox.Text
number2Short = number2Textbox.Text

If number1Short < number2Short Then
number1Short = smallNumberShort
number2Short = largeNumberShort
Else
number1Short = largeNumberShort
number2Short = smallNumberShort
End If

So that basically only finds wich number is larger, just in case the user enters the bigger number first.

2007-03-18 15:17:41 · 2 answers · asked by Justin 4

i have knowledge for coding it, but i need ideas for the game, like what things they can do? stuff like that? any ideas please let me no thanks..

2007-03-18 15:14:39 · 3 answers · asked by jamie w 2

2007-03-18 15:09:35 · 4 answers · asked by black_galjm 1

I know there is a code or something you want to delete off of a premade layout,
does anyone have an idea what it would look like??
ive even made a bulletin and none of the layout sites botherd to reply.
Thanks

2007-03-18 15:07:11 · 4 answers · asked by jolprex 1

How can I stop the AOL dialer from popping up on my screen all the time, in a simple manner?

2007-03-18 15:04:56 · 2 answers · asked by KEVIN BRYAN 1

Is there any way to get MySQL to run a series of Select statements that will yield quantity totals for one attribute based on multiple tuples...?

::example::
Table, Date, Store, Item Qty
Jan 2, 5, B, -4
Jan 3, 5, C, -3
Jan 3, 1, B, -1
Jan 5, 5, B, -3

I have a statement that will gives the total of item B from one store, but can't figure out a query that will give the total for item B sold by store 5 AND the total items sold by store 1....
Store 5, Item B, Qty -7
Store 1, Item B, Qty -1

2007-03-18 15:03:11 · 3 answers · asked by ? 2

2007-03-18 14:46:52 · 2 answers · asked by *~JeS~* 5

What kind of software should i use ?..i 've tried using Flash 8 but when i promote it to .gif, it doesn't have any movement ?... any suggestion or advice ?

2007-03-18 14:41:15 · 4 answers · asked by Raine 2

Need to learn how to design and implement a master page. Need simple step by step instructions. How to fit in grafic elements like logos & banner ads ?

2007-03-18 14:40:25 · 3 answers · asked by Ryce Queen 13 3

For some reason it takes the string but does not show any result for the string can anybody help?
#include
#include
#include
#include


using namespace std;
bool IsVowel(char c);


int main(int argc, char *argv[])
{
int VowelCount = 0;
cout << "Enter a string of text: " << endl << flush;
char c;

while (cin.get(c)) {
if (IsVowel(c))
VowelCount++;
}


cout << endl << endl;
cout << "There were " << VowelCount << " vowels" << endl;
return 0;
}



bool IsVowel(char c)
{
c = toupper(c);


switch (c)
{

case 'A': case 'E': case 'I':
case 'O': case 'U': case 'Y':
return true;
}

}

2007-03-18 14:00:34 · 2 answers · asked by Anonymous

WRITE 13
------------
20 AS A REDUCED FRACTION

2007-03-18 13:59:31 · 2 answers · asked by Shannon 2

I'm using Visual Basic 2005 Express, and I'm running into a little bit of trouble. I have this so far...

http://img169.imageshack.us/img169/4538/image1ew4.jpg

...and the only thing I want is the program to output the total for the whole week. Simple, so that the user can input hours the employee started, and finished work.

However, I'm having trouble with the whole AM and PM thing. Once I go to 1PM (changing from counting up, to down), my numbers get all messed up since it wouldn't just be counting like in military time, but go along with the 12 hour clock.

I also understand that after a time is entered for "In-Time" and "Out-Time" for a day, a new value must be created with those hours added up, even though it won't be displayed. And from there, I would take those newly created values, and add them up for the "Total Hrs.".

I was thinking about entering defining things such as this...

11AM = "11"
12PM = "12"
1PM = "13"

Not sure though...please help me =(

Thank you if you can!

2007-03-18 13:55:00 · 2 answers · asked by alphaaxl 1

Does anyone know why I get the error "failed to load XML file" on this site: http://veronabaseball.50megs.com/index.html ? It suppose to be a web calendar (coffee cup software) and it works on my own server, but I need it to work on 50 megs. Please help ASAP.

2007-03-18 13:47:35 · 2 answers · asked by Brandon14_99 1

0

does any 1 kno how 2 make skins on bebo??

2007-03-18 13:38:44 · 2 answers · asked by [d]aisha. like, duh. 2

2007-03-18 13:25:00 · 3 answers · asked by Joe 4

if u have ever seen those images that look all messed up and sometimee spixelated and wierd lines and all that mess
how would i make something like that?, please only answer if u know what im talking about

2007-03-18 13:24:32 · 1 answers · asked by x_w_05 1

How can I write a short program, like a batch file, that would automatically take me to yahoo and log me in.

2007-03-18 13:19:08 · 2 answers · asked by eltel2910 1

$username="pn_457871";
$password="********";
$database="pn_457871_database";
$host="sql1.phpnet.us";

$first=$_POST['first'];
$last=$_POST['last'];

mysql_connect($host,$username,$password);
@mysql_select_db($database) or die( "Unable to select database");

$query=INSERT INTO table VALUES ("$first","$last");
mysql_query($query);

mysql_close();
?>

It's connecting to the database, but not saving any results. The form (http://natedaweb.phpnet.us/radiopanel.html) has the right names for the text boxes (I think)

What's wrong?!?

2007-03-18 13:00:47 · 5 answers · asked by Christian_Dude 2

Everytime I put two scrollboxes on a page (myspace, myyearbook,etc.) they always end up under one another and I want to know how/if I can make them lay next to eachother.

2007-03-18 12:52:46 · 4 answers · asked by Anonymous

2007-03-18 12:52:04 · 2 answers · asked by spazzzz67 1

I have my picture in my 360 account , but I dont know how to make it my avatar. I had it once, but I unchecked the box to "no picture", now I want to add my picture back to it , but it will not let me check the circle for using 360 picture. Why? How do I do it?

2007-03-18 12:23:04 · 2 answers · asked by Anonymous

I have a website that used to work many years ago with an ancient version of Internet Exploder. One page of it doesn't work anymore because of some simple JavaScript thing that I don't understand.

If you go to http://www.geocities.com/larrywph and click on the "About Me" link, you will see a frame come up on the left with the first link in the frame saying "Home". The thing pointed to by that link ("babywindow.html") is supposed to come up on the right automatically, but does not until you click on "Home". I don't understand why not.

The JavaScript on that page is this short bit (to be continued):

2007-03-18 12:19:43 · 2 answers · asked by Larry 6

I have a Dell Dimension Desktop from around 2002-3 How do I get it to automatically adjust daylight savings time since the change?

2007-03-18 11:48:29 · 3 answers · asked by Bert 3

fedest.com, questions and answers