Bitcoin Forum
April 19, 2024, 12:37:12 AM *
News: Latest Bitcoin Core release: 26.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Free bit coin calculator  (Read 2495 times)
BitStick (OP)
Newbie
*
Offline Offline

Activity: 32
Merit: 0


View Profile
February 08, 2013, 05:57:19 AM
 #1

I wrote this so people can see how much (or little) you get paid for doing jobs

*note* its written using the free version of microsoft visual studio so you probably need .Net Framework installed. Its part of windows standard update, if its not installed just start windows update and look in optional installs.

Its just a very very simple program, based on $20 a bitcoin it converts your pay into a $ value and tells you how many times you need to do that job to earn $1 worth of bitcoin

eg 0.000096  =  $0.00192  and repeat job 520 times for $1

Download here
http://bitcoin.orgfree.com/BitcoinCalculator.rar

http://bitcoin.orgfree.com/BitCoinCalculator.PNG

Not sure if this free web host allows image hotlinking
If you can't see the image click here http://bitcoin.orgfree.com/BitCoinCalculator.PNG

If you have visual studio and you want to compile it yourself it only takes a minute to do.

Start a new windows form
add one button
two textboxes
one listbox

set the text in listbox1 to "20"
or add a line in form startup "listbox1.text="20"

add this code to the button
Code:
        ListBox1.Items.Clear()

        Dim BitCoinValue As Double = TextBox1.Text
        Dim JobPay As Double = TextBox2.Text
        Dim JobValue As Double = BitCoinValue / (1 / JobPay)
        ListBox1.Items.Add("$" + CDec(JobValue).ToString)
        Dim JobsPerHour As Double = 1 / JobValue
        JobsPerHour = Int(JobsPerHour)
        ListBox1.Items.Add("")
        ListBox1.Items.Add("Do this job " + JobsPerHour.ToString + " times to earn $1")

1713487032
Hero Member
*
Offline Offline

Posts: 1713487032

View Profile Personal Message (Offline)

Ignore
1713487032
Reply with quote  #2

1713487032
Report to moderator
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1713487032
Hero Member
*
Offline Offline

Posts: 1713487032

View Profile Personal Message (Offline)

Ignore
1713487032
Reply with quote  #2

1713487032
Report to moderator
1713487032
Hero Member
*
Offline Offline

Posts: 1713487032

View Profile Personal Message (Offline)

Ignore
1713487032
Reply with quote  #2

1713487032
Report to moderator
1713487032
Hero Member
*
Offline Offline

Posts: 1713487032

View Profile Personal Message (Offline)

Ignore
1713487032
Reply with quote  #2

1713487032
Report to moderator
Parazyd
Hero Member
*****
Offline Offline

Activity: 812
Merit: 587


Space Lord


View Profile WWW
February 08, 2013, 06:26:27 AM
 #2

I'll try to implement difficulty in this and make it able to do all kinds of calculations.
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!