Delphi字符串网格单元格中的图像

时间:2016-07-21 10:02:13

标签: delphi

在delphi中,我连接到SQL,然后将数据加载到dbgrid中。我的一个专栏叫做服务。在这个专栏中有几种不同的类型,洗涤和停车等。如果此列中的单元格等于清洗,我希望它在此单元格中显示小的清洗图像。我试图通过专栏看,但到目前为止我没有运气。任何帮助,将不胜感激。这是我到目前为止所做的:

for l:=1 to StringGrid2.RowCount-1 do
     sum:=sum++StrToCurr(StringGrid2.Cells[3,l]);
     TotalCostLB.Caption:=CurrToStr(sum);
for i2 := 1 to StringGrid2.RowCount-1 do
 if StringGrid2.Cells[2,i2] = 'Wash' then
    StringGrid2.Cells[1,1] := OpenPictureDialog1.ToString;

  StringGrid2.Canvas := TOpenPictureDialog;

1 个答案:

答案 0 :(得分:0)

尝试绘制DBGrid单元格的画布。 imageSource是一些bitmap,gif等,比如TBitmap。

<?php
    if (isset($_POST['login']))
    {
        $username = $_POST['username'];

        if (!empty($username))
        {
            echo "hello $username";
        } else {
            echo "You must fill in the username!";
        }
    }
?>