关于string TO Tmenuitem 的转换(100分)

  • 主题发起人 主题发起人 streaming
  • 开始时间 开始时间
S

streaming

Unregistered / Unconfirmed
GUEST, unregistred user!
在我的程序中,动态创建了一个popupmenu的subitem,并把他保存在ini文件中。但在下次启动程序
时,我想把上次新建的subitem通过ini文件读出来。可读ini文件是string型,而popupmenu
是menuitem型。
怎样转换他们呀?或有没有更好的方法。。。
 
读出来的当然不能直接写道menuitem中拉!
aitem : Tmenuitem;
begin
for i:=0 to strcount do //the strings count you have saved;
begin
aitem := Tmenuitem.create(self);
aitem.parent := parentitem;//parentitem is the items father;
aitem.caption := astr ;//astr is the string you saved to ini file;
parentitem.additem(aitem);//or maybe "insertitem" method;
end;
end;
 
能说说读ini文件的具体用法吗?
 
你可以查一下历史记录,至少由1000个以上的相关问题.
帮助里面也写的很详细,你在代码里面随便写一个Tinifile,选中之后按F1
方法里面找readstring,看看Delphi的例程代码
祝你好运!
 
谢谢,接分
 
接受答案了.
 
后退
顶部