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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. RichardH

    sys(3)

    GUID seems to be what I need. I have users at headquarters and also users running around with laptops. They will all be entering data which will be combined into one data table at HQ and I need a unique id# for each record.
  2. RichardH

    sys(3)

    Thanks for the help. It appears that the Microsoft GUID is exactly what I need.
  3. RichardH

    sys(3)

    Can anyone tell me more about sys(3). I know it generates a randum number, but what is it based on. Will it always be unique over time and on different computers. I want to be able to generate randum numbers on different computers and be sure that they are all unique. Thanks
  4. RichardH

    Unicode support

    Can anyone tell me if Visual Foxpro is Unicode compliant (http://www.unicode.org) and if so, what version of Unicode and VFP. Thanks.
  5. RichardH

    Printing to PDF file

    In my application I allow the user to print to an Adobe PDF file by selecting "Adobe PDF Writer" as the printer. This works fine except that it always assigns a default file name of "Visual FoxPro.pdf". Is there anyway to change that? Thanks...Rick
  6. RichardH

    Report pages

    Thanks Ramani, That certainly got me on the right track. I did have to use the Print When glContinuePage = .t. option on the Footer textbox, but then worked like a charm. Thanks!
  7. RichardH

    Report pages

    I would like to print "Continued on Next Page" on the bottom of each page of a report except the last page of the report (or the first page, if it is a single page report). I know about the "Print When" option, but don't know if there is a statement I can use to determine if...
  8. RichardH

    Email problem with Outlook XP

    Well I think I have finally figured it all out. Thanks Mike for all your help. As it turns out your code for Outlook Redemption was correct. To populate the body of the message your code suggestion: SafeItem.body="Put text of message here" does work, it just didn't appear to be...
  9. RichardH

    Email problem with Outlook XP

    Mike Krausnick, Thanks again for keeping after this. The West-Wind WWIPStuff was a no-go becuase it required to much setup on my users computers, which I can't fully control and the CDO stuff seems to be going nowhere. This leaves me with Outlook Redemption with which I seem to be very very...
  10. RichardH

    Email problem with Outlook XP

    mgagnon..Thanks again, Unfortunately still no luck. I have tried the CDO with the recipient outside my domain with the same bad results. The MAPI Ssssion may work, but I would need some more code. You example doesn't have a place to enter the recipients email address and just brings up...
  11. RichardH

    Email problem with Outlook XP

    Still struggling. I installed CDO from the original Office XP Professional CD, since it was not installed by default. But I still get the same error as before on the oMSG.Send() command. "OLD IDispatch exception code 0 from?: The server rejected one or more recipient addresses. The...
  12. RichardH

    Frontpage 2002 Discussion Web is terrible

    I just upgraded from FrontPage 98 to FrontPage 2002 and am not happy. The one and only reason I use FrontPage is to create and manage a web discussion group. Not only are there no enhancements in the 2002 version, but it has a problem that in my mind makes it unusable. When a visitor posts a...
  13. RichardH

    Email problem with Outlook XP

    mkrausnik, THANK YOU! I may be be near solving this problem. I was able to acutually send an email using the "Redemption" and the code you supplied. I do have a couple of more questions if you don't mind giving me more help. 1. How do I add the text or body of the email? 2. It...
  14. RichardH

    Email problem with Outlook XP

    wgcs - thanks for the translation, but unfortunately that code doesn't work for me. I get the following error on the line "oItem = Application.CreateItem(0)" "OLE error code 0x80020006 Unknown name." I installed the software of "Redemtion for Outlook". Does...
  15. RichardH

    Email problem with Outlook XP

    Mgagnon...Thanks again. Still struggling here. I am using VFP 6.0 Windows XP (Home) and Outlook XP. I performed a search for "CDO.dll" and it doesn't exist on this computer. Is there anything else I need to install or look for? Once again this is the exact code: oMSG =...
  16. RichardH

    Email problem with Outlook XP

    Thanks mgagnon, You seem to have the solutions I am looking for but hopefully you or someone else can give me just a bit more help. I like the CDO.dll solution best becuase it doesn't require that my users install a patch, BUT I get an error when I try to use it on a Windows XP machine. I...
  17. RichardH

    Email problem with Outlook XP

    I have been using code similar to this to create a bulk email for everyone in the table mydatabase: scan oApp = createObject("Outlook.Application") oMail = oApp.CreateItem(0) oMail.to=alltrim(mydatabase.emailaddress) oMail.subject = "Subject here" oMail.body =...
  18. RichardH

    Pocket PC and Visual Foxpro

    Thanks Dave, I think that is exactly what I was looking for. Richard
  19. RichardH

    Pocket PC and Visual Foxpro

    Does anyone know of development software that can be used to build a simple application the runs on a Pocket PC that reads and writes data to Visual Foxpro or Dbase files? Thanks...
  20. RichardH

    Pocket PC and Visual Foxpro

    Does anyone know of development software that can be used to build a simple application the runs on a Pocket PC that reads and writes data to Visual Foxpro or Dbase files?

Part and Inventory Search

Back
Top