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)

Create Missing Cover Document using Binder Document & Cover Document which has same Job & Activity

Hello, I made a mistake when i was working on my lotus workflow application. I deleted 9 documents’ cover document 🙂 I created a script to solve this problem and want to share with the world.

Read More Create Missing Cover Document using Binder Document & Cover Document which has same Job & Activity

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)

Blackberry Application Development – Part 1 (Domino WebService)

Hello again, We are starting to develop blackberry mobile application. Our mobile application will be developed based on the domino webservice technology. So we are starting to develop our sample webservice. We will use following development IDE & tools during our tutorial. Lotus Domino Server 8.5 Lotus Notes & Designer 8.5.1 Eclipse 3.4.1 with Blackberry …

Read More Blackberry Application Development – Part 1 (Domino WebService)

Blackberry Application Development – Introduction

Do you have Blackberry Enterprise Server in your company ? And do you have Lotus Domino ? And are these softwares integrated with each other ? And the last question 🙂 Do you want to develop blackberry mobile applications which is integrated with lotus notes ? If your answers are YES, You are at the …

Read More Blackberry Application Development – Introduction