Search results

  1. L

    How to create New Record in Browse?

    Creating a new record in a browse is the same as creating a new record. The only difference is to appear in the browse, the criteria of the row created must match that of the query for the browse. Hard to say without seeing your browse query, though if the browse query has criteria where...
  2. L

    IsNull/Coalesce problem

    CASE var: WHEN 'whatever' THEN DO: /* procedure block here */ /* select * from openquery(sosprogress, 'SELECT cl-code, a-name, a-full-address, IsNull(Contact1, Contact2) FROM clidb')*/ END. WHEN 'whatever' THEN DO: /* procedure block here */ /* select * from openquery(sosprogress, 'SELECT...
  3. L

    hi

    One Worl One Wait-For. No it is not possible to trigger 2 procedures from 1 event. However the 1 procedure that is triggered CAN have trigger multiple procedures, eg RUN proc , PUBLISH event. Use any 4GL method you are happy with to trigger the other procedures.
  4. L

    Num records in table

    Windows, OpenEdge 10.1 Is there a function in the 4GL to return the number of records in a table, to save doing the manual for each table , increment integer? TIA
  5. L

    Current page / page num attribute?

    Progress OpenEdge 10, Windows. Wht is the attribute for the current page? I wish to retrieve the current page of my Smart Window. TIA
  6. L

    Any Future in Progress???

    Greetings, The question should read, "Any future NOT in Progress", now Progress OpenEdge. The Progress tool is brilliant. 1 attribute is the brilliant db, comparable with Oracle though arguably better THEN there is the 4GL. This is PSC's advantage over Oracle. The dbs are comparable with...
  7. L

    EXPORT fuction to Display a Blank

    Dude work this into your application syntax. DO: /* output */ OUTPUT TO VarPath. /* path of output doc eg. 'c:\temp' */ DEFINE STREAM stDoc OUTPUT STREAM stDoc TO VarPath. /* open stream output */ DISPLAY /* field list */ . OUTPUT CLOSE. /* important to close the stream - DO NOT leave just...
  8. L

    Blocking Alt+F4

    M$ Joey dude, RE: alt-f4 raises the endkey condition, like, esc >>My point exactly you are NOT using a default trigger, like with most of the brown stuff that is called Windows. You are using work arounds. The ALT-F4 event (close current dialog event) is NOT being used, it has been...
  9. L

    How to activate Eclipse Intellisense (type-ahead)?

    PSC introduced this method way earlier than Progress OpenEdge 10. They tried with the Alias method in ? V9 ?
  10. L

    Blocking Alt+F4

    actual RE: lord, never say never >> I did not say never. There are obviousley work arounds - it is M$ Windows and no 1 way is correct or limited.
  11. L

    Blocking Alt+F4

    Will not work. Alt+F4 is a M$ Windows action. It is the default method to close the open window. Much like CTL+C (Copy) / CTL+V (moVe). The Progress OpenEdge 4GL sits onTop of the OS (Windows)
  12. L

    [notice] child pid 32974 exit signal Segmentation fault (11)

    RE: i have a problem getting information from a progress database, connecting goes fine How do you know connection is fine? when i do a query i got the following error You obviousley are NOT conected just fine, if you can not interrogate the DB. Write a noddy proc that will...
  13. L

    Handle to last focused Widget

    Long Hand Greetings, WithOut knowing exactly the deployment it is hard to suggest methods / solutions. However you could use any of the long hand methods. A solution / method would be to walk the widget tree. You could use a var to store the name of the widgetupon execution. The walk tthe...
  14. L

    Handle to last focused Widget

    Without going through my docs, I could not answer if there is an attribute / property you could use directly. Also you did not specify the Progress version either to be applicable with. However you could do it the long-hand method. Define a var handle DEF VAR vidgetHdl AS HANDLE NO-UNDO. Then...
  15. L

    BLOB / CLOB data type

    Could somebody explain the uses of these data types. Offering real world examples. TIA
  16. L

    Manual highlight part of fill-in

    Design time You mean the "frame / curser" that Windows uses at design time. That is NOT available from Prowin 32 at runtime.
  17. L

    ?? Sql ??

    Greetings, This may not be the appropriate forum, though I will try. I wish to use Progress OpenEdge 10 AND SQL together. How do I link SQL with Progress?? I have Progress OpenEdge 10 sat on my box, with SQL sat on my server. I wish to use Progress to interrogate SQL, I also have Oracle sat...
  18. L

    Progress > SQL

    Greetings, Running Progress OpenEdge 10 on Windows 2000, how do I get Progress and SQL working together???
  19. L

    How to convert a progress program (.p) to an executable file (.exe)

    exe As poinbted out earlier, it is NOT possible to create an executable file to package a Progress OpenEdge product (or earlier versions). You need Progress installed on the box you wish to execute from. However You CAN create the illusion. If PSC is installed at a given generic path across...
  20. L

    Word - Headers & Footers

    Static?? Why are you trying to do this on-the-fly (dynamicaly). Why not just create a word document, with the headers and footers required. Simply OUTPUT THROUGH - THAT document, using it in the template method. If you can NOT use a generic file, could you use a number of generic files to be...
Back
Top