This gui works great and looks realy good to
, so far this is the best db programmed gui i have found. thx( and im kinda to lazy to wanna make my own at the moment
)
Screen shot off a matrix editor im
working on from time to time for a little game(Yes i know matrices are slow but!
) is attached to this post
Maby BUGS(or just me?):
Notice:
In this code snippet i have created two list boxes
but for items in list box 2 to be displayed. list item count in list box 1 needs to match number off items in list box 2.(List items in list box 1 are added dureing init off program, list items in list box 2 are added in the main loop.)
REM Perform search for media
for n = 1 to temp
for n2 = 1 to 7
temp$ = UPPER$(right$(checklist string$(n),len(checkifmedia$(n2))))
if temp$ = UPPER$(checkifmedia$(n2))
REM Store file info
add to queue BR_file()
i = array count(BR_file())
BR_file(i).name$ = checklist string$(n)
BR_file(i).path$ = dest$ + "" + BR_file(i).name$
BR_file(i).extension$ = "."+checkifmedia$(n2)
BR_file(i).passed = %1
REM Add to List box
addListBoxItem(BR_ListBox - 1,BR_file(i).name$)
REM WORK AROUND FOR ERROR IN LIST BOX FUNCTIONS // Read more in ToDo List notes
addListBoxItem(BR_ListBox,"0")
if _listb(BR_ListBox).items>_listb(BR_ListBox).max
_listb(BR_ListBox).scrollf=_listb(BR_ListBox).scrollf+1
_listb(BR_ListBox).scroll=int(_listb(BR_ListBox).scrollf)
endif
endif
next n2
next n
deleteListBoxItem(BR_ListBox,_listb(BR_ListBox).items) : `WORK AROUND FOR ERROR IN LIST BOX FUNCTIONS // Read more in ToDo List notes
Sugestions:
Some Show And Hide Functions, for all GUI Items
Thats it, again im realy glad i found this.
easy comes easy goes