Browse-Widget: No Refresh after creating new record?

Funkfeuer

New Member
Hello,

I have a problem by using browse-widget.

With this code - within a button-trigger (choose-event) I create a new record in the database:

Code:
ON CHOOSE OF btnInsert IN FRAME DEFAULT-FRAME /* Insert */ 
DO: 
  Create Allg_Rech. 
  Assign  
    Allg_Rech.RechTxt = cRechTxt-2:Screen-Value. 
  
  myBrowse:Refresh().
       
END.

The new record will be created in the database.

My problem is, that the browse-widget (myBrowse) will not be refreshed/updated.
-> The new record won't be shown..

I'm using the myBrowse:Refresh()-statement, but it seems to be ignored?

Has anyone a solution for my/this problem?

cu
Chris
 
Top