Does anybody has any idea, how to eliminate those squares bewteen each number? T
ID: 3823630 • Letter: D
Question
Does anybody has any idea, how to eliminate those squares bewteen each number? Thanks. Below is my code to input the file, this is wsWidgets_C++
void assigment6Frame::OnButton1Click(wxCommandEvent& event)
{
wxFileDialog *openDialog = new wxFileDialog(this, wxT("Open a File"), wxT(""), wxT(""),
wxT("Text Files (*.txt)|*.txt"),
wxFD_OPEN );
int response = openDialog->ShowModal();
if(response == wxID_OK)
{
TextCtrl1->LoadFile(openDialog->GetPath());
}
}
URL 0, 208 159 139 127 69 162 44 45 Word Progress Bar GO Count URL-Word SpiderExplanation / Answer
From the given code I can suggest may be you are uploading from a path which contain space in names that is why it giving those unwanted squares.
and one suggestion is that when you creating new object of wxFileDialog then try to give wxEmptyString argument in third in fourth place as per below.
wxFileDialog *openDialog = new wxFileDialog(this, wxT("Open a File"), wxEmptyString, wxEmptyString,
wxT("Text Files (*.txt)|*.txt"),
wxFD_OPEN );
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.