Search results

  1. J

    Question How to use Delete-Current-Row() method?

    Hi Reynold, If you would want to delete a row on the "Row Display" event would it not be better to tune the where phrase of your browser query? Thanks Joel
  2. J

    Question Sonic 2013 and SonicMQ 8.5 / 8.6

    Thanks RealHeavyDude.
  3. J

    Question Sonic 2013 and SonicMQ 8.5 / 8.6

    Dear All, I am not sure if this is the right forum to ask a Sonic query. I did a lot of googling regarding this but in vain. Could someone let me know if "Sonic 2013" and "SonicMQ 8.5 or 8.6" are the same versions or are they different. Are they from the same vendor. I find references to...
  4. J

    Reading the contents of a cell in a .Net DataGridView

    Dear All, I am working in OE 10.2A Could someone let me know how to read the value / contents of a cell in a .Net datagridview given a Row Index and column index. Thanks, Joel
  5. J

    Where do I specify the "MIN-SIZE" in the OE Architect

    Dear All, Need your help. I am working in OE 10.2A (Architect - using .Net Framework) and getting the following error "Could not find class or interface lib.test. (12886)" when I instantiate a class. The KB suggests that "As a workaround, compile all the classes without the MIN-SIZE...
  6. J

    Recompilation required if table dropped and added again?

    An Update Just now I made a test against the sports DB and found that the code does not require a recompile. Thanks Joel
  7. J

    Recompilation required if table dropped and added again?

    Dear ALL, Would a recompilation be required if a table is dropped and added again in OE 10.2B database. When I add it again I would maintain the field order etc. Could someone clarify this? Thanks Joel
  8. J

    Cancel in Browse

    APPLY "GO" will commit your changes rather than rolling it back. CAn you try Apply "END-ERROR" rather than "GO" and let me know if this resolves?
  9. J

    Transaction and Buffer Scope

    In proc1 the buffer is only available for update after the transaction block ends and not before that.
  10. J

    Progress / OE Handle and MS-Windows Handle

    Yes it does Rob.
  11. J

    Progress / OE Handle and MS-Windows Handle

    Good Day Everybody. Could someone tell me a way of mapping the Progress / OE handle to MS-Windows handle. The reason I ask is - I am using SPY++ (MS-Visual Studio tool) to identify windows in my OpenEdge application and would like to trace that erring window in OpenEdge. But I am not able to...
  12. J

    Using "Wait-for" from within a class

    I used the following stub to test my class and it works fine. DEFINE VAR met AS CLASS mast.progmeter NO-UNDO. DEFINE VARIABLE ii AS INTEGER NO-UNDO. DEFINE VARIABLE jj AS INTEGER NO-UNDO. met = NEW mast.progmeter(1000). met:SetMeterTitle('tester'). DO ii = 1 TO 1000 ...
  13. J

    Using "Wait-for" from within a class

    Can I use a "wait-for" in a class file or is it a bad practice or bad conceptualization? What I am trying to achieve is design a class for a "Progress meter" (or a thermometer) which shows the progress of records being processed in a report or utility. I would like to encapsulate the whole...
  14. J

    Use-index

    Thanks for all your replies. Joel
  15. J

    Use-index

    'use-index' has a direct impact on the where clause. But does use-index have a say in the order of records in the 'for each' statement? Does specifying the 'by' clause affect the performance? Thanks Joel
  16. J

    Displaying and Editing Multiple records along Scrolling pane

    Have you tried using a updatable browser in this regard? Thanks Joel
  17. J

    just saying hi

    Hello Lewis, Are you a user of TMM (DTR)? Thanks Joel
  18. J

    Can I use SQL along with 4GL ABL code?

    Thanks much for your thoughts Tom.
  19. J

    Can I use SQL along with 4GL ABL code?

    Yes I ran "SELECT max(empno) FROM emp" on the procedure editor and it returns the value on the screen.
  20. J

    Can I use SQL along with 4GL ABL code?

    Could someone let me know if I could use SQL statement along with 4GL / ABL in a .p / .w? Should I use a "CURSOR" for this purpose? Any downside to this approach. The reason I ask this is because I want to use something like "SELECT max(empno) FROM emp" which could not be done using 4gl as...
Top