IIHenriqueII Posted November 9, 2011 Report Share Posted November 9, 2011 E aí gente, tudo bem?Olha, eu estou tendo um probleminha. Eu precisava que um comando fosse executado quando o form fosse aberto, mas ele dá o seguinte erro:A programação que eu queria que ele executasse é a seguinte:procedure TForm1.FormCreate(Sender: TObject); begin if datamodule2.ADOTable1.IsEmpty then button6.Enabled:=false; end;O que há de errado? Quote Link to comment Share on other sites More sharing options...
0 Jhonas Posted November 9, 2011 Report Share Posted November 9, 2011 tente no evento OnActive do Form:procedure TForm1.FormActivate(Sender: TObject); begin if datamodule2.ADOTable1.IsEmpty then button6.Enabled:=false; end;abraço Quote Link to comment Share on other sites More sharing options...
Question
IIHenriqueII
E aí gente, tudo bem?
Olha, eu estou tendo um probleminha. Eu precisava que um comando fosse executado quando o form fosse aberto, mas ele dá o seguinte erro:
A programação que eu queria que ele executasse é a seguinte:
O que há de errado?
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.