Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
ListDialog leave dialog window open
#1
I wonder whether it is possible to leave window open, after selecting an item, in ListDialog window. Many thanks in advance.

Workaround:
Function tempf01
Code:
Copy      Help
int m
;gm
int j=ListDialog("Line1[]Line2[]Line3" "Lines" "Caption" 0 0 0 0 0 m)
m=j
if j>0; goto  gm
#2
No, need to clone and edit ListDialog, and it can be difficult. Better create new similar function with dialog with eg listbox control.
#3
Function FunctionOne29
Code:
Copy      Help
;; / FunctionOne29 \
;;
;; Keep ListDialog open after selections, cancel to close dialog.
;;
;; Add Label above Sel statement
;; Then at end of that case statement go back to label.


;; Links
sel(ListDialog("Link1[]Link2" "Open Links" "Links" 0x1))
,case 1    ;;  Link 1
,out "Link1"
,goto Links    ;; <<---- goto label "Links"
,
,case 2    ;;  Link2
,out "Link2"
,goto Links    ;; <<---- goto label "Links"
,
,case else ret


Forum Jump:


Users browsing this thread: 1 Guest(s)