Adblock breaks this site

[FREE]JBusiness Manager Tool[FREE]

Discussion in 'Digital Currency and Non-Game Sales' started by Fate1, Jan 10, 2012.

  1. Fate1

    Fate1 Apprentice
    Banned

    Joined:
    Apr 21, 2005
    Posts:
    773
    Referrals:
    2
    Sythe Gold:
    5
    [FREE]JBusiness Manager Tool[FREE]

    I saw someone created a program just like this but was selling it for a pretty ridiculous price on these forums. So I thought I'd create one just like it for free. It is created in 100% Java so should work on every single OS. So far not many features, but here they are:

    Features:
    Jtattoo HiFi Theme
    Extremely easy to use
    Customizable
    Add/Remove rows and columns.
    Calculates profits and statistics with all your trades.
    Can save/load your the table from a .SER file.

    What I want to add:
    Printing
    and no clue?

    Screenshots:

    [​IMG]
    [​IMG]
    [​IMG]


    Update v0.02:
    - Added an updater to the application. (Hopefully no need to DL the library everytime.)
    - Added update notes
    - Added horizontal scroll bar to the table (No more squishing)

    [​IMG]

    Download is below.

    Virus report:
    http://www.virustotal.com/file-scan...c61d7bac4ef7d0af6bf35e196b4eceb14c-1326249206

    Download:

    http://www.crazyandcoding.com/jbusinessmanager/jbusinessmanagertest.zip

    Source:
    www.crazyandcoding.com/downloads/jbusinessmanagersrc.rar
     
  2. Jeff

    Jeff Previously named: Jeff.

    Joined:
    Apr 16, 2011
    Posts:
    11,444
    Referrals:
    26
    Sythe Gold:
    3,205
    Two Factor Authentication User MushyMuncher Christmas 2014 Christmas 2015 Easter 2016 Sythe's 10th Anniversary Pizza Muncher Homosex Extreme Homosex SytheSteamer
    Lawrence
    [FREE]JBusiness Manager Tool[FREE]

    The virus scan link didn't link to a scan for me.

    This definitely does look promising although I'd like to see another virus scan for it.
     
  3. Fate1

    Fate1 Apprentice
    Banned

    Joined:
    Apr 21, 2005
    Posts:
    773
    Referrals:
    2
    Sythe Gold:
    5
    [FREE]JBusiness Manager Tool[FREE]

  4. Emperor Nero

    Emperor Nero Hero
    $5 USD Donor New

    Joined:
    Jun 11, 2010
    Posts:
    7,159
    Referrals:
    2
    Sythe Gold:
    93
    Discord Unique ID:
    143107588718854144
    Sythe's 10th Anniversary Heidy
    [FREE]JBusiness Manager Tool[FREE]

    Any chance of releasing the source for this? I would like to get back into learning Java and this would be pretty cool to learn to do. If not that is fine too, good job on releasing it.
     
  5. Fate1

    Fate1 Apprentice
    Banned

    Joined:
    Apr 21, 2005
    Posts:
    773
    Referrals:
    2
    Sythe Gold:
    5
    [FREE]JBusiness Manager Tool[FREE]

    Of course I can! I'll upload it right now.
     
  6. Silver

    Silver Previously known as: Silver_J
    Banned

    Joined:
    Dec 9, 2011
    Posts:
    2,046
    Referrals:
    0
    Sythe Gold:
    0
    [FREE]JBusiness Manager Tool[FREE]

    Just checked virus scan, it's clean.
    Nice release. Thumbs up for that :)
     
  7. Fate1

    Fate1 Apprentice
    Banned

    Joined:
    Apr 21, 2005
    Posts:
    773
    Referrals:
    2
    Sythe Gold:
    5
    [FREE]JBusiness Manager Tool[FREE]

  8. The Black Tux 2

    The Black Tux 2 Active Member

    Joined:
    Aug 27, 2011
    Posts:
    123
    Referrals:
    0
    Sythe Gold:
    0
    [FREE]JBusiness Manager Tool[FREE]

    I'll download when I get home, in about 4 hours :D
     
  9. Fate1

    Fate1 Apprentice
    Banned

    Joined:
    Apr 21, 2005
    Posts:
    773
    Referrals:
    2
    Sythe Gold:
    5
    [FREE]JBusiness Manager Tool[FREE]

    bump!
     
  10. wyn10

    wyn10 Active Member

    Joined:
    May 19, 2006
    Posts:
    106
    Referrals:
    0
    Sythe Gold:
    0
    [FREE]JBusiness Manager Tool[FREE]

    Looks through the source. Sexy.


    You should add support for powerleveling services.
     
  11. iJava

    iJava .Previously known as RSGoldRush
    $200 USD Donor New

    Joined:
    Nov 21, 2011
    Posts:
    1,204
    Referrals:
    11
    Sythe Gold:
    491
    Discord Unique ID:
    220055593568829441
    [FREE]JBusiness Manager Tool[FREE]

    Haha nice job, guess you just killed mine. I don't know why you added a virus scan, any java programmer would know that it doesn't make a difference.
     
  12. Fate1

    Fate1 Apprentice
    Banned

    Joined:
    Apr 21, 2005
    Posts:
    773
    Referrals:
    2
    Sythe Gold:
    5
    [FREE]JBusiness Manager Tool[FREE]

    Yeah than you get the people who cry for it :p.
     
  13. iJava

    iJava .Previously known as RSGoldRush
    $200 USD Donor New

    Joined:
    Nov 21, 2011
    Posts:
    1,204
    Referrals:
    11
    Sythe Gold:
    491
    Discord Unique ID:
    220055593568829441
    [FREE]JBusiness Manager Tool[FREE]

    Briefly looked over the code, did you have null checks for saving? I only opened with wordpad so it was messy. For the statistics, it's better to use .contains("b") since buyer, seller and middleman all have letter which are unique to them.
     
  14. Fate1

    Fate1 Apprentice
    Banned

    Joined:
    Apr 21, 2005
    Posts:
    773
    Referrals:
    2
    Sythe Gold:
    5
    [FREE]JBusiness Manager Tool[FREE]

    Code:
    mntmSave.addActionListener(new ActionListener() {
    	public void actionPerformed(ActionEvent e) {
    		table.clearSelection();
    		frmIbusinessmanager.requestFocusInWindow();
    		final JFileChooser fc = new JFileChooser();
    		int returnVal = fc.showSaveDialog(fc);
    		if (returnVal == JFileChooser.APPROVE_OPTION) {
    			File file = fc.getSelectedFile();
    			// gets file to save
    			String path = file.getAbsolutePath();
    			// finds path to see if saving over existing file.
    			if (path.contains(".")) {
    				int i = path.indexOf(".");
    				String s = path.substring(i, path.length());
    				if (s.equals(".ser")) {
    					file = new File(path); // if file ends in .ser save
    											// to that file
    				}
    			} else {
    				// if not add .ser to the file and save
    				path += ".ser";
    				file = new File(path);
    			}
    			if (file.exists()) {
    				returnVal = JOptionPane.showConfirmDialog(null,
    						"Replace existing file?");
    				if (returnVal == JOptionPane.NO_OPTION
    						|| returnVal == JOptionPane.CANCEL_OPTION) {
    					mntmSave.doClick(0); // clicks on save function
    											// again programmatically
    				}
    				if (returnVal == JOptionPane.YES_OPTION) {
    					updateTable(); // updates the data
    					saveFile(file); // saves file
    				}
    			} else {
    				updateTable();
    				saveFile(file);
    			}
    
    		}
    	}
    });
    My save function.
     
  15. iJava

    iJava .Previously known as RSGoldRush
    $200 USD Donor New

    Joined:
    Nov 21, 2011
    Posts:
    1,204
    Referrals:
    11
    Sythe Gold:
    491
    Discord Unique ID:
    220055593568829441
    [FREE]JBusiness Manager Tool[FREE]

    Just checking you don't get a nullpointer if I don't fill every cell when saving.
     
  16. Fate1

    Fate1 Apprentice
    Banned

    Joined:
    Apr 21, 2005
    Posts:
    773
    Referrals:
    2
    Sythe Gold:
    5
    [FREE]JBusiness Manager Tool[FREE]

    Nope I do not.
     
  17. Rahman

    Rahman Guru
    $5 USD Donor New

    Joined:
    Dec 1, 2011
    Posts:
    1,771
    Referrals:
    0
    Sythe Gold:
    46
    Easter 2013
    [FREE]JBusiness Manager Tool[FREE]

    Yes! That would help me heaps and make it worthy to download and use. Could you add this feature in please?

    With features such as:

    acc username
    password
    bankpin
     
  18. Noam

    Noam Apostle of the Setting Sun
    $50 USD Donor New Competition Winner

    Joined:
    Jul 27, 2011
    Posts:
    2,993
    Referrals:
    1
    Sythe Gold:
    0
    Discord Unique ID:
    688859853535313930
    Discord Username:
    sarbaz#8969
    Two Factor Authentication User Gohan has AIDS
    [FREE]JBusiness Manager Tool[FREE]

    Rahman all you have to do is add columns like that no problem

    I'm currently working on an excel spreadsheet of this. It just looks better graphically
     
  19. wyn10

    wyn10 Active Member

    Joined:
    May 19, 2006
    Posts:
    106
    Referrals:
    0
    Sythe Gold:
    0
    [FREE]JBusiness Manager Tool[FREE]

    Small bump for this suggestion :p
     
  20. Fate1

    Fate1 Apprentice
    Banned

    Joined:
    Apr 21, 2005
    Posts:
    773
    Referrals:
    2
    Sythe Gold:
    5
    [FREE]JBusiness Manager Tool[FREE]

    What do you mean? All you have to do it type it in the product column. It is meant to be customizable.

    If you need a new column you can delete old ones, and create new ones.
     
< Need LR paying with Paypal | Selling $20 Australian Itunes giftcard codes for RSGP >


 
 
Adblock breaks this site