Jump to content

Recommended Posts

Posted (edited)

Ola, estou montando um projeto..

Estou usando canvas, para desenhar uma linha de texto dentro de uma janela, até agora só consegui desenhar a linha de texto na minha area de trabalho, ou dentro do meu form, mas como vou trabalhar com DLL, quero que o texto seja imprimido dentro da janela onde minha DLL foi injetada.

Codigo atual:

begin
 dll := TCanvas.Create;
try
 dll.Handle:=GetDC(0);
 dll.Brush.Style := bsClear;
 dll.TextOut(10, 10, 'Criando Menus');
finally
 dll.free;
end;
Edited by Douglasrg
Posted (edited)

Topico resolvido, acabei usando o handle de forma errada.

ja pode fechar.

Aqui o codigo para quem quiser ver como ficou

var
Menu: HWND;
begin
Menu:= FindWindow(nil,'Handle');
 dll := TCanvas.Create;
try
 dll.Handle:=GetDC(Menu);
 dll.Brush.Style := bsClear;
 dll.TextOut(10, 10, 'Criando Menus na tela.');
finally
dll.free;
end;
end;
Edited by Douglasrg

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site you accept our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.