Search results

  1. H

    AppBuilder screen smaller than application

    In case anyone else has the same issue as point 1 of the original post, the solution was to change the shortcut to AppBuilder, by Setting Start In to the top level directory containing the source code, and add the -ininame parameter to the Target entry with the path to the runtime ini file...
  2. H

    AppBuilder screen smaller than application

    Thanks. What would the syntax be to specify the connection to a database on a server? Presumably there must be a way to specify the host name, service name, user id and password?
  3. H

    AppBuilder screen smaller than application

    Hopefully this is a very simple question. When opening a .w file in AppBuilder (version 9.1D08, POSSE Version 2.0) the window appears compressed - as a rough estimate it is 75% of the expected width and 85% of the expected height (relative to how the form looks when it is run in the application)...
  4. H

    Blank rows in Browse after resizing

    UPDATE: Just noticed that the browse (in its original size) was showing an extra 'half row', so increased its height to be exactly (approximately!) a whole number of rows. Now, when the window is maximised it only shows one blank row. Progress of a kind, I suppose! BTW, is there a formula to...
  5. H

    Blank rows in Browse after resizing

    Progress 9.1D (Windows) In the ON WINDOW-RESIZED trigger, I change the height of a Browse, based on the change in the height of the window. This works, but when maximising the form the browse shows 2 blank rows after the rows that were originally visible. Clicking on either row causes the data...
  6. H

    Bypass Field Validation for empty field

    Thanks for the suggestion. Can you give me an example of how this would be used please. I tried adding NO-VALIDATE to the DEFINE FRAME DEFAULT-FRAME statement, but it didn't compile. Then I tried FRAME DEFAULT-FRAME:NO-VALIDATE = true. But this gave the message "** NO-VALIDATE is not a...
  7. H

    Bypass Field Validation for empty field

    I'm hoping to make a change to remove an annoyance from a legacy Progress 9.1D database. The form includes a 2 part lookup, namely Area Code and Sub Area Code. If you just tab through the fields, on loading the form, then the validation message doesn't fire (which is fine, because its also...
  8. H

    Equivalent of a SQL subquery in 4GL ?

    Thanks That looks ideal.
  9. H

    Equivalent of a SQL subquery in 4GL ?

    Thanks rusguy How could one modify that logic to only process each SupportCall record once? If it was assigned to Fred, and Fred had worked on the call a couple of times (so there were 2 support call history records), I would only want to include the call once, not 3 times.
  10. H

    Equivalent of a SQL subquery in 4GL ?

    Suppose that you have a table of support calls that contains an AssignedTo column (linking to another table of users). If you also have a history table that stores details of who worked on a support call and when, how could you query a Progress 9.1D database to get a listing of all the support...
Top