Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to auto-open form 1

Status
Not open for further replies.

ClarionProgramer

Programmer
Jan 4, 2009
2
DE
Past two year's, I programing using Clarion 6 and I'm good in this.
I have a question for Shankar.
How to auto call update procedure (form) every time when I finish update record in a form?
I try option (Return to a caller) in a form properties. Form is OK and Browse is empty???
How to making data visibile on Browse?

Thanks on advance.
 
Hi!

>How to auto call update procedure (form) every time when I >finish update record in a form?
>I try option (Return to a caller) in a form properties. >Form is OK and Browse is empty???

From the Help ::

Return to caller
Generates a RETURN to the calling procedure following a successful insert. This results in a one-at-a-time insert mode.

Insert another record
Does not generate a RETURN to the calling procedure following a successful insert. This results in a repetitive insert mode.

Ask the user before adding another record
Does not automatically generate a RETURN to the calling procedure following a successful insert, but asks the user whether to add another record.

> How to making data visibile on Browse?

You to reset the Browse.
In ABC :: BRWn.ResetSort(True) or BRWn.ResetQueue(Reset:Queue)
In Legacy :: DO BRWn::RefreshPage

Regards
 
Thanks!

You mean in ABC Template properties?
I don't understand this.

Help wanted!Please!

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top