Saiyine
Punto Com

Simular un MsgBox de VisualBasic en Delphi

2006-10-30 02:37:39

Simular el MsgBox de VisualBasic en Delphi es bastante fácil, ya que el objeto Application contiene una función exactamente igual. El problema es que es tan parecida que no usa Strings sino punteros a cadenas, así­ que tendremos que usar este pequeño encapsulamiento:

function MsgBox(texto, titulo: string; Flags: Word): Integer;
var
  C1, C2: array[0..300] of Char;
begin
  StrPCopy(C1, Copy(texto, 0, 299));
  StrPCopy(C2, Copy(titulo, 0, 299));
  MsgBox := Application.MessageBox(C1, C2, Flags);
end;

Rollos antiguos

2006-10-30 02:29:22 - Calcular si un numero es primo en Delphi - Pascal.

2006-10-26 03:47:43 - Cleaning face imperfections.

2006-10-25 02:57:53 - CLI output staying at the same line.

2006-10-25 02:57:15 - Salida en modo texto se mantiene en la misma linea.

2006-10-25 02:54:49 - Knowing what key has been pressed.

Saiyine

Selfie of meHi! Welcome to Saiyine Punto Com where I talk about anything that goes through my mind!

Puedo prometer y prometo que a la mayor brevedad aquí irá un menú o algo asín.