当前位置: 代码迷 >> VFP >> 显示相关内容解决方法
  详细解决方案

显示相关内容解决方法

热度:6079   发布时间:2013-02-26 00:00:00.0
显示相关内容

不知道怎样实现点击表中的记录后
在表单的文本框中显示相应的记录啊???

------解决方案--------------------------------------------------------
我上面代码的这段就是你要的代码

Grid的AfterRowColChange事件: 

LPARAMETERS nColIndex 
ThisForm.Text1.Value=ALLTRIM(name) 
ThisForm.Text2.Value=ALLTRIM(sex) 
ThisForm.Text3.Value=ALLTRIM(age) 
thisform.refresh 

  相关解决方案