Search results

  1. F

    Run Persistant

    Try this: RUN MyWindow.w PERSISTENT SET MyHandle. RUN dispatch IN MyHandle ('initialize':U). --- figyo
  2. F

    TreeView Control; HitTest method doesn't work

    Try tracking mouse movement with event procedure MouseMove, and then invoking HitTest (with x,y returned by MouseMove). PROCEDURE [controlframe].[control].MouseMove : DEFINE INPUT PARAMETER Button AS INTEGER. DEFINE INPUT PARAMETER Shift AS INTEGER. DEFINE INPUT PARAMETER x AS INTEGER...
  3. F

    Problems with PSTimer conrtol

    I have trouble with PSTimer control. I want to do some background processing while waiting for user input (e.g. Check for incoming messages) every second or two. The problem: when user is moving with cursor arrows in enabled fill-in (SmartViewer), the cursor jumps one character back when the...
  4. F

    Error no. 16

    Sometimes I get error 16 too, but I never can figure out what happened. I cannot add any new records to offending table. The only solution for me is to dump/delete/load entire table, which sometimes takes pretty much time. I'm really interested why that mysterious error happens. P.S.: PROGRESS...
Top