[Wish]: ToDo list in IDE

adamioan

Member
Licensed User
Longtime User
It would be great if Basic4android IDE has a ToDo add-on feature integrated in the menus. This feature will be visible when the IDE starts and will enumerate the job list with Id, Description, Insertion date, Completion date, Application version...etc
 

COBRASoft

Active Member
Licensed User
Longtime User
Drag & drop selection

It would be nice to have drag & drop selection within the editor like most modern IDE's have.
 

Kevin

Well-Known Member
Licensed User
Longtime User
It would be nice to have drag & drop selection within the editor like most modern IDE's have.

I still find myself trying to do this quite often even though I know it doesn't work. :) I suppose by definition that makes me insane, but then aren't most programmer types a little on the insane side or is it just me?

I agree, it would be nice.
 
Last edited:

joseluis

Active Member
Licensed User
Longtime User
It would be great if Basic4android IDE has a ToDo add-on feature integrated in the menus.

Yes. It would be very nice to have that.

At the moment what I do to fill the gap is using an empty code module, with a todo list and bug list in comments. e.g.

B4X:
'Code module
Sub Process_Globals
End Sub

' TODO LIST:
' ##########
' [T01] (Main)(Splash) Make a timer for the writing in the splash background
' [T02] (ACTmenu) Create main menu. Load it after splash
' 

' BUGS LIST:
' ##########
' [B01] (Main)(Splash) The progress bar doesn't ever fill up to 100%
' [B02] 
' [B03] 
'
 
Top