property问题,VB转delphi.(50)

  • 主题发起人 主题发起人 eye0eye
  • 开始时间 开始时间
E

eye0eye

Unregistered / Unconfirmed
GUEST, unregistred user!
Public Property Get frmHwnd() As Long frmHwnd = mfrmHwndEnd PropertyPublic Property Let frmHwnd(ByVal vNewValue As Long) mfrmHwnd = vNewValueEnd Property这两段VB的怎么改成delphi
 
public property frmHwnd:Integer read get write let;end
 
zaxia+下我QQ170355074
 
个人没用过VB,也没学过,更深层次的问题就无法给予帮助了,呵呵。敲完上面代码后,按 ctrl + shift + C ,系统会自动给你生成函数定义的。然后代码这样定义:function TForm1.get: Integer;begin result:= mfrmHwndend;procedure TForm1.let(const Value: Integer);begin mfrmHwnd := Value;end;
 
znxia你QQ多少啊?加下!!
 
接受答案了.
 

Similar threads

S
回复
0
查看
896
SUNSTONE的Delphi笔记
S
S
回复
0
查看
873
SUNSTONE的Delphi笔记
S
I
回复
0
查看
759
import
I
后退
顶部