all is in the exemple ... try to click on one item !
Last is the key !
2010/8/6 M. Cs. :
> Another question: how to read the text of the selected menu item, which were
> dinamically created?
> --
> This SF.net email is sp
Another question: how to read the text of the selected menu item, which were
dinamically created?
--
This SF.net email is sponsored by
Make an app they can't live without
Enter the BlackBerry Developer Challenge
http://p.
Great, Fabien,
it looks it will work! I'll write to tell if I managed to do it completely.
Thanks!
Csaba
--
This SF.net email is sponsored by
Make an app they can't live without
Enter the BlackBerry Developer Challenge
h
Public Function FillMenu(MenuParent as Menu)
dim s as string
dim hMenu as Menu
MenuParent.Children[0].Delete
For each s in Dir(MenuParent.Tag,"*", gb.directory)
hMenu = new Menu(MenuParent)
hMenu.Text = s
hMenu.Picture = Picture["icon:/small/directory"]
if isDrir(MenuParent.Tag &/ s) then
Off course, I would like to have a menu structure where each submenu item
represents a subfolder recursively.
--
This SF.net email is sponsored by
Make an app they can't live without
Enter the BlackBerry Developer Challen
2010/8/6 Matti
> I don't understand why you want to handle this with menus.
> If you want "to browse the directory structure and to point to the desired
> folder", it's done with a Dialog:
>
> DIM myPath as String
> Dialog.Title = "Look for the mobile phone"
> Dialog.Path = System.Path
> If D
I don't understand why you want to handle this with menus.
If you want "to browse the directory structure and to point to the desired
folder", it's done with a Dialog:
DIM myPath as String
Dialog.Title = "Look for the mobile phone"
Dialog.Path = System.Path
If Dialog.SelectDirectory() Then
My goal: Let's have a mobile phone, and I would like to send data (images,
mp3) to the phone, but I don't know how the directory structure of that
certain phone would look like. I would like to have a "Send to:" option
which is present for e.g in Konqueror, which would enable me to browse the
dire