Skip to main content

ADempiere DVD by Trifon Trifonov

Today's Enterprise software, particularly ERP-CRM is quite complex for use and administration. The same applies for sources and setup of workspace and build. Quite often in forums of ADempiere ERP-CRM we see complains that setup of development environment is complicated and labour extensive. Many times developers spend 2-3 days trying to setup workspace without result and post desperate messages in forums asking for assistance. In order to decrease time spent for setup i created ADempiere DVD which contains all ADempiere sources, Eclipse IDE and Sun JDK. All properly setuped and ready for use. Developer only need to copy one directory to his local hard drive and start customizing and extending ADempiere ERP-CRM suite. Currently there are two editions available: for Windows and Linux Operating systems.

Trifon Trifonov

Comments

tantraputra said…
Dear Trifon,

I Need your help to setup my Eclipse so I can use to Debug and Run My Adempiere Source.

I Already download the adempiere source, and create new java project in Eclipse but cannot make it Run, while build project there is no error just warning.

What should i do, or may be can i know your email so i can post some image capture from my setting to avoid misunderstanding between us

Best Regards
L. Tantra Putra S
Redhuan D. Oon said…
Dear Tantra,
Information is Free, You have to know, so go over to our www.adempiere.com/wiki and you can have all the info there free always. But you need time and patience.

If not, then there is the 2nd rule:

People Are Not Free, You have to pay. In this case if you wish you can pay Trifon to teach you, that is if he is free.

But there is a better way which is the 3rd Rule:

Contributors Are Priceless, You have to be. Which can mean now and right away even without any knowledge. What you did by asking is you already did that contribution!

By asking here, you contributed to Trifon's fame and helped promote and advertise him.

These 3 rules are what i been telling the world. It is simple and yet dificult if you do not get it.

Visit my user page more at the wiki and learn exactly how you can be one.

Popular posts from this blog

Compiere vs. ADempiere: Count of Partners

ADempiere project is one year old now, more precisely 13 months old. Before one year father project Compiere had around 60 partners, which was quite good number. Each partner was obliged to pay 3 000 USD per year which made 180 000 USD income only from partners. Today Compiere has 32 partners and each pays 8 000 USD = 256 000 USD year. It looks that Compiere Inc. managed to increase it's income, but number of partner dropped by half. It is Compiere inc. decision how much to charge for partnership, i'm not going to discuss this now. But it is very interesting observation that although income from partners increased Compiere Inc. decided to close source code access to Service Packs and push users to pay for it. It looks that only money from partners are not enough for the Inc.. Well it is again Compiere Inc. right to decide how much to charge for access to source code and how much not to charge, but users can see that functionality which ADempiere provides get bigger and bigger e

Compiere - Beginning of the end!

Compiere Inc. has very strange understandings for free: http://compiere.com/support/service-packs.php Is there a charge for downloading these service packs? The Service Pack is free of charge for customers on Standard and Extended level support subscriptions. For 2.6.3, the Service Pack is also available to customers on Self-service Support Subscriptions at no charge. Acording to the post all is free, but user must have subscription... We at ADempiere are totaly free as our migration and bug fixes which are more than 500 till now are free even for non subscribed users. One big THANK YOU to Compiere Inc. for leaving the battle field OPEN SOURCE to ADempiere and other forks. Trifon Trifonov

How to catch right mouse click in JTable

This is a quick post to show how developer can intercept Right mouse click in JTable. Name  of our JTable object is "jTable". We need to add MouseListener and catch "MousePressed" events. As the code shows correct mouse button is determined using "SwingUtilities" class, quite easy job. Tricky part is finding Row number and Column number and displaying Pop-up window at correct position. Enjoy! jTable.addMouseListener( new MouseAdapter() { public void mousePressed( MouseEvent event ) { if ( SwingUtilities.isLeftMouseButton( event ) ) { // Do something } else if ( SwingUtilities.isRightMouseButton( event ) ) { Point p = event.getPoint(); // Get row and column index that contains our coordinate int rowIndex = jTable.rowAtPoint( p ); int colIndex = jTable.columnAtPoint( p ); // Get ListSelectionModel of the JTable ListSelectionModel model = jTable.getSelectionModel(); // Set how many rows are selected using "rowInd