Menu

#712 Application window is reduced by 1 click on the main bar

v_9.1
open-remind
5
2020-12-15
2011-03-16
krunch
No

This is a strange behavior concerning the Application window main bar (above) : in some cases the Application window is reduced when you click on the main bar

Please see the sample below..

Apparently this problem occurs :
- if KeepFocus=nil
- if the TextBox triggers a OnKillFocus function
- if this function contains an OpenDCL property (/method /function ?) to evaluate
- if the TextBox looses focus when you click on the main bar..

The Lisp to test it :
(defun c:go ()
(command "OPENDCL")
(dcl_Project_Load "AppBar" T)
(dcl_Form_Show AppBar_Form1)
(princ)
)
(defun c:DO (/ out gr)
(dcl_TextBox_SetSel AppBar_Form1_TextBox1 0 0)
(princ)
)
(defun c:Appbar_Form1_TextBox1_OnKillFocus (/ tmp)
;;; (princ) ; doesn't causes the problem
;;; (setq tmp 0)
(dcl_Control_GetText Appbar_Form1_TextBox1) ; need something like that
)

The post in the forum : http://www.opendcl.com/forum/index.php?topic=1597.msg7859#msg7853

Discussion

  • krunch

    krunch - 2011-03-16
     
  • Owen Wengerd

    Owen Wengerd - 2013-12-29
    • status: open --> open-remind
    • assigned_to: Owen Wengerd
    • Group: --> v_4.0_Alpha
     
  • Owen Wengerd

    Owen Wengerd - 2013-12-29
    • Group: v_4.0_Alpha --> v_7.0
     
  • Owen Wengerd

    Owen Wengerd - 2020-12-15
    • Group: v_7.0 --> v_9.1
     

Log in to post a comment.