Re: HOW TO READ HUGE TEXT FILE (MORE THAN ONE GIGA).
ALT="MFC Programmer's SourceBook" WIDTH="256"
HEIGHT="88">
color="#a0a0ff">Discussion Board
Click here to get a trail copy of Genitor V3.1 [ Read Responses | Post a New Response | Return to the Index ]
Previous in Thread | Next in ThreadRe: HOW TO READ HUGE TEXT FILE (MORE THAN ONE GIGA).
Posted by Noel Carlos (MediaStruggle) on 4/18/98 10:17a.m., in response to Re: HOW TO READ HUGE TEXT FILE (MORE THAN ONE GIGA)., posted by I.padilla on 4/18/98 2:41a.m.
Hola Padilla :
Ahora te mostrare como hacerlo con una aplicacion basada en una caja de dialogos
Creas una aplicacion basada en un Dialogo con el APPWIZZARD
en el objeto aplicacion le adicionas la linea
BOOL CHTextFilesApp::InitInstance()
{
// la linea de abajo carga la dll RICHEDIT32.DLL
AfxInitRichEdit();
......
}
luego creas un sobre el dialogo un control RichEdit y le pones como indentificador IDC_RICHEDIT
creas tambien una variable miembro en la clase del dialogo
para manipular el control
CRichEditCtrl m_Editor;
adicionas en el OnInitDialog
BOOL CHTextFilesDlg::OnInitDialog()
{
CDialog::OnInitDialog();
// Set the icon for this dialog. The framework does this automatically
// when the application's main window is not a dialog
SetIcon(m_hIcon, TRUE); // Set big icon
SetIcon(m_hIcon, FALSE); // Set small icon
// esto es para vincular el objeto m_Editor con el control
// cuyo id es IDC_RICHEDIT
m_Editor.SubclassDlgItem(IDC_RICHEDIT, this);
// TODO: Add extra initialization here
return TRUE; // return TRUE unless you set the focus to a control
}
luego creas en el dialogo un boton para invocar la caja de dialgo del OpenFile y buscar el archivo que te hace falta .txt espero