Recent content by SimonB

  1. S

    Get Time from DateTime

    ou can also create a Class MyDateTime that contains a date, and hour(int), minutes (int) and so on. You can also implements an "equals" method tout compare a MyDateTime with a .NET DateTime or a Progress Datetime. With constructors that require System.DateTime or Datetime you can do almost...
  2. S

    Search Temp-Table by Class Instance Property

    You can iterate temp-tables and leave when something matches like this: DEFINE TEMP-TABLE tt NO-UNDO FIELD Id AS INTEGER FIELD Obj AS Progress.Lang.Object FIELD TestValue AS CHARACTER INDEX idx1 IS PRIMARY UNIQUE Id. DEFINE VARIABLE xToFind AS INTEGER...
Top