Eso es lo que tienes que hacer: cambiar Localhost\SQLEXPRESS por la IP
Para resaltar el código puedes utilizar las etiquetas [delphi] o [sql]
Por ejemplo:
[delphi]
with UnaCosa do begin
X := 1+1;
Showmessage(IntToStr(x));
end;
[/delphi]
Se ve así:
Código Delphi
[-]
with UnaCosa do begin
X := 1+1;
Showmessage(IntToStr(x));
end;
[sql]
Select *
from UnaTabla
where ID = 0
[/sql]
Se ve así:
Código SQL
[-]
Select *
from UnaTabla
where ID = 0