Search results

  1. S

    What is happening in this code ??

    This error message about "Duplicate Index" appearing the 2nd time or even the 3rd time happens at the end of your procedure. I am not sure why, but it could be that the error is serious enough that Progress wants to inform you again when it exits the procedure. Or it could be a minor quirk...
  2. S

    Import Csv into Excel -Trailing Minus Number

    In tyring to import a CSV file into Excel using Progress, I have found that Trailing negative numbers in the Csv file are imported and treated as Text by Excel rather than numbers. Excel's OpenText method has a param, which I had assumed to be the 13th param called "TrailingMinusNumbers" which...
  3. S

    Import csv into Excel - FieldInfo

    Yes your code does work except that I think you missed out to put the "-" sign infront. This is definitely one option I can use - thank you. ASSIGN BCellValue = "-" + SUBSTRING(BCellValue,1,LENGTH(BCellValue) - 1) WHEN SUBSTRING(BCellValue,LENGTH(BCellValue),1) =...
  4. S

    Import csv into Excel - FieldInfo

    My source file DOES have trailing minus sign. I have done a Google search and it is confirmed that Trailing minus sign is treated as a Text rather than numeric. Via Progress Com Object Viewer, "Workbooks:OpenText()" shows 13 parameters available which is upto FieldInfo and excludes...
  5. S

    Import csv into Excel - FieldInfo

    Your code should work but it does not in my case. Because there is another problem - the negative numbers I have in the csv files are with TRAILING minus sign. After import these negatiive numbers seem not be recognised as negative numbers by Excel. Tried setting TrailingMinusNumbers which is...
  6. S

    Import csv into Excel - FieldInfo

    Import csv into Excel 2007 - FieldInfo I am trying first time to open Excel (Excel 2007 Trial version) from Progress (OE10.1B) and to import a csv file into Excel. The file is delimited by semi-colon rather than comma. The current codes :- Def var ExAppl as com-handle. CREATE...
  7. S

    Programmatically dial-up modem

    Does anyone know how to programatically dial-up to another computer, ( in order to do some processing) and then programatically disconnect from that computer when it is done? Thanks for any help.
  8. S

    Prompt-for - deprecated in V10?

    Prompt-for is the high-level equivalent or combination of 3 commands: enable, wait-for, disable. Using prompt-for and even higher-level commands like SET or UPDATE has not stop me from coding and using UI triggers in relation with them. The only difference I can see is that in wait-for, you...
  9. S

    Prompt-for - deprecated in V10?

    Would you be kind enough to explain why it is not a good idea? Or could you point to some documentation? I would be interested to know why and whether any recommended alternative is indeed better.
  10. S

    Prompt-for - deprecated in V10?

    It's the other way round. SET can be replaced by PROMPT-FOR and ASSIGN. The Progress recommendation of replacing PROMPT-FOR with SET or UPDATE is NOT right.
  11. S

    Prompt-for - deprecated in V10?

    Yes you are right that the only possible option is to replace the prompt-for with 3 commands: enable, wait-for and disable. But isn't it easier to use only a single prompt-for? It's sometimes not a straight-forward 3 for 1 replacement. There's a need to also take care to disable the...
  12. S

    Prompt-for - deprecated in V10?

    Does anyone here use Prompt-for? I do. And I found to my dismay that it is listed on the Deprecated list of commands in Version 10.1A. :blue: The recommeded replacement commands of set/update aren't useable. Comments anyone?
  13. S

    Why does this site charge for the search feature

    Hullo Chris Thanks for replying. So the search tool is currently the same. Perhaps there could be some explanation on how to get great search result. Frankly, I don't know what you mean by Naturual language :blush:. And I am guessing that Boolean means you can use AND / OR and perhaps...
  14. S

    Why does this site charge for the search feature

    Search Tool I distinctly remember that the Search tool here was great. It returned very useful results, better results than the one at PEG. But recently it does not seem to return good results. Was there a change? The Seach tool avalable in the Paid subscription, would it return better results...
  15. S

    Why does this site charge for the search feature

    I am making use of the excellent feature whereby I can subscribe to threads that I am interested in. By default, ProgressTalk would notify me IMMEDIATELY via email of any reply to threads that I started or that I participate in. On top of that the email notification contains the content of...
  16. S

    Why does this site charge for the search feature

    You are right that PEG has existed much earlier than PRogresTalk. As far as I know, they have not upgraded - still Email-based which I find cumbersome. I don't want to receive tons of email. Here, I can't find any import from PEG anymore - has it been forced off ProgressTalk? I know there...
  17. S

    Why does this site charge for the search feature

    Hmmm. I find the Search is not as useful as it once was. It returns lots of results which are not as relevant as before.... Is something changed? What's the time limit after which I cannot edit my own post? It appears Edit option is unavailable after only a few hours. To Chris: Webpage...
  18. S

    Why does this site charge for the search feature

    Why don't some peggers here put some good words to these people and get some of them to come here often or at least once in a while? I like the modern-looking, easy to use ProgressTalk. I have been to peg and don't quite know how to use it. :eek: :blush: SKc
  19. S

    How to change space reserved for fill-in widgets?

    Hullo Mike Thanks for your post. Your suggestion seems like a runtime dynamic lengthening of the width based on actual data. It's more sophisticated than what I need. ;p To clarify: I have a customer.name field that is format "x(35)". When this field is defined in a typical frame of...
  20. S

    Changing Printer Font at RunTime

    Hullo Babel Thanks for your suggestion. I have already used a different way - ie. to use _osprint and passing it a font-no that is defined in the progress.ini file. It works this way too. Thanks again. Regards
Top