Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by davidalittle

  1. davidalittle

    add description column to 'to do' view

    The Description of a To Do document is stored in a richtext item called 'Body', and richtext fields won't display in a view. You can work around this by adding a calculated field on the To Do form that has a formula like @Abstract( [TryFit]; 100; ""; Body). This new field can be added into...
  2. davidalittle

    Easier way to transfer a data area??

    The CHGDTAARA command is not limited to 32 characters, it simply defaults to a visible length of 32. The maximum length for the VALUE parameter is 512. You can see this by prompting the CHGDTAARA command and keying an ampersand '&'. Do this repeatedly until the system gives you a 'Field at...
  3. davidalittle

    Attachment - Cannot execute command

    Have you checked to make sure that his cursor is in the body of the e-mail? I have had several users who could not insert attachments because the cursor was still in one of the address or subject fields. When you replay to an e-mail, the cursor automatically goes to the body.
  4. davidalittle

    Writing to Sequential TXT File on C Drive

    Try something like this Sub Initialize Dim session As New NotesSession Dim db As NotesDatabase Dim collection As NotesDocumentCollection Dim doc As NotesDocument Set db = session.CurrentDatabase Set collection = db.UnprocessedDocuments Set doc = collection.GetFirstDocument...
  5. davidalittle

    AS/400 COBOL Complilation errors

    When a logical file has the same record format name as the physical file it is based on, at compilation time it (the logical file) inherets all of the physical file's fields, so they do not need to be specifically listed. If, however, you specify any fields in the logical file source, only...
  6. davidalittle

    AS/400 COBOL Complilation errors

    I believe that the real problem is that 'RECORD' is a reseverd word. Since your record format is named 'RECORD', the copied in definition is being rejected and therefore the field 'F0002' is not defined. You should have another message that precedes this one and it should be similar to ...
  7. davidalittle

    Error calling DSPF file

    Tony, "Message . . . . : Device *REQUESTER not found while opening file TONYSCR in library USERDEV." Corresponds to message CPF4103. These message codes help to identify the source of the problem. In this case the cause of the message is most likely because you are running your...

Part and Inventory Search

Back
Top