Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
dollar
- Page 1
Dollar Dragging Tech Market Down?
Community Center
16 Years Ago
by Brian.oco
…select foreign currencies against which they believe the
dollar
is likely to fair the worst. Critics also…rebounded nicely, albeit moderately since then. Historically, the
dollar
rises during periods of domestic economic strife. We’re… writing from an economic conference in Switzerland, where the
dollar
has “crashed” and Americans pay $500 for one…
A question about our dollar bill
Community Center
Geeks' Lounge
20 Years Ago
by cybergirl
… came out. I have a little question about our one
dollar
bill. And i was wondering what does it mean the… pyramid and the eye on the back of our
dollar
bill. And I don't know latin, what "novus…
Re: A question about our dollar bill
Community Center
Geeks' Lounge
20 Years Ago
by Atomica
… of the United States on the back of the one
dollar
bill. * Why a pyramid... an arguably un-American symbol? * Why… considerable influence to "brand" their symbology on the
dollar
bill. The "all-seeing eye" above the pyramid…
Re: A question about our dollar bill
Community Center
Geeks' Lounge
20 Years Ago
by jwenting
… office of engraving and printing (the guys who print the
dollar
) (yes, there is one) has the answer: [url]http://www…
Online identity auction selling credit cards for half a dollar
Hardware and Software
Networking
17 Years Ago
by happygeek
… sites is continuing to increase. It's a multi-billion
dollar
criminal industry and identities are becoming cheaper and easier to…
The million dollar Xbox
Hardware and Software
16 Years Ago
by newsguy
… be very lucky indeed to see anywhere near a million
dollar
pay day on this one.
make double values looks like 1.00 (dollar amount)
Programming
Software Development
15 Years Ago
by jnthn205
… need to know how to make the output display in
dollar
amount for example: 452323.00, and not 3344312.092389. Also…
Re: make double values looks like 1.00 (dollar amount)
Programming
Software Development
15 Years Ago
by gunjannigam
… need to know how to make the output display in
dollar
amount for example: 452323.00, and not 3344312.092389. Also…
Javascript dollar format issue
Programming
Web Development
15 Years Ago
by carlcarman
… having a problem with getting my output to display a
dollar
sign. I have the program running the way it is…
Re: Javascript dollar format issue
Programming
Web Development
15 Years Ago
by muralibobby2015
… having a problem with getting my output to display a
dollar
sign. I have the program running the way it is…
AWK print dollar amount without decimal point
Programming
Software Development
14 Years Ago
by spowel4
Can someone tell me how to print a
dollar
amount (i.e. 1140.95) as 114095?
Re: AWK print dollar amount without decimal point
Programming
Software Development
14 Years Ago
by spowel4
…'ve got most of this worked out except for the
dollar
amount and I think one other thing.
mysql- storing large dollar amounts
Programming
Databases
14 Years Ago
by fuston05
Having trouble storing
dollar
amounts in the thousands due to the "," that gets inserted once the number becomes 1, 000.00. Any advise?
Samba shared folder with dollar symbol
Hardware and Software
Linux and Unix
12 Years Ago
by RickCJ7
…\foldername$ . I can access all the other folders without the
dollar
symbol on the end. How do I get around that…
php function that will convert int or double/float to usa dollar currency
Programming
Web Development
12 Years Ago
by hwoarang69
… function that will convert int or double/float to usa
dollar
currency? so the output should be $num1 => 0.00…
Re: java text box dollar sign
Programming
Software Development
13 Years Ago
by stultuske
add the
dollar
symbol? you mean a.setText(a.getText() + "$"); or something?
Re: A question about our dollar bill
Community Center
Geeks' Lounge
20 Years Ago
by cybergirl
Hey jwenting, i check the website and according with the Bureau of Engraving and printing the pyramid symbolizes strength and duration. and Novus Ordo Seclorum means A new order of the ages, I thought it meant a new secular order :?:. Does it have to meanings? Thank you guys:confused:
Re: A question about our dollar bill
Community Center
Geeks' Lounge
20 Years Ago
by jwenting
Not quite sure without a dictionary (again :)) but given that the French word for century is siecle (sp.??) and is derived closely from Latin the translation as "ages" of the plural form Seclorum is probably accurate. I don't think the Romans even had a word with a meaning similar to the English "secular". Separation between…
Re: A question about our dollar bill
Community Center
Geeks' Lounge
20 Years Ago
by cybergirl
Thanks jwenting
Re: make double values looks like 1.00 (dollar amount)
Programming
Software Development
15 Years Ago
by jnthn205
ok one last question. Here is the code: [code] public double myAVG() { double sum = 0; for (i = 0; i < 1000; i++) { sum = sum + a[i]; } double avg; avg = sum / 1000; return avg; } public void myFlagged() { double ninetypercentavg; ninetypercentavg = 90 / 100;…
Re: make double values looks like 1.00 (dollar amount)
Programming
Software Development
15 Years Ago
by gunjannigam
Either make avg public or pass it from the main method where you might be calling your function myFlagged
Re: make double values looks like 1.00 (dollar amount)
Programming
Software Development
15 Years Ago
by jnthn205
awesome thanks alot
Re: Javascript dollar format issue
Programming
Web Development
15 Years Ago
by carlcarman
thanks I was so close. I appreciate your help.
Re: Online identity auction selling credit cards for half a dollar
Hardware and Software
Networking
15 Years Ago
by paulanderson154
This a Paul; I want collect knowledge about computer like programming, software, hardware and other like computer related course. There are programs and software that are available for download and purchase that combine years of computer repair courses.
Re: AWK print dollar amount without decimal point
Programming
Software Development
14 Years Ago
by rch1231
hello, Via awk I presume... echo 1140.95 | awk -F. '{ print $1 $2 }' -F tells it the field delimiter. But I have a feeling you are looking for something a little different. Can you post the actual line you are trying to parse and what the result should look like and I can do better.
Re: AWK print dollar amount without decimal point
Programming
Software Development
14 Years Ago
by rch1231
The lazy answer is get every thing else done and pipe it to the awk command I gave in my last answer. The only issue I see is if a "." was to show up somewhere else in the line. You could use Substitution Functions and substitute nothing for the period... Awk provides two substitution functions: sub() and gsub(). The difference …
Re: The million dollar Xbox
Hardware and Software
14 Years Ago
by samortan
I have got 2 , so does that mean I am millionaire, actually 2 millionaire
Re: The million dollar Xbox
Hardware and Software
14 Years Ago
by dra8ana
[QUOTE=samortan;1334273]I have got 2 , so does that mean I am millionaire, actually 2 millionaire[/QUOTE] Yeah, i am millionaire too!
Re: mysql- storing large dollar amounts
Programming
Databases
14 Years Ago
by smantscheff
Filter the "." before you insert it. You can replace the period by applying replace(): [CODE]INSERT INTO mytable myvalue VALUES (replace('1.000','.','')); [/CODE]
Re: mysql- storing large dollar amounts
Programming
Databases
14 Years Ago
by fuston05
I appreciate your advise. However this turned out to be a beginner's mistake. I was using number_format() "BEFORE" my insert statement. That was throwing the "," in there. I just took off the number_format(), and used decimal(10,2) and it works perfectly. Sorry. haha lesson learned :)
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC