Search results

  1. S

    O/t Whole-index

    Try the following, it should still be on index: FIND FIRST book WHERE isbn > "" USE-INDEX i-isbn NO-LOCK NO-ERROR.
  2. S

    ???? Radius ?????

    LOL, another "Back to the future" fan. I Couldn't help having a little joke with you, my posting is an analogy of your posting in the previous thread of this group (See "previous thread" link). Couldn't help having a little fun with you. But seriously I'd say the reason for no seperate...
  3. S

    ???? Radius ?????

    WILL NOT WORK, How will windows know to make this a hyperlink to execute in a browser? You CAN NOT use populate a message box with Radius Solutions. PROWIN32 doesn't interact with PECAS that way. :lol:
  4. S

    pstimer and multiple programs

    Try disabling the timer before the leaving the second procedure first or second. All your base....
  5. S

    3D Colors

    This should also work (sets color 17 as buttonface color). procedure GetSysColor external "user32.dll": def input parameter nIndex as long. def return parameter ocolor as long. end procedure. def var iButtonface as int no-undo. run GetSysColor(15, output iButtonface). if...
  6. S

    error 657 -> codepage

    -s (stacksize) option is passed to progress on the command line or from within a pf file. The error 657 is probably being caused by a logic problem in your code that passes a big value to the substring starting position or length. You might be able to make use of the replace statement instead...
  7. S

    Progress Programming help

    Do you have any of the printed manuals (I think they were still printed manuals in V7) that came with progress handy? The programming handbook is quite a good place to start.
  8. S

    V9 Handling Numerics on Input

    After using vi - they should reset your terminal. Are you calling vi from a progress session with the UNIX SILENT command? I can understand how this would cause a fair amount of trouble with the progress display.
  9. S

    Progress Developer, Southwest UK

    Can't say I know much about the UK progress market. Brisbane, Sydney and Melbourne have all picked up over the last 6 months or so. I hope it's a trend that continues, contract rates in OZ are still down a bit compared to 99/2000, but we aren't seeing the mad rush for full-time positions that...
  10. S

    Progress Developer, Southwest UK

    Please tell me your not STILL looking now ;p
  11. S

    V9 Handling Numerics on Input

    ljb1: Are you using any EDITING blocks on your UPDATE statements or PUT CURSOR/PUT SCREEN statements? Perhaps try a simple program like this to test: DEF VAR iValue AS DECIMAL DECIMALS 3 FORMAT "9,999.999" NO-UNDO. DEF VAR cName AS CHAR FORMAT "x(60)" NO-UNDO. UPDATE ivalue LABEL "Value" cName...
  12. S

    Touchscreen application with Progress 4gl

    If your application runs with 1 or 2 specific touch screen devices, you may be able to just look at the running processes or the registery eg: HKEY_LOCAL_MACHINE\HARDWARE\DEVICEMAP\PointerClass This won't work if you have both mouse and touch screen, or VNC/PC Anywhere and touch screen...
  13. S

    URL in messages not working

    No you have misunderstood. The message was for Chris Schreiber and I was refering to the forum and the inability to post URLs in forum messages, as my example post shows.
  14. S

    Help generating dynamic for each

    Dynamic queries seem a little complex initially, but they are quite powerfull. You can also use a standard for each statement in a number of different ways to achieve a fair amount of flexability. Here are some examples, but using dynamic queries is usually more efficient. def var vIDlist as...
  15. S

    URL in messages not working

    Chris, I seem to be having trouble putting URLs into messages eg: http://www.progresstalk.com/showthread.php?t=65113
  16. S

    Help generating dynamic for each

    I you are using progress 9 or above you can use dynamic queries. They are a little complex, start with the following discussion: www.progresstalk.com/showthread.php?t=65113
  17. S

    How do I repeat this set of code?

    To loop just use a named block eg: /* ... */ MAIN-LOOP: repeat on END-KEY undo, leave: /* WANT TO COME BACK TO HERE FROM BELOW */ /* UNLESS THE USER PRESS F4 */ assign starttot = 0 item = "". update item label "What Item (or leave blank to exit and print)" with frame witem. /* ...
  18. S

    Excel text box & lines

    Best bet with working out these sort of things is to record a macro that does what you want and then edit it. If you need values for constants (like msoArrowheadLengthMedium) just assign a cell value to the constant in your macro :). DEFINE VARIABLE chExcel AS COM-HANDLE NO-UNDO. DEFINE...
  19. S

    What code will do this?

    How about this DEF TEMP-TABLE ttNames FIELD eDate AS DATE FIELD FirstName AS CHAR FIELD ID AS CHAR. DEF BUFFER bttNames FOR ttNames. CREATE ttNames. ASSIGN Edate = 10/07/04 FirstName = "Bill" ID = "N-12345". CREATE ttNames. ASSIGN Edate = 10/08/04 FirstName = "Mary" ID = "N-54321"...
  20. S

    Help with printing direction please

    Looks like something funny is happening with posting links. You may have to type the text in the address field manually: http://tinyurl.com/4gz6g or http://www.tek-tips.com/viewthread.cfm?qid=687795 This is just one idea on a possible solution. Many character terminals (wyse60 for...
Top