Gracias a todos por sus respuestas y por la bienvenida. Respondiendo a:
Cita:
|
Empezado por nlsgarcia
Empezado por Delphi Help MessageBox method (TApplication):
...The value of the Text parameter is the message, which can be longer than 255 characters if necessary. Long messages are automatically wrapped in the message box
The value of the Caption parameter is the caption that appears in the title bar of the dialog box. Captions can be longer than 255 characters, but don't wrap. A long caption results in a wide message box...
|
La cantidad de caracteres que se despliegan es inferior a 255, tanto en el titulo como en el mensaje..
Cita:
|
Empezado por Neftali
Estaría bien que enseñaras cómo estás mostrando (código) el texto y cómo se está viendo.
|
Código:
.
.
const
ConstNombreSistema: String = 'Sistema Prueba'; //Nombre sistema
ConstVersionSistema: String = 'v1.0-2013'; //Version
ConstNombreEmpresa: String ='Empresa Prueba'; //Empresa
resourcestring
MsgRutaBDNoEncontrada='La ruta de acceso de la base de datos del sistema no ha sido encontrada, deberá ingresarla manualmente. ¿Desea efectuar esta operación?';
Implementation
Begin
VarDescripcionSistema:= ConstNombreSistema + ' - ' + ConstVersionSistema + '...(' + ConstNombreEmpresa + ')';//Descripcion completa del sistema;
//Se informa al usuario que debe ingresar la ruta manualmente
If Application.MessageBox(PWideChar(MsgRutaBDNoEncontrada), PWideChar(VarDescripcionSistema + MsgControlError), MB_YESNO + MB_DEFBUTTON1 + MB_ICONEXCLAMATION) = IDNO Then Begin
.
.
.
End //If
El mensaje desplegado es el siguiente: