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

Recent content by SoftArt

  1. SoftArt

    Grid - control source being ignored.

    Have you tried recreating the grid, it doesn't have very many columns... Thomas
  2. SoftArt

    html editor

    Hello I would like to enable an html editor for capturing formatted texts in a vfp form. Does anyone have experience or sample code e.g. for zoople? Thomas
  3. SoftArt

    drag & drop attachment from outlook

    So, my new solution works :) Shortened code for selected attachments loOutlook = CREATEOBJECT( "Outlook.Application" ) loSelected = loOutlook.ActiveInspector.AttachmentSelection FOR i = 1 TO loSelected.Count MESSAGEBOX( loSelected.Item(i).FileName ) * or...
  4. SoftArt

    drag & drop attachment from outlook

    Chris, interesting idea, I want to try it. But I would think that marked attachments for AttchmentSelection are also selected for drag & drop. Thomas
  5. SoftArt

    drag & drop attachment from outlook

    Tamar, with this example all attachments are read out and saved/displayed. (TextBox.OLEDragDrop) I don't know where I would have to use AttachmentSelection. Thomas * Create Outlook Application object oOutlook = CREATEOBJECT("Outlook.Application") oNamespace = oOutlook.GetNamespace("MAPI") *...
  6. SoftArt

    drag & drop attachment from outlook

    Tamar, I rejoiced a little too soon. With your code I get information on all the attachments contained in the mail, but not the currently selected. I have experimented a bit with AttachmentSelection but I can't get any further. Do you have another idea for me? Thomas
  7. SoftArt

    .dbf files mysteriously gone missing (or being deleted)

    Vince, have you run a virus scanner and checked whether the dbf files have been quarantined? Thomas
  8. SoftArt

    drag & drop attachment from outlook

    Tamar, in found a little bug in your code: oObjColl = ThisForm.oOutlook.oExplorer.Selection must be oObjColl = ThisForm..oExplorer.Selection after that modification I got the attachement object and it´s SaveAsFile method. Many thanks you for help und greetings from Germany. Thomas
  9. SoftArt

    drag & drop attachment from outlook

    Tamar I know your example, but I don't see any code to create the file.
  10. SoftArt

    drag & drop attachment from outlook

    Yes, the file (pdf) should then be copied/created in VFP app to a specific directory.
  11. SoftArt

    drag & drop attachment from outlook

    Hi Foxis, I am familiar with drag & drop of files from explorer, but i need help with drag & drop of outlook attachments (pdf) Does anyone have an example code for this? Thomas
  12. SoftArt

    Getdir() fails to return empty USB-disk

    Hi Rune, I can reproduce the behavior, is that an alternative for you: GETDIR("","","") Thomas
  13. SoftArt

    How to find the last input by product in a table which contains different products

    Hello Tamar Hello Chris, thank you for your comments and again something learned. Thomas
  14. SoftArt

    How to find the last input by product in a table which contains different products

    Hello Chris, you are absolutely right, this only works with SET ENGINEBEHAVIOR 70. Regards Thomas
  15. SoftArt

    How to find the last input by product in a table which contains different products

    Hallo Klaus, das würde auch gehen: SELECT NAME, PRICE, MAX( PDATE ) AS MAX_PDATE FROM myTable GROUP BY NAME INTO CURSOR myCursor Grüße Thomas

Part and Inventory Search

Back
Top