Search results

  1. Kalan

    Resolved Enable Browser with other objects on the form.

    This has been resolved by reducing the number of rows on browser display. For example, define browse b_table query q_table display t_table.c_col1 label "Col 1" t_table.c_col2 label "Col 2" t_table.c_col3 label "Col 3" with 16 down width 78 no-box.
  2. Kalan

    Resolved Enable Browser with other objects on the form.

    Thanks Larry, those are variable calculated adding temp table columns. Just to remove the complexity of variable values, pls take the below example of FORM statement, My expectation on below "Form" declaration statement should have the ability to display browser and string constant "Total"...
  3. Kalan

    Resolved Enable Browser with other objects on the form.

    Thanks Larry, Sorry... pls ignore the Wait-for and how iv_totals value is derived and what column position "Total" string constant is being displayed. This code snippet works as expected to display the browser, the only missing object is "Total" row underneath the browser. My question here...Is...
  4. Kalan

    Resolved Enable Browser with other objects on the form.

    Hi all, I am trying to display browser with other objects on the form. Its unix CHUI environment, not sure why only the browser gets displayed on the screen as I could not see Total: and its sum values under each column of the browser. Can someone pls suggest on this? - Thanks. The example...
  5. Kalan

    Display statement with when option

    Thanks a lot Rob, you're right. In the existing code, display statement appears with 5 lines of string constant values. i.e. Text1, Text2... Text5. My requirement to add one more Text line in between those 5 lines. For this when we use WHEN option (i.e. Display Text1 SKIP Text2 SKIP Text3 when...
  6. Kalan

    Display statement with when option

    @Osborne/Rob, Excellent, it works by following the form line position with array strings. I was bit hesitant to keep this in temp table and display that in read only browser.
  7. Kalan

    Display statement with when option

    Greetings, Is there any way to avoid blank line on the below example pls? ┌List Of Lines┐ │Text1 │Text2 │ │Text4 │Text5 └───────┘ def var lv_flag as logical no-undo init no. lv_flag = no. Disp 'Text1' skip 'Text2'...
  8. Kalan

    Break by on multiple fields

    Thanks Tom/Tamhas, Its an existing code for an enhancement to consolidate around 9 number of columns. Managed to go with workaround of grouping these identical columns while creating/updating into temp-table. I will come up with an example when its failed to apply break by function on multiple...
  9. Kalan

    Break by on multiple fields

    Greetings, I am having a problem using "break by" feature to consolidate 9 columns on the report. My code is similar to below template, FOR EACH < Table Name> Break by Col1 by Col2 by Col3 by Col4 by Col5 by Col6 by Col7 By Col8 by Col9: IF First-of(Col1) AND ....First-of(Col9) THEN DO...
  10. Kalan

    Aspose.word.net Ctrl

    Thanks, Osborne & Cringer. Yes, along with MS Word viewer its working fine. but I want to make sure whether Aspose.Word.Net can be implemented without any MS Word/viewer dependency OR it must have at least MS word viewer? By looking the Aspose.Word.Net there is no minimum requirement or...
  11. Kalan

    Aspose.word.net Ctrl

    Hi, I'm trying to replace existing MS Word mail merge functionality by using Aspose Word .Net Ctrl. Not sure, how to render/print document without using Ms Word. My understanding is that Aspose.Word does not require Microsoft Office to be installed on the machine in order to work. In my...
  12. Kalan

    Error Memory Stomp

    The application works fine with other users - same code/OE & OS version. An issue occurs only on specific systems. System crashes with the following error. System Error when running event dispatcher Exception code: C0000005 ACCESS_VIOLATION Fault address: 6B£B61A4 01:001A51A4...
  13. Kalan

    Resolved Wait-for Statement Focus Issue.

    I'm getting "WAIT-FOR statement is not VISIBLE. WAIT-FOR terminated. (2910)" error only from OE11.6.3 version based application. Same code segment works fine on lower version(Ex. 10.2B). Debug message shows that frame is visible and sensitive. I assume somewhere it's losing focus and control...
  14. Kalan

    Question Deadlock

    Thanks Tom, My apologies, its pseudo code and not exact 'update' statement. I agree that it's not deadlock and my understanding is that they have written this code segment to avoid deadlock scenario and enforcing control using repeat loop to obtain the record on exclusive-lock mode. If session-2...
  15. Kalan

    Question Deadlock

    Two different procedures are deadlocking each other by accessing the same record from two different sessions. Not sure if any other workaround to deal this type of scenario. Could someone pls suggest on this? - Thanks. For example, Proc-1.p Do Transaction: Access the record with...
  16. Kalan

    Question **handle Is Not A Settable Attribute For Stream Widget. (4052)

    Hi, I've the situation to get stream handle from global variable to use/refer the stream. Unfortunately, below logic doesn't work and raises an error "**HANDLE is not a settable attribute for STREAM widget. (4052)" (Progress KB - Can a static stream handle attribute be assigned to an existing...
  17. Kalan

    Answered € Stored As ? In Database

    Very informative, thanks Rob.
  18. Kalan

    Answered € Stored As ? In Database

    Hi Everyone, OE 10.2B - when I enter €(euro) symbol in text field, it stored as ? in database. By looking into KB it something to do with codepage. But I have no idea to check current code page and convert into right one. Could you pls suggest on this? Thanks.
  19. Kalan

    Question Specified Activex Control Is Not Registered Or The .ocx File Was Moved From Where It Was Registered.

    Hi Friends, In order to resolve this issue, I am trying to register .OCX files, but I can't find these below .ocx files either in SYSWOW64 OR System32 location. I am using OE 11.4 with Windows 8.1 OS. I assume these .OCX files comes with windows OS. Could someone pls suggest on this? - Thanks...
Top