............................................

解决方案 »

  1.   

    Screen.Cursor :=  crHourGlass;
      

  2.   

    Screen.Cursor := crSQLWait;
     try
       .................
     finally
      Screen.Cursor := crDefault;
     end;
      

  3.   

    把你的代码贴出来看看
    Screen.Cursor := crSQLWait;
     try
       .................
     finally
      Screen.Cursor := crDefault;
     end;是可以的啊
      

  4.   

    screen.cursor := crhourglass;
      

  5.   

    Screen.Cursor 不会不行的,把你的代码弄出来看看
      

  6.   

    screen.Cursor:=crHourGlass;
    if(Import.ShowModal=mrOk) then
    begin
    ....
    可能是开新的窗口把鼠标又改变了,但是新的窗口初始化会很久,怎么办?
      

  7.   

    Screen.Cursor := crSQLWait;
    .....你需要等待的部分......
    Screen.Cursor := crDefault;