English 中文(简体)
在Oracle 10g 关闭了儿童表之后的家长形式“家长”
原标题:Refresh the Parent form of "Call_form" after Child form is closed in Oracle 10g

What I need is: what trigger to use and where to put it.

我将给你一个例子,说明我正在做些什么。

除合同财务领域外,我有一份完全可以编辑的合同表格。 我希望用户发布一个叫做“兑换率”的纽芬兰语,这将产生一个“债务-债务”的触发器,并打电话到“情况”(最新)。

现在,在这个屏幕上,我有用户更改合同从50k升至100k等财务信息。 然后,用户储蓄和退出。 然后将结束儿童表格“最新信息”并显示母体形式“合同”。 问题在于,它仍然掌握着这方面的所有老信息。 当信息从儿童形式“传票”功能中恢复时,我需要这种信息。

最佳回答
  1. 在<代码>WHEN-BUTTON-PRESSED的触发器中,在你发布<代码>CALL_FORM之前,将一个变数(例如一个隐藏的项目或一个全球性的变数)设定为一定价值,例如 CALLED_THE_FORM

  2. 在<代码>上 WHEN-WINDOW-ACTIVATED, 检测变量,条件是: CALLED_THE_FORM , 重塑变量(例如NUL), 并操作在用户从形式返回时所希望操作的任何代码(例如执行查询或执行)。

或者说,只是从<代码>上执行问题。 WHEN-WINDOW-ACTIVATEDstart——如果您希望每当用户返回表格时都会复读。 但是,我个人只想在我相信绝对需要时重新学习。

问题回答

暂无回答




相关问题
C# Form Problem: new form losing control and randomly hiding

I m encountering strange behavior with forms on a c# 3.5 app. On a button click, my form1 hides itself, creates a new form2, and shows form2. Form1 also contains the event method triggered when ...

TCPlistener.BeginAcceptSocket - async question

Some time ago I have payed to a programmer for doing multithread server. In the meantime I have learned C# a bit and now I think I can see the slowndown problem - I was told by that guy that nothing ...

RoR: before_save on nested object in form?

I have a form with a nested object (customer < order), and it works except that it keeps creating a new customer record. I d like to have it check to see if an existing customer is already ...

Receive POST from External Form

I have a form on another website (using a different backend) that I want to be able to POST to my Rails application (on a different domain). How do I generate a valid authenticity token for the ...

Getting posted values in MVC PartialView

I ve created a PartialView which I render with Html.RenderPartial, passing the name of the view and the strongly-typed data item to bind to (below): <% Html.RenderPartial("...

Recaptcha - Form Customization

Does anyone know if recaptcha can be fully customize without the default frame. I need the recaptcha image to only be a certain width as well as the input field. Has anyone done this before with ...

Better way to retain form data on manual back redirect?

I have a form that, on submit, requires the customer to look over the data, and then confirm the changes before saving the data. However, I m using a really rough way of retaining data if the user ...

热门标签