Matt - I tried to capture JUST that character - and then print it using
your suggestion - but, it just didn't work. When I captured it - then
tried to insert it between the Quotes as such:
        print ASC("<put your char in here>")

It actually put Nothing between the quotes and return a value of Zero!

AT this point - I'm going to try some of Fred's suggestions - after I
get back from my lunch break...

Thanks,
-K-


-----Original Message-----
From: [email protected] [mailto:[email protected]]
On Behalf Of M Jarvis
Sent: Thursday, August 16, 2012 1:22 PM
To: [email protected]
Subject: Re: EDI, Hex & VFP - Oh My...

On Thu, Aug 16, 2012 at 9:54 AM, Kurt Wendt <[email protected]>
wrote:
> As such, I figured I would try to implement via the Hexcode. But, how
exactly do I use HexCodes in VFP. I know the ASC() and CHR() commands,
but, AFAIK - that's for purely Ascii code and NOT for Hex code.
>

Copy the char to the clipboard.

In VFP command window, type (good grief it's been a long time)

print ASC("<put your char in here>")

This will tell you the ascii code that makes the character. Let's just
say its number 67.

In your code, when you want to print the code to the file as text, use

CHR(67)

Does that answer your question?
-- 
Matt Jarvis
Eugene, Oregon USA

[excessive quoting removed by server]

_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: 
http://leafe.com/archives/byMID/profox/289ea162f5642645b5cf64d624c66a140e260...@us-ny-mail-002.waitex.net
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.

Reply via email to