Leemi
Mon Feb 02 14:08:55 CST 2004
Hi George:
>What is the best migration tool for VFP 6.0 ?
> George Malekkos
Here are some resources on converting FoxPro 2.x code in to visual FoxPro.
Is this what you need?
Chuck Urwiler's FoxPro Advisor article at:
<
http://foxproadvisor.com/doc/05239>
Also, this is a link to an older white paper on converting from FoxPro 2.x
to VFP 5.0. While the information is a little old, much of it is still
applicable to later versions:
http://msdn.microsoft.com/archive/default.asp?url=/archive/en-us/dnarfoxgen/
html/msdn_movfox.asp
I hope this helps.
This posting is provided "AS IS" with no warranties, and confers no rights.
Sincerely,
Microsoft FoxPro Technical Support
Lee Mitchell
*-- VFP8 HAS ARRIVED!! --*
Read about all the new features of VFP8 here:
http://www.universalthread.com/VisualFoxPro/News/VFP8Release.asp
Purchase VFP8 here:
http://shop.microsoft.com/Referral/Productinfo.asp?siteID=11518
Keep an eye on the product lifecycle for Visual FoxPro here:
http://support.microsoft.com/default.aspx?id=fh;[ln];lifeprodv
- VFP5 Mainstream Support retired June 30th, 2003
- VFP6 Mainstream Support retires Sept. 30th, 2003
>Dear All
>I am having problems with mapi sending faxes with Outlook 2000 sp3, xp and
>2003. Early version are ok. I am getting to a point where I think it may be
>a security issue. Sending a normal fax is ok, but if I attach a *.tif file
>it comes up undeliverable with the message
>The Microsoft Fax transport failed to deliver the message to the recipient.
>Not all attachments can be rendered.
>Here is my code, I have changed the fax number.
>objSession = CreateObject("Mapi.Session")
>objSession.Logon ()
>MESSAGEBOX("CDO version installed is "+trans(objSession.Version))
>objMessage = objSession.Outbox.Messages.Add
>objMessage.Subject = "Test"
>objMessage.Text = "This is a test with an attachment"
>objRecipient = objMessage.Recipients.Add
>objRecipient.Name = "[FAX:5555555555]"
>objRecipient.Type = 1
>objRecipient.Resolve ()
>objAttachment = objMessage.Attachments.Add()
>objAttachment.Position = 0
>objAttachment.Type = 1
>objAttachment.ReadFromFile("C:\B.TIF")
>objAttachment.Source = "C:\B.TIF"
>objAttachment.Name = "B.TIF"
>objMessage.Send ()
>objSession.Logoff
>Thank you for any help
>David
>Anagram Systems Limited
>work email: david@anagram-sys.co.uk