lcd setCursor() troubles with arduino17

In Arduino0017, the setCursor function fails to produce any display on the second line of a 16x2 LCD display both in 4-bit as well as 8-bit mode. However the same works in Arduino0013.

I would appreciate if someone can throw some light on this.

Could you post your code?

I noticed that upgrading from the previous versions, 0017 has an upgraded version of LiquidCrystal, so you need to do an lcd.begin(16, 2); in your setup line.

Thanks. Tried that and works fine now.