程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> Delphi >> DELPHI XE5-8 彈出列表框供選擇,delphixe5-8

DELPHI XE5-8 彈出列表框供選擇,delphixe5-8

編輯:Delphi

DELPHI XE5-8 彈出列表框供選擇,delphixe5-8


 

 

點擊章節練習:

var
 tmplm:Tlistboxitem;
begin
  dm.FDQTMP.SQL.Clear;
  dm.FDQTMP.SQL.Add('select GSESSON from TSquestions where GLESSON=:ggl group by GSESSON');
  dm.FDQTMP.Params.ParamByName('ggl').Value:=Qlesson;
  dm.FDQTMP.Open;
  dm.FDQTMP.First;
  ListBoxSesson.Items.Clear;
  ListBoxSesson.BeginUpdate;
  while not dm.FDQTMP.Eof do
   begin
     tmplm:=Tlistboxitem.Create(nil);
     tmplm.ItemData.Text:=dm.FDQTMP.FieldByName('GSESSON').AsString;
     tmplm.ItemData.Bitmap:=ImageYuan.Bitmap;
     tmplm.Parent:=ListBoxSesson;
     dm.FDQTMP.Next;
   end;
   ListBoxSesson.EndUpdate;
   popsesson.PlacementTarget:=Imagetop;
   popsesson.Placement:=TPlacement.plBottomCenter;
   popsesson.IsOpen:=true;

  

procedure TFmode.ListBoxSessonChange(Sender: TObject);
begin  //選擇章節
    Qsesson:=ListBoxSesson.Items[ListBoxSesson.ItemIndex] ;
    popsesson.IsOpen:=false;
    if length(Qsesson)<>0 then
     begin
       Application.CreateForm(TFAnsOne, FAnsOne);
       {$IFDEF Android}
        FAnsOne.show;
      {$ENDIF}
       {$IFDEF IOS}
        SHOWMESSAGE('下面開始第'+Qsesson+'章練習');
        FAnsOne.show;
      {$ENDIF}
      {$IFDEF MSWINDOWS}
        FAnsOne.showmodal;
       {$ENDIF}
     end;

end;

  

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved