Soft vs. hard returns

Ask a Question related to FileMaker, Design and Development.

  1. #1

    Default Soft vs. hard returns

    In FMPro 5.5, I need to create a calc field that concatonates several
    fields together with a hard (chr 13) return at the end of each field.

    So, I have a formula like field1 & "returnchar" & field 2

    where returnchar is the symbol for a return character that you can insert
    into the formula via a button in the "Specify Calculation" dialog.

    FMPro seesm to put a soft (chr11) return in here instead of a hard return.

    Is there any way to change this?

    Does 6.0 adddress this?

    Thanks in advance!
    Brett Bixler Guest

  2. Similar Questions and Discussions

    1. Eliminating hard returns in OCR
      Mac OS 10.3.9, Acrobat 7 Professional. Converting a bunch of scanned pages to rtf format. Is there a way to tell Acrobat not to put hard returns at...
    2. Tabs and hard returns into strings in Flash 5 Actionscript
      How do I get tabs and hard returns into strings in Flash 5 actionscript? Stuff I read on the web would lead me to believe that \t \n would...
    3. Soft key press
      Is it possible to force a keypress using actionscript? I have an object which deletes itself from the stage when the delete key is pressed. I want...
    4. how hard to replace titanium internal hard drive? How to cloneold hard drive onto it?
      Hi all - I have a 2001 titanium laptop with a 20 Gig hard drive. The thing is getting too full and I'm toying with the idea of getting a bigger...
    5. ?Hard links, Soft links, & Aliases--Explain
      Hi All, Could some knowledgeable UNIX type please explain the differences between hard links, soft links, and traditional Mac aliases. Responses...
  3. #2

    Default Re: Soft vs. hard returns

    In article <bxb11-2107031259340001@cbel5.cac.psu.edu>,
    [email]bxb11@psu.edu[/email] (Brett Bixler) wrote:
    > In FMPro 5.5, I need to create a calc field that concatonates several
    > fields together with a hard (chr 13) return at the end of each field.
    >
    > So, I have a formula like field1 & "returnchar" & field 2
    >
    > where returnchar is the symbol for a return character that you can insert
    > into the formula via a button in the "Specify Calculation" dialog.
    >
    > FMPro seesm to put a soft (chr11) return in here instead of a hard return.
    >
    > Is there any way to change this?
    You could create a global field (call it CR) and type a carriage return
    into it and use that. field1 & CR & field 2

    --
    Real Address-> neoluddite0comcast.net <- replace 0 with @
    Bill Gates couldn't innovate his way out of a paper bag.
    NeoLuddite Guest

  4. #3

    Default Re: Soft vs. hard returns

    Brett Bixler wrote:
    >
    > In FMPro 5.5, I need to create a calc field that concatonates several
    > fields together with a hard (chr 13) return at the end of each field.
    >
    > So, I have a formula like field1 & "returnchar" & field 2
    >
    > where returnchar is the symbol for a return character that you can insert
    > into the formula via a button in the "Specify Calculation" dialog.
    >
    > FMPro seesm to put a soft (chr11) return in here instead of a hard return.
    >
    > Is there any way to change this?
    >
    > Does 6.0 adddress this?
    >
    > Thanks in advance!
    You can concatenate the ¶ chracter each place you want the carriage
    return, and that should do it. On a Mac, that character is produced by
    Option 7.
    B Collins Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139