Recent content by TomScott

  1. T

    Issue adding an extent to a v9 database

    @Rob Fitzpatrick well, you've pretty much blown my mind with this. Thank you for this write-up and I apparently have some research to do. I hope you have a great day.
  2. T

    Issue adding an extent to a v9 database

    Thanks @TomBascom. The separate file is what did it. We're actually creating these databases from another system so we don't really have an option to create less data unless we remove system files. Now upgrading might make sense, but this was helpful for now. Hope ypu have a good one.
  3. T

    Issue adding an extent to a v9 database

    I'm working on a v9 progress db that's running out of room in the db. I've been researching extents but am unsure of if my understanding is correct and if it is, why my syntax isn't working. Here is my .st file: # b E:\System\D\testdb.b1 # d "Schema Area":6,32 E:\System\D\testdb.d1 d "Schema...
  4. T

    Exporting from Outlook into Progress program

    Hey thanks, it's definitely moving me in the right direction. Have a good one.
  5. T

    Exporting from Outlook into Progress program

    No, but thank you for the suggestion, I get the error, GetContact. Unknown name, then invalid component handle, and incompatible data types.
  6. T

    How to pull information out of outlook?

    I understand how to go to outlook with code like: def var vhOutlook as com-handle no-undo. def var vhTask as com-handle no-undo. create "Outlook.Application":u vhOutlook connect no-error. if error-status:error then create "Outlook.Application":u vhOutlook. vhTask =...
  7. T

    Exporting from Outlook into Progress program

    Any help of any kind? some suggestions?
  8. T

    Exporting from Outlook into Progress program

    I have now gotten it to atleast affect my prospect.email, however it only puts "hitem:name" in there, I can't use standardized fields like fullname,email,companyname. And then the name isn't only the name, and it only pulls the first contact. So I get " Bob Smith (bsmith@test)...
  9. T

    Exporting from Outlook into Progress program

    I have at least gotten this to affect my prospect.email . It will now load "name" I don't know where it gets the information and I can only have Bob Smith in my contact list but it's doing something. Any ideas about how to differentiate between contacts and how to use outlook standard fields...
  10. T

    Exporting from Outlook into Progress program

    I realize the FIND prospect code at the top is unnessary, I was trying something and forgot to take it out.
  11. T

    Exporting from Outlook into Progress program

    I am reasonably new to programming so please try to ignore any obvious questions I might ask. I am trying to create a link back and forth between a CRM program I have and outlook. I currently can go to outlook but not the other way around. Here's that Code. DEF VAR hout as com-handle. DEF...
  12. T

    Import files into outlook

    Thanks alot, good stuff.
  13. T

    Import files into outlook

    Where could I find a list of other ways to reach out to outlook. Say instead of a contact I wanted to create an email itself, and then instead of fields such as fullname and email, there would be cc,bcc,etc. I've tried other methods of this, ex. os-command, but I run into issues with the body...
Back
Top