From 11235b74ceec8987e4bd2c58ba3fe82a34dfd5bf Mon Sep 17 00:00:00 2001 From: Guillermo Rodriguez Garcia Date: Thu, 9 Sep 1999 12:25:47 +0000 Subject: [PATCH] Nothing serious here :-) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3590 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- samples/wxsocket/client.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/samples/wxsocket/client.cpp b/samples/wxsocket/client.cpp index 5a961e4cf5..a3109c1c6c 100644 --- a/samples/wxsocket/client.cpp +++ b/samples/wxsocket/client.cpp @@ -169,8 +169,10 @@ void MyFrame::OnExecOpenConnection(wxCommandEvent& WXUNUSED(evt)) "Connect ...", "localhost"); addr.Hostname(hname); addr.Service(3000); - sock->SetNotify(0); - sock->Connect(addr, TRUE); + sock->SetNotify(wxSOCKET_CONNECTION_FLAG | wxSOCKET_LOST_FLAG); + sock->SetNotify(TRUE); + sock->Connect(addr, FALSE); + sock->WaitOnConnect(10); sock->SetFlags(wxSocketBase::NONE); if (!sock->IsConnected()) wxMessageBox("Can't connect to the specified host", "Alert !"); @@ -238,7 +240,7 @@ void MyFrame::OnExecTest1(wxCommandEvent& WXUNUSED(evt)) if (!sock->IsConnected()) return; - wxDialog *dlgbox = new wxDialog(this, -1, "Test 1", wxDefaultPosition, wxSize(414, 250)); + wxDialog *dlgbox = new wxDialog(this, -1, "Test 1", wxDefaultPosition, wxSize(414, 280)); wxTextCtrl *text_win = new wxTextCtrl(dlgbox, -1, "", wxPoint(0, 0), wxSize(400, 200), wxTE_MULTILINE);