delphi如何在stringgrid中加入combobox

procedureTForm1.sss(Sender:TObject;ACol,ARow:Integer;varCanSelect:Boolean);begincombo... procedure TForm1.sss(Sender: TObject; ACol, ARow: Integer;
var CanSelect: Boolean);
begin
combobox1.Visible := TRUE;
combobox1.Left := stringgrid2.CellRect(ACol, ARow).Left;
combobox1.Top := stringgrid2.CellRect(ACol, ARow).Top;
combobox1.Parent := self;
combobox1.Width := stringgrid2.CellRect(ACol, ARow).Right-stringgrid2.CellRect(ACol, ARow).Left;
colTmp:=ACol;
rowTmp:=ARow;
end;

执行这句话后,combobox总是在stringgrid表格之外,而不是在cell里面。这句哪里有问题
展开
 我来答
402407
2009-10-20 · TA获得超过771个赞
知道小有建树答主
回答量:726
采纳率:50%
帮助的人:898万
展开全部
procedure TForm1.StringGrid1Click(Sender: TObject);
var
comtest : TComboBox;
begin
StringGrid1.RowCount := 3;
StringGrid1.ColCount := 3;
StringGrid1.Rows[0].Text := 'testcombox';
comtest := TComboBox.Create(self.StringGrid1);
comtest.Left := StringGrid1.CellRect(1, 1).Left;
comtest.Top := StringGrid1.CellRect(1, 1).Top;
comtest.Parent := self.StringGrid1;
comtest.Width := stringgrid1.CellRect(1, 1).Right-StringGrid1.CellRect(1, 1).Left;
comtest.AddItem('stringgrid1(1,1)',comtest);
comtest.ItemIndex :=0;
comtest.Visible := TRUE;

ComboBox1.Left := StringGrid1.CellRect(2, 1).Left;
ComboBox1.Top := StringGrid1.CellRect(2, 1).Top;
ComboBox1.Parent := self.StringGrid1;
ComboBox1.Width := stringgrid1.CellRect(2, 1).Right-StringGrid1.CellRect(2, 1).Left;
ComboBox1.ItemIndex :=0;
ComboBox1.Visible := TRUE;

end;
测试性的写了下。第一个是高慧游碧返使用动态创建的,第二个是本来有的。对比发现,主要是戚销那句
combobox1.Parent := self;
错了。
应该是
combobox1.Parent := self.stringgrid2;
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友1b932d7
2009-10-20 · TA获得超过816个赞
知道小有建树答主
回答量:455
采纳率:0%
帮助的人:416万
展开全部
试试下面的弊衡方租并做法行蔽数不行
var
TempRect: TRect;

TempRect:=Column.Grid.CellRect(Column.Grid.Col,Column.Grid.Row);
dtpDTimeP_temp.Width:=Column.Width;
dtpDTimeP_temp.Height:=20;
dtpDTimeP_temp.Left:= TempRect.TopLeft.X+ Column.Grid.Left;
dtpDTimeP_temp.Top:=TempRect.TopLeft.Y+Column.Grid.Top;
dtpDTimeP_temp.Visible:=true;
dtpDTimeP_temp.SetFocus;

这是我在dbgrid中画了个datetimepicker的代码完美嵌入
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
maodrc
2009-10-20 · TA获得超过3289个赞
知道小有建树答主
回答量:1090
采纳率:79%
帮助的人:1166万
展开全部
推荐用AdvStringgrid ,Stringgrid的升级版,里面键磨可以很轻松的加下拉框源谈,单选框等。

我家里机器的环境上有用到AdvStringgrid的项目稿裂斗,具体的可以pm我咯。。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式