Skip to main content

Posts

Showing posts from May, 2015

JavaFX: arranging components on GridPane

JavaFX provides different layout panes for arranging components on them. for example GridPane, BorderPane etc. This article describes about arranging components on GridPane. GridPane layout manager allows arranging components/controls using overloaded method. ie add.                         1. add(controlinstance, colindex, rowindex)                       EX:  GridPane pane = new GridPane();                                pane.add(new Separator(), 0, 0); the above example code puts the separator on 0th row and 0th column of a gridPane.                       2. add(Node controlinstance,int colIndex,int rowIndex,int colSpan,int rowSpan)                          ...

Send SMSs with Java

Through this article I want to share some knowledge that I have on sending bulk SMSs through java and .NET applications. SMSLIB is an open source API which allows the programmers to write java or .NET code to send multiple smss to different phone numbers. It requires Mobile phone or GSM MODEM along with any SIM. Please go through this link to get the SMSLIB API.                                                    http://smslib.org/download/