Address Seperation Question

Ask a Question related to FileMaker, Design and Development.

  1. #1

    Default Address Seperation Question

    I have a database with a field that contains:

    <Company Name>
    <Address>
    <City> <State> <Zip>
    <Phone>

    in one field.

    I also have individual fields for each of those entities.

    What is the best way to get data from the one field to the individual fields.

    TIA

    --
    Tim Morrison

    --------------------------------------------------------------------------------

    Vehicle Web Studio - The easiest way to create and maintain your vehicle related website.
    [url]http://www.vehiclewebstudio.com[/url]
    Tim Morrison Guest

  2. Similar Questions and Discussions

    1. Seperation anomoly captain!!!
      Hi all, when I look at the plates in Acrobat, my text which is black only, appears on all plates, this is very strange, have tested it with a pic...
    2. number seperation in ASP
      Hi, Let's say I have a form value which would come back a decimal number (ie. 25.45) I need to first take the whole number and multiple it by 14...
    3. Colour Seperation in 11?
      Hello, just upgraded from 10 to 11. Part of my job is to check all the colour seperations before i send it to the printer....so I have to be...
    4. Newbie PHP website address question
      Hi, I've seen websites using address format like: "index.php?page=5" I don't know how they work. Do they use a template? Can anyone point me to...
    5. Quick Question on Address Bar
      Hey, Quick question: How do I set the address bar so it only says the domain name, and not all the extensions (eg: index.htm/contact.htm/etc.)...
  3. #2

    Default Re: Address Seperation Question

    In reply to Xogdb.597542$YN5.437079@sccrnsc01 on 9/27/03 6:37 AM by Tim
    Morrison [email]sales@kjmsoftware.com[/email]:

    Hi Tim,

    What you are trying to do is called Parse or Parsing text, sometimes
    referred to as extracting text. There are sample files on how to do this
    available at [url]www.fmfiles.com[/url] and [url]www.databasepros.com[/url]

    Basically you have to look at the data and look for a pattern that will
    allow you to do this consistently.

    Some questions:

    Are each name/address exactly as you have shown them? In other words, do the
    really have the "<" and ">" preceding and following each line?

    <Company Name>
    <Address>
    <City> <State> <Zip>
    <Phone>

    Or maybe they have Field Identifiers such as:

    Name: Joe Doe
    Company: XYZ Co.
    Address: 123 A Street
    etc.

    How about consistency. Are there only four lines for each address? No second
    address such as Street and Post Office Box. How about Contact Name for some,
    second phone numbers, etc.

    You might get a better answer if you pasted in a few examples

    HTH

    Lee


    > I have a database with a field that contains:
    >
    > <Company Name>
    > <Address>
    > <City> <State> <Zip>
    > <Phone>
    >
    > in one field.
    >
    > I also have individual fields for each of those entities.
    >
    > What is the best way to get data from the one field to the individual fields.
    >
    > TIA
    Lee Smith Guest

  4. #3

    Default Re: Address Seperation Question

    Thank you for the response.

    1. Addresses do not have < >.
    2. Company is ALWAYS on first line.
    3. Addreess is ALWAYS on second line.
    4. Address is ALWAYS 1 line.
    5. City State Zip is ALWAYS on third line.
    6. Phone Number is NOT always present, but if it is present, it is always on
    the 4th line.

    An example is:

    KJM Software
    P.O. Box 1234
    Independence IA 50644
    (319) 334-3667

    regards,

    Tim Morrison


    "Lee Smith" <lee@pacific.net> wrote in message
    news:BB9AE798.2E5C8%lee@pacific.net...
    > In reply to Xogdb.597542$YN5.437079@sccrnsc01 on 9/27/03 6:37 AM by Tim
    > Morrison [email]sales@kjmsoftware.com[/email]:
    >
    > Hi Tim,
    >
    > What you are trying to do is called Parse or Parsing text, sometimes
    > referred to as extracting text. There are sample files on how to do this
    > available at [url]www.fmfiles.com[/url] and [url]www.databasepros.com[/url]
    >
    > Basically you have to look at the data and look for a pattern that will
    > allow you to do this consistently.
    >
    > Some questions:
    >
    > Are each name/address exactly as you have shown them? In other words, do
    the
    > really have the "<" and ">" preceding and following each line?
    >
    > <Company Name>
    > <Address>
    > <City> <State> <Zip>
    > <Phone>
    >
    > Or maybe they have Field Identifiers such as:
    >
    > Name: Joe Doe
    > Company: XYZ Co.
    > Address: 123 A Street
    > etc.
    >
    > How about consistency. Are there only four lines for each address? No
    second
    > address such as Street and Post Office Box. How about Contact Name for
    some,
    > second phone numbers, etc.
    >
    > You might get a better answer if you pasted in a few examples
    >
    > HTH
    >
    > Lee
    >
    >
    >
    > > I have a database with a field that contains:
    > >
    > > <Company Name>
    > > <Address>
    > > <City> <State> <Zip>
    > > <Phone>
    > >
    > > in one field.
    > >
    > > I also have individual fields for each of those entities.
    > >
    > > What is the best way to get data from the one field to the individual
    fields.
    > >
    > > TIA
    >

    Tim Morrison Guest

  5. #4

    Default Re: Address Seperation Question

    In reply to Jbhdb.597847$YN5.437849@sccrnsc01 on 9/27/03 7:32 AM by Tim
    Morrison [email]sales@kjmsoftware.com[/email]:
    > An example is:
    >
    > KJM Software
    > P.O. Box 1234
    > Independence IA 50644
    > (319) 334-3667
    >
    I want to verify that there are no commas after the city and no period after
    the state?

    Lee

    Lee Smith Guest

  6. #5

    Default Re: Address Seperation Question

    Calcs below assume the starting field is called FullInfo. The "P"
    represents a return character within quotes. Calcs are approximate;
    they've been tested a little, but should give you a good start even if
    I've missed a parenthesis or something.

    Company = Left(FullInfo, Position(FullInfo, "P", 1, 1)-1)

    Address = Middle(FullInfo, Position(FullInfo, "P", 1, 1)+1,
    Position(FullInfo, "P", 1, 2)-Position(FullInfo, "P", 1, 1)-1)

    City = LeftWords(Middle(FullInfo, Position(FullInfo, "P", 1, 2)+1,
    Position(FullInfo & "P", "P", 1, 3)-Position(FullInfo, "P", 1, 2)-1),
    WordCount(Middle(FullInfo, Position(FullInfo, "P", 1, 2)+1,
    Position(FullInfo & "P", "P", 1, 3)-Position(FullInfo, "P", 1, 2)-1))-2)

    State = MiddleWords(Middle(FullInfo, Position(FullInfo, "P", 1, 2)+1,
    Position(FullInfo & "P", "P", 1, 3)-Position(FullInfo, "P", 1, 2)-1),
    WordCount(Middle(FullInfo, Position(FullInfo, "P", 1, 2)+1,
    Position(FullInfo & "P", "P", 1, 3)-Position(FullInfo, "P", 1, 2)-1))-1, 1)

    Zip = RightWords(Middle(FullInfo, Position(FullInfo, "P", 1, 2)+1,
    Position(FullInfo & "P", "P", 1, 3)-Position(FullInfo, "P", 1, 2)-1), 1)

    Phone = Middle(FullInfo, Position(FullInfo, "P", 1, 3)+1,
    Position(FullInfo & "P", "P", 1, 4)-Position(FullInfo, "P", 1, 3)-1)

    Tim Morrison wrote:
    > 1. Addresses do not have < >.
    > 2. Company is ALWAYS on first line.
    > 3. Addreess is ALWAYS on second line.
    > 4. Address is ALWAYS 1 line.
    > 5. City State Zip is ALWAYS on third line.
    > 6. Phone Number is NOT always present, but if it is present, it is always on
    > the 4th line.
    >
    > An example is:
    >
    > KJM Software
    > P.O. Box 1234
    > Independence IA 50644
    > (319) 334-3667

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Howard Schlossberg (818) 883-2846
    FM Pro Solutions Los Angeles, California
    Associate Member, FileMaker Solutions Alliance

    Howard Schlossberg Guest

  7. #6

    Default Re: Address Seperation Question

    In reply to [email]vnbeh82mpc4a15@corp.supernews.com[/email] on 9/27/03 9:26 AM by Howard
    Schlossberg [email]howard@antispahm.fmprosolutions.com[/email]:

    Very Good Howard,

    Two replacements as you stated and they can be pasted directly into their
    respective fields.

    Lee
    > Calcs below assume the starting field is called FullInfo. The "P"
    > represents a return character within quotes. Calcs are approximate;
    > they've been tested a little, but should give you a good start even if
    > I've missed a parenthesis or something.
    >
    > Company = Left(FullInfo, Position(FullInfo, "P", 1, 1)-1)
    >
    > Address = Middle(FullInfo, Position(FullInfo, "P", 1, 1)+1,
    > Position(FullInfo, "P", 1, 2)-Position(FullInfo, "P", 1, 1)-1)
    >
    > City = LeftWords(Middle(FullInfo, Position(FullInfo, "P", 1, 2)+1,
    > Position(FullInfo & "P", "P", 1, 3)-Position(FullInfo, "P", 1, 2)-1),
    > WordCount(Middle(FullInfo, Position(FullInfo, "P", 1, 2)+1,
    > Position(FullInfo & "P", "P", 1, 3)-Position(FullInfo, "P", 1, 2)-1))-2)
    >
    > State = MiddleWords(Middle(FullInfo, Position(FullInfo, "P", 1, 2)+1,
    > Position(FullInfo & "P", "P", 1, 3)-Position(FullInfo, "P", 1, 2)-1),
    > WordCount(Middle(FullInfo, Position(FullInfo, "P", 1, 2)+1,
    > Position(FullInfo & "P", "P", 1, 3)-Position(FullInfo, "P", 1, 2)-1))-1, 1)
    >
    > Zip = RightWords(Middle(FullInfo, Position(FullInfo, "P", 1, 2)+1,
    > Position(FullInfo & "P", "P", 1, 3)-Position(FullInfo, "P", 1, 2)-1), 1)
    >
    > Phone = Middle(FullInfo, Position(FullInfo, "P", 1, 3)+1,
    > Position(FullInfo & "P", "P", 1, 4)-Position(FullInfo, "P", 1, 3)-1)
    >
    > Tim Morrison wrote:
    >> 1. Addresses do not have < >.
    >> 2. Company is ALWAYS on first line.
    >> 3. Addreess is ALWAYS on second line.
    >> 4. Address is ALWAYS 1 line.
    >> 5. City State Zip is ALWAYS on third line.
    >> 6. Phone Number is NOT always present, but if it is present, it is always on
    >> the 4th line.
    >>
    >> An example is:
    >>
    >> KJM Software
    >> P.O. Box 1234
    >> Independence IA 50644
    >> (319) 334-3667
    >
    >
    > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    > Howard Schlossberg (818) 883-2846
    > FM Pro Solutions Los Angeles, California
    > Associate Member, FileMaker Solutions Alliance
    >
    Lee Smith Guest

  8. #7

    Default Re: Address Seperation Question

    Verified.....

    Tim

    "Lee Smith" <lee@pacific.net> wrote in message
    news:BB9B0506.2E5D3%lee@pacific.net...
    > In reply to Jbhdb.597847$YN5.437849@sccrnsc01 on 9/27/03 7:32 AM by Tim
    > Morrison [email]sales@kjmsoftware.com[/email]:
    >
    > > An example is:
    > >
    > > KJM Software
    > > P.O. Box 1234
    > > Independence IA 50644
    > > (319) 334-3667
    > >
    >
    > I want to verify that there are no commas after the city and no period
    after
    > the state?
    >
    > Lee
    >

    Tim Morrison Guest

  9. #8

    Default Re: Address Seperation Question

    Thank you very much.... I will work on this.

    Tim

    "Howard Schlossberg" <howard@antispahm.fmprosolutions.com> wrote in message
    news:vnbeh82mpc4a15@corp.supernews.com...
    > Calcs below assume the starting field is called FullInfo. The "P"
    > represents a return character within quotes. Calcs are approximate;
    > they've been tested a little, but should give you a good start even if
    > I've missed a parenthesis or something.
    >
    > Company = Left(FullInfo, Position(FullInfo, "P", 1, 1)-1)
    >
    > Address = Middle(FullInfo, Position(FullInfo, "P", 1, 1)+1,
    > Position(FullInfo, "P", 1, 2)-Position(FullInfo, "P", 1, 1)-1)
    >
    > City = LeftWords(Middle(FullInfo, Position(FullInfo, "P", 1, 2)+1,
    > Position(FullInfo & "P", "P", 1, 3)-Position(FullInfo, "P", 1, 2)-1),
    > WordCount(Middle(FullInfo, Position(FullInfo, "P", 1, 2)+1,
    > Position(FullInfo & "P", "P", 1, 3)-Position(FullInfo, "P", 1, 2)-1))-2)
    >
    > State = MiddleWords(Middle(FullInfo, Position(FullInfo, "P", 1, 2)+1,
    > Position(FullInfo & "P", "P", 1, 3)-Position(FullInfo, "P", 1, 2)-1),
    > WordCount(Middle(FullInfo, Position(FullInfo, "P", 1, 2)+1,
    > Position(FullInfo & "P", "P", 1, 3)-Position(FullInfo, "P", 1, 2)-1))-1,
    1)
    >
    > Zip = RightWords(Middle(FullInfo, Position(FullInfo, "P", 1, 2)+1,
    > Position(FullInfo & "P", "P", 1, 3)-Position(FullInfo, "P", 1, 2)-1), 1)
    >
    > Phone = Middle(FullInfo, Position(FullInfo, "P", 1, 3)+1,
    > Position(FullInfo & "P", "P", 1, 4)-Position(FullInfo, "P", 1, 3)-1)
    >
    > Tim Morrison wrote:
    > > 1. Addresses do not have < >.
    > > 2. Company is ALWAYS on first line.
    > > 3. Addreess is ALWAYS on second line.
    > > 4. Address is ALWAYS 1 line.
    > > 5. City State Zip is ALWAYS on third line.
    > > 6. Phone Number is NOT always present, but if it is present, it is
    always on
    > > the 4th line.
    > >
    > > An example is:
    > >
    > > KJM Software
    > > P.O. Box 1234
    > > Independence IA 50644
    > > (319) 334-3667
    >
    >
    > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    > Howard Schlossberg (818) 883-2846
    > FM Pro Solutions Los Angeles, California
    > Associate Member, FileMaker Solutions Alliance
    >

    Tim Morrison Guest

  10. #9

    Default Re: Address Seperation Question

    The only problem I have come across so far is when the zip is formatted as
    ZIP+4. I will work on this.

    Tim

    "Howard Schlossberg" <howard@antispahm.fmprosolutions.com> wrote in message
    news:vnbeh82mpc4a15@corp.supernews.com...
    > Calcs below assume the starting field is called FullInfo. The "P"
    > represents a return character within quotes. Calcs are approximate;
    > they've been tested a little, but should give you a good start even if
    > I've missed a parenthesis or something.
    >
    > Company = Left(FullInfo, Position(FullInfo, "P", 1, 1)-1)
    >
    > Address = Middle(FullInfo, Position(FullInfo, "P", 1, 1)+1,
    > Position(FullInfo, "P", 1, 2)-Position(FullInfo, "P", 1, 1)-1)
    >
    > City = LeftWords(Middle(FullInfo, Position(FullInfo, "P", 1, 2)+1,
    > Position(FullInfo & "P", "P", 1, 3)-Position(FullInfo, "P", 1, 2)-1),
    > WordCount(Middle(FullInfo, Position(FullInfo, "P", 1, 2)+1,
    > Position(FullInfo & "P", "P", 1, 3)-Position(FullInfo, "P", 1, 2)-1))-2)
    >
    > State = MiddleWords(Middle(FullInfo, Position(FullInfo, "P", 1, 2)+1,
    > Position(FullInfo & "P", "P", 1, 3)-Position(FullInfo, "P", 1, 2)-1),
    > WordCount(Middle(FullInfo, Position(FullInfo, "P", 1, 2)+1,
    > Position(FullInfo & "P", "P", 1, 3)-Position(FullInfo, "P", 1, 2)-1))-1,
    1)
    >
    > Zip = RightWords(Middle(FullInfo, Position(FullInfo, "P", 1, 2)+1,
    > Position(FullInfo & "P", "P", 1, 3)-Position(FullInfo, "P", 1, 2)-1), 1)
    >
    > Phone = Middle(FullInfo, Position(FullInfo, "P", 1, 3)+1,
    > Position(FullInfo & "P", "P", 1, 4)-Position(FullInfo, "P", 1, 3)-1)
    >
    > Tim Morrison wrote:
    > > 1. Addresses do not have < >.
    > > 2. Company is ALWAYS on first line.
    > > 3. Addreess is ALWAYS on second line.
    > > 4. Address is ALWAYS 1 line.
    > > 5. City State Zip is ALWAYS on third line.
    > > 6. Phone Number is NOT always present, but if it is present, it is
    always on
    > > the 4th line.
    > >
    > > An example is:
    > >
    > > KJM Software
    > > P.O. Box 1234
    > > Independence IA 50644
    > > (319) 334-3667
    >
    >
    > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    > Howard Schlossberg (818) 883-2846
    > FM Pro Solutions Los Angeles, California
    > Associate Member, FileMaker Solutions Alliance
    >

    Tim Morrison Guest

  11. #10

    Default Re: Address Seperation Question

    You hadn't mentioned the possibility of zip+4. I'll let you work on it
    a little...but let us know if you have troubles with it.

    Tim Morrison wrote:
    > The only problem I have come across so far is when the zip is formatted as
    > ZIP+4. I will work on this.
    >
    > Tim
    >
    > "Howard Schlossberg" <howard@antispahm.fmprosolutions.com> wrote in message
    > news:vnbeh82mpc4a15@corp.supernews.com...
    >
    >>Calcs below assume the starting field is called FullInfo. The "P"
    >>represents a return character within quotes. Calcs are approximate;
    >>they've been tested a little, but should give you a good start even if
    >>I've missed a parenthesis or something.
    >>
    >>Company = Left(FullInfo, Position(FullInfo, "P", 1, 1)-1)
    >>
    >>Address = Middle(FullInfo, Position(FullInfo, "P", 1, 1)+1,
    >>Position(FullInfo, "P", 1, 2)-Position(FullInfo, "P", 1, 1)-1)
    >>
    >>City = LeftWords(Middle(FullInfo, Position(FullInfo, "P", 1, 2)+1,
    >>Position(FullInfo & "P", "P", 1, 3)-Position(FullInfo, "P", 1, 2)-1),
    >>WordCount(Middle(FullInfo, Position(FullInfo, "P", 1, 2)+1,
    >>Position(FullInfo & "P", "P", 1, 3)-Position(FullInfo, "P", 1, 2)-1))-2)
    >>
    >>State = MiddleWords(Middle(FullInfo, Position(FullInfo, "P", 1, 2)+1,
    >>Position(FullInfo & "P", "P", 1, 3)-Position(FullInfo, "P", 1, 2)-1),
    >>WordCount(Middle(FullInfo, Position(FullInfo, "P", 1, 2)+1,
    >>Position(FullInfo & "P", "P", 1, 3)-Position(FullInfo, "P", 1, 2)-1))-1,
    >
    > 1)
    >
    >>Zip = RightWords(Middle(FullInfo, Position(FullInfo, "P", 1, 2)+1,
    >>Position(FullInfo & "P", "P", 1, 3)-Position(FullInfo, "P", 1, 2)-1), 1)
    >>
    >>Phone = Middle(FullInfo, Position(FullInfo, "P", 1, 3)+1,
    >>Position(FullInfo & "P", "P", 1, 4)-Position(FullInfo, "P", 1, 3)-1)
    >>
    >>Tim Morrison wrote:
    >>
    >>>1. Addresses do not have < >.
    >>>2. Company is ALWAYS on first line.
    >>>3. Addreess is ALWAYS on second line.
    >>>4. Address is ALWAYS 1 line.
    >>>5. City State Zip is ALWAYS on third line.
    >>>6. Phone Number is NOT always present, but if it is present, it is
    >
    > always on
    >
    >>>the 4th line.
    >>>
    >>>An example is:
    >>>
    >>>KJM Software
    >>>P.O. Box 1234
    >>>Independence IA 50644
    >>>(319) 334-3667
    >>
    >>
    >>~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    >>Howard Schlossberg (818) 883-2846
    >>FM Pro Solutions Los Angeles, California
    >>Associate Member, FileMaker Solutions Alliance
    >>
    >
    >
    >
    --
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Howard Schlossberg (818) 883-2846
    FM Pro Solutions Los Angeles, California
    Associate Member, FileMaker Solutions Alliance

    Howard Schlossberg Guest

  12. #11

    Default Re: Address Seperation Question

    I appreciate the help.... Its been awhile since ive worked with FileMaker...
    I do mostly Clarion development now...

    Tim


    "Howard Schlossberg" <howard@antispahm.fmprosolutions.com> wrote in message
    news:vnbhpjo5892213@corp.supernews.com...
    > You hadn't mentioned the possibility of zip+4. I'll let you work on it
    > a little...but let us know if you have troubles with it.
    >
    > Tim Morrison wrote:
    > > The only problem I have come across so far is when the zip is formatted
    as
    > > ZIP+4. I will work on this.
    > >
    > > Tim
    > >
    > > "Howard Schlossberg" <howard@antispahm.fmprosolutions.com> wrote in
    message
    > > news:vnbeh82mpc4a15@corp.supernews.com...
    > >
    > >>Calcs below assume the starting field is called FullInfo. The "P"
    > >>represents a return character within quotes. Calcs are approximate;
    > >>they've been tested a little, but should give you a good start even if
    > >>I've missed a parenthesis or something.
    > >>
    > >>Company = Left(FullInfo, Position(FullInfo, "P", 1, 1)-1)
    > >>
    > >>Address = Middle(FullInfo, Position(FullInfo, "P", 1, 1)+1,
    > >>Position(FullInfo, "P", 1, 2)-Position(FullInfo, "P", 1, 1)-1)
    > >>
    > >>City = LeftWords(Middle(FullInfo, Position(FullInfo, "P", 1, 2)+1,
    > >>Position(FullInfo & "P", "P", 1, 3)-Position(FullInfo, "P", 1, 2)-1),
    > >>WordCount(Middle(FullInfo, Position(FullInfo, "P", 1, 2)+1,
    > >>Position(FullInfo & "P", "P", 1, 3)-Position(FullInfo, "P", 1, 2)-1))-2)
    > >>
    > >>State = MiddleWords(Middle(FullInfo, Position(FullInfo, "P", 1, 2)+1,
    > >>Position(FullInfo & "P", "P", 1, 3)-Position(FullInfo, "P", 1, 2)-1),
    > >>WordCount(Middle(FullInfo, Position(FullInfo, "P", 1, 2)+1,
    > >>Position(FullInfo & "P", "P", 1, 3)-Position(FullInfo, "P", 1, 2)-1))-1,
    > >
    > > 1)
    > >
    > >>Zip = RightWords(Middle(FullInfo, Position(FullInfo, "P", 1, 2)+1,
    > >>Position(FullInfo & "P", "P", 1, 3)-Position(FullInfo, "P", 1, 2)-1), 1)
    > >>
    > >>Phone = Middle(FullInfo, Position(FullInfo, "P", 1, 3)+1,
    > >>Position(FullInfo & "P", "P", 1, 4)-Position(FullInfo, "P", 1, 3)-1)
    > >>
    > >>Tim Morrison wrote:
    > >>
    > >>>1. Addresses do not have < >.
    > >>>2. Company is ALWAYS on first line.
    > >>>3. Addreess is ALWAYS on second line.
    > >>>4. Address is ALWAYS 1 line.
    > >>>5. City State Zip is ALWAYS on third line.
    > >>>6. Phone Number is NOT always present, but if it is present, it is
    > >
    > > always on
    > >
    > >>>the 4th line.
    > >>>
    > >>>An example is:
    > >>>
    > >>>KJM Software
    > >>>P.O. Box 1234
    > >>>Independence IA 50644
    > >>>(319) 334-3667
    > >>
    > >>
    > >>~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    > >>Howard Schlossberg (818) 883-2846
    > >>FM Pro Solutions Los Angeles, California
    > >>Associate Member, FileMaker Solutions Alliance
    > >>
    > >
    > >
    > >
    >
    > --
    > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    > Howard Schlossberg (818) 883-2846
    > FM Pro Solutions Los Angeles, California
    > Associate Member, FileMaker Solutions Alliance
    >

    Tim Morrison 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