JAVAFX: Calling a Method inside another Method which is linked to a Button Action in Scene Builder | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

JAVAFX: Calling a Method inside another Method which is linked to a Button Action in Scene Builder

Created Following Functions/Methods; public void AddBill() {} public void AddtoCart() {} public void getLastBill() {} public void LoadCustomerByID() {} Then is Created a Method to Run All above Methods with if Condition; public void BillandCart(ActionEvent event) throws Exception{ Connection connect = SqliteConnection.Connector();           if(BillNbr.getText() == null){                 AddBill();                 getLastBill();                 LoadByCustomerID();                 CalculateBillPrice();                 AddtoCart();           }else{                 CalculateBillPrice();                 AddtoCart();           } Now this Method public void BillandCart(ActionEvent event) throws Exception doesn't work when is link it to On Action Button BillNbr in Scene Builder. But When i Run the Methods individually AddBill; AddtoCart(); getLastBill(); LoadCustomerByID(); works well. Need Help.

11th Dec 2018, 6:06 AM
ifraz I
ifraz I - avatar
1 Answer
+ 3
Try to send this on activity feed ,that you can get answers
14th May 2019, 4:58 PM
( ͠° ͟ʖ °͠ )