|
From: vatzct <va...@po...> - 2012-01-26 12:54:45
|
12.01.2012 12:01, vatzct ???????(??): > Anyone can explain me, why in designer of form i can move object by > arrows (messages WM_KEYUP is) but in designer of report i can't. > > Regards, > Alexey Myronenko > > > ------------------------------------------------------------------------------ > RSA(R) Conference 2012 > Mar 27 - Feb 2 > Save $400 by Jan. 27 > Register now! > http://p.sf.net/sfu/rsa-sfdev2dev2 > > > _______________________________________________ > Hwgui-developers mailing list > Hwg...@li... > https://lists.sourceforge.net/lists/listinfo/hwgui-developers Hi! After commit * $Id: hpanel.prg,v 1.29 2010-04-05 14:30:42 lfbasso Exp $ we can't move the controls by arrows in designer of report, that is the code: 171 <http://hwgui.svn.sourceforge.net/viewvc/hwgui/trunk/hwgui/source/hpanel.prg?annotate=1504#l171> ELSEIF msg = WM_KEYUP 172 <http://hwgui.svn.sourceforge.net/viewvc/hwgui/trunk/hwgui/source/hpanel.prg?annotate=1504#l172> IF wParam = VK_DOWN 173 <http://hwgui.svn.sourceforge.net/viewvc/hwgui/trunk/hwgui/source/hpanel.prg?annotate=1504#l173> getskip( ::oparent, ::handle, , 1 ) 174 <http://hwgui.svn.sourceforge.net/viewvc/hwgui/trunk/hwgui/source/hpanel.prg?annotate=1504#l174> ELSEIF wParam = VK_UP 175 <http://hwgui.svn.sourceforge.net/viewvc/hwgui/trunk/hwgui/source/hpanel.prg?annotate=1504#l175> getskip( ::oparent, ::handle, , -1 ) 176 <http://hwgui.svn.sourceforge.net/viewvc/hwgui/trunk/hwgui/source/hpanel.prg?annotate=1504#l176> ELSEIF wParam = VK_TAB 177 <http://hwgui.svn.sourceforge.net/viewvc/hwgui/trunk/hwgui/source/hpanel.prg?annotate=1504#l177> GetSkip( ::oParent, ::handle, , iif( IsCtrlShift(.f., .t.), -1, 1) ) 178 <http://hwgui.svn.sourceforge.net/viewvc/hwgui/trunk/hwgui/source/hpanel.prg?annotate=1504#l178> ENDIF 179 <http://hwgui.svn.sourceforge.net/viewvc/hwgui/trunk/hwgui/source/hpanel.prg?annotate=1504#l179> RETURN 0 when i delete it designer of report work's well. Basso, can you look in the code? Regards, Alexey Myronenko |