Search results

  1. W

    Error that annoys me

    This error appears when you have had a remote disconnection while updating the database
  2. W

    E-mail report to multiple persons

    Use multiple address.
  3. W

    Format of decimal in browse

    You need to make the Query a free form query and then put it in the DISPLAY trigger, which really isn't a trigger at all but thats progress for ya. I think thats were Franco was going with that.
  4. W

    Retrieving the Windows Password

    I need to retrieve the windows password our users signed on with so that I can pass it into all of their login screens. This way they only have to log in once to the Terminal server and run all the applications using that password. Thanks
  5. W

    duplicate items in combo-box: wrong screen-value returned

    Good Deal, I can't believe there are so many errors in progress like these. MY favorite solution is (WE didn't wanna fix it so go spend thousands of dollars and upgrade to progress 10 if you dont want the error.... lol.
  6. W

    Temp Table question

    Either way should work just make sure you run your reload browser procedure anything you add or make changes to the temp tables information. It will not update on its own, you have to tell it to. Pseudo Code: Program Start. Enter data in screen objects (combo boxes, editors, etc.) Save to temp...
  7. W

    Temp Table question

    Try: CLOSE QUERY browserName {&OPEN-QUERY-browserName} &br[space bar] is also a shhortcut for the close query.
  8. W

    Temp Table question

    Make sure your Temp table is being created Before your browser is loaded. Uncheck the "Open the query" checkbox in the browser setting, then create a procedure that reopens the query for your browser, make sure you create your temp tables then open the query for the browser.
  9. W

    cscombox box drop down

    Good Stuff!
  10. W

    Microsoft Word

    Can anyone tell me where I can get the list of CDO objects I can use to manipulate a word doc using the Word.Basic com object? Thanks
  11. W

    duplicate items in combo-box: wrong screen-value returned

    Then thats simple, remove the sort option, and when your loading your combo box FOR EACH table NO-LOCK: comboBox:ADD-LAST(stuff,stuffID). END. All you need to do is put a BY clause, Ex: FOR EACH table NO-LOCK BY table.stuffID: comboBox:ADD-LAST(stuff,stuffID). END. You can also...
  12. W

    cscombox box drop down

    No, if you know what :PRIVATE-DATA is, it's basically the same as the List-item-pairs only for combo boxes and selection lists, etc. It displays the first value that you add and hids the second value behind. Say you want to show an employees name but you want their employee ID stored behind as...
  13. W

    cscombox box drop down

    Well in this case, you could use list-items for one combo box and list-item-pairs in the second to store the ids behind the description. Just a suggestion.
  14. W

    Temp Table question

    Yes, this is very common with a lot of developers but it gets a little complicated because the browser needs to be a free form query. Unless your user is going to be changing a lot of fields repeatedly I would just assign the values to the table when you write them and skip the whole temp table...
  15. W

    cscombox box drop down

    No it really isn't. If you have both combo boxes populated with the same information then on the "value-changed" trigger of the first combo box set the screen-value of the first combo box to the second. Ex. ON "value-changed" OF comboBox1 DO: comboBox2:SCREEN-VALUE =...
  16. W

    duplicate items in combo-box: wrong screen-value returned

    I would check to see if your combo Box has the "Sort" property checked, Not sure if this will solve your problem but its worth a shot.
  17. W

    Trouble with a com-handle error

    You noob programmer! lol j/k Glad you got it working and I didn't have to come over to your cube and figure it out for you, lol.
  18. W

    MAPI Session

    I posted this in development before I realized there was an API section. If anyone can shed some light on the situation it would be greatly appreciated. I'm trying to access the Read Receipt for the MAPI session with no luck. Thanks.
  19. W

    Mapi

    Our company sends electronic Invoices but some of our customers are saying they aren't receiving them. Can anyone give me some instruction on how to enable the read receipt of the MAPI session we use an exchange server not SMTP. Would be much appreciated, thanks!
  20. W

    User ID Session Variable

    Thanks, wow I feel stupid it was that easy, lol
Back
Top