Search results

  1. rich_t

    Selection List Items

    Hi, From your code example I presume you are using v9 and you are using selection pairs. Testing the value of your selection list will return the second value, ie: <BLOCKQUOTE><font size="1" face="Arial, Verdana">code:</font><HR><pre> ON DEFAULT-ACTION OF SL-selectionlist DO: ASSIGN...
  2. rich_t

    porting database from HP to NT?

    Hi, The personal database option is ideal since you can then build reports whilst not connected to the network. However, you might want to try and save the schema cache to the NT client and load that at startup. Compilations will be faster because they are against the cached copy of the...
  3. rich_t

    Is it possible to create a db without a .bi file?

    Unfortunately if you are updating your DB from another source you will get a BI file, and therefore that BI must be available to any other session, unless truncated. Your large BI file is due to the updates, not the reporting, so concentrate on optimising those updates and the size of the BI...
  4. rich_t

    repost: Multiple updates in one transaction using browse widgets

    Even less elegant is an entire procedure which is a transaction! Rich
  5. rich_t

    Compile ... Save Into ... No-error

    Forgot to mention that NO-ERROR doesn't work on a COMPILE statement! :¬(
  6. rich_t

    Compile ... Save Into ... No-error

    Hi, To test for a valid directory or file use the following code: <BLOCKQUOTE><font size="1" face="Arial, Verdana">code:</font><HR><pre> ASSIGN FILE-INFO:FILE-NAME="&lt;dir name&gt;". IF FILE-INFO:FILE-TYPE MATCHES "*D*" THEN DO: END. /* is a valid directory */ ELSE IF FILE-INFO:FILE-TYPE...
Back
Top