BlackBerry Device’s Screen Resolutions (BlackBerry Cihazlarının Ekran Çözünürlükleri)

For BlackBerry Developers, basic information that you can need : h : Screen Height (px) – w : Screen Width (px) BlackBerry Torch 9800 – h:480 x w:360 BlackBerry Bold 9000 – h:320 x w:480 BlackBerry Bold 9700 – h:360 x w:480 BlackBerry Bold 9780 – h:360 x w:480 BlackBerry Curve 8520 – h:360 x w:480 BlackBerry …

Read More BlackBerry Device’s Screen Resolutions (BlackBerry Cihazlarının Ekran Çözünürlükleri)

Afterthoughts about LUGTR 2011 .. (Lotus Türkiye Kullanıcı Grubu 2011 Konferansı Sonrası Düşünceler ve Paylaşımlar)

After a long journey, we finally passed the turkish lotus user group conference … I think, it was good. There is no comment on Serdar’s blog entry. There were valuable contributions from TRLUG board and on behalf of them by Serdar Başeğmez. I congratulate him once again because of this valuable and hard work. I tried to share my experience on BlackBerry …

Read More Afterthoughts about LUGTR 2011 .. (Lotus Türkiye Kullanıcı Grubu 2011 Konferansı Sonrası Düşünceler ve Paylaşımlar)

Turkish LUG – Announcement for My Event Session … (Türkiye Lotus Kullanıcı Grubu Sunumuma Beklerim)

The first annual conference of Turkish User Group will be held in Istanbul. Attend my session at this great user group event on March 17th, 2011. My session is “Application Development with Blackberry & Notes”. You can see agenda from this web site I will complete for Turkish Lotus Users the tutorial about how can …

Read More Turkish LUG – Announcement for My Event Session … (Türkiye Lotus Kullanıcı Grubu Sunumuma Beklerim)

Exception during Retrieving of ToDo.DUE Property Value (IndexOutOfBoundsException)

If you get IndexOutOfBoundsException during retrieving of ToDo.DUE property value, check before it has a value. Wrong : lngEnd = _SourceContext.getDate(BlackBerryToDo.DUE, 0); Correct : if (todo.countValues(BlackBerryToDo.DUE) > 0) { lngEnd = todo.getDate(BlackBerryToDo.DUE, 0); } This is because if ToDo has no Due date (I mean, selected ‘ None ‘ value), you can take IndexOutOfBoundsException error. Check …

Read More Exception during Retrieving of ToDo.DUE Property Value (IndexOutOfBoundsException)

Blackberry Application Development – Part 3 (Eclipse Development)

Now we are finishing our Blackberry development tutorial. It take so long i know but time is limited for me 🙂 Sorry for this situation. First, I want to share links of previous posts. Part 1 Part 2 Now Part 3 is coming … Blackberry de uygulama geliştirme örneğimizi bu bölüm ile bitiriyoruz. Tabi ki …

Read More Blackberry Application Development – Part 3 (Eclipse Development)

Localization in Blackberry Application (Using JDE Plug-in for Eclipse)

I searched lots of webpage but i found solution suddenly during try and find solution method 🙂 If you are using Eclipse for Blackberry Java Development and want to use Blackberry Resource File. How can we implement this resource files (*.rrc and *.rrh) to our application ? I don’t know maybe it’s a simple but …

Read More Localization in Blackberry Application (Using JDE Plug-in for Eclipse)

Blackberry Application Development – Part 2 (Stub Generator & Introduction to Eclipse)

Now we are starting to develop Blackberry part of our tutorial. We will use following development IDE & tools during our tutorial. Eclipse 3.4.1 with Blackberry Plugin (Download) BlackBerry Email and MDS Services Simulator Package v4.1.4 (Download) Sun Java (TM) Wireless Toolkit 2.5.2_01 for CLDC (Download)

Read More Blackberry Application Development – Part 2 (Stub Generator & Introduction to Eclipse)