When you upgrade your OSX version to the newest one, usually will followed by iPhoto application. Then when you open iPhoto application, there's will be Facebook Account in SHARED directory, and automatically will syncing all the photo from your Facebook account.
Saturday, October 18, 2014
Wednesday, July 2, 2014
Appeon Web for Powerbuilder
Since several years ago, Appeon, 3rd party solution for Powerbuilder which made possibility to deploy the windows based application created by Powerbuilder, into Web-based or even mobile platform.
See the demo below:
The first version of Appeon Web for Powerbuilder, was only support for Internet Explorer browser. But now, the newest version can support almost all major browsers such as Firefox, Chrome and even Safari, with only just once deployment step.
See the demo below:
Saturday, June 28, 2014
Fingerprint Verification with Powerbuilder
Mr. Yakov Werde, one of the Powerbuilder guru, shown us how to use a free SDK for fingerprint device within Powerbuilder. He using Powerbuilder version 12.5 and free fingerprint SDK from Neuro Technology.
This video shows how to do it in detail
This video shows how to do it in detail
Thursday, April 3, 2014
Powerbuilder Function to Get Last Date in Month
This function is to get last date in particular month
Create a function named f_lastdate
Specify a date type as return value
Specify a date type parameter name dTgl, then type this script below
To use the function, use this script
dLastDate value should be: 30 April 2014, if assume today is 3rd April 2014.
Create a function named f_lastdate
Specify a date type as return value
Specify a date type parameter name dTgl, then type this script below
1: integer iMonth, iDate
2: iMonth = Month(dTgl)
3: CHOOSE CASE iMonth
4: CASE 1, 3, 5, 7, 8, 10, 12
5: iDate = 31
6: CASE 4, 6, 9, 11
7: iDate = 30
8: CASE 2
9: IF isDate( '29/' + String(iMonth) + '/' + String(Year(dTgl))) THEN
10: iDate = 29
11: ELSE
12: iDate = 28
13: END IF
14: END CHOOSE
15: dTgl = Date( String(iDate) + '/' + String(iMonth) + '/' + String(Year(dTgl)))
16: RETURN dTgl
To use the function, use this script
1: Date dLastDate
2: dLastDate = f_lastdate(today())
dLastDate value should be: 30 April 2014, if assume today is 3rd April 2014.
Saturday, March 1, 2014
Samsung Galaxy S5 vs. Apple iPhone 5S vs. Google Nexus 5
This article was taken from IT World, and wrote by Jon Gold
February 26, 2014, 12:10 PM — Samsung made the Galaxy S5 official on Monday at a Mobile World Congress presentation in Barcelona, touting a slimmed-down approach to the latest flagship's feature set and simplified design.
It's a small but notable departure for the South Korean company, whose devices all too frequently combine undeniable engineering brilliance with a glut of marginally useful features. Co-CEO J.K. Shin and other Samsung executives who presented at the event were eager to talk up the way in which the company had listened to input from their customers.
Subscribe to:
Posts (Atom)