from javax.swing import * book = moneydance.getCurrentAccountBook() onlineInfo = book.getOnlineInfo() services = onlineInfo.getAllServices() selectedValue = JOptionPane.showInputDialog(None, "Select a service to delete", "Select a Service to Delete", JOptionPane.INFORMATION_MESSAGE, None, services.toArray(), services[0]) if(selectedValue): selectedValue.deleteItem() print "Connection information successfully removed."