11/05/2011, 10:54
|
| | | Fecha de Ingreso: mayo-2011 Ubicación: Tekax, Yucatán
Mensajes: 213
Antigüedad: 13 años, 6 meses Puntos: 8 | |
Respuesta: Abrir documento (c#) Axelaser creo que tu lo quieres abrir en otra ventana
te tengo un codigo espero que te sirva.
Abrir.Filter = "Documentos PDF|*.pdf";
if (Abrir.ShowDialog() == DialogResult.OK)
{
FileStream Archivo = new FileStream(Abrir.FileName, FileMode.Open, FileAccess.Read);
byte[] Contenido;
Contenido = new byte[Archivo.Length];
Archivo.Read(Contenido, 0, (int)Archivo.Length);
textBox1.Text = new ASCIIEncoding().GetString(Contenido);
} |