mavarazo's Profile
Reputation: 35
Craftsman
- Group:
- Contributors
- Active Posts:
- 171 (0.18 per day)
- Joined:
- 25-October 10
- Profile Views:
- 2,055
- Last Active:
Apr 05 2013 01:39 AM- Currently:
- Offline
Previous Fields
- Country:
- CH
- OS Preference:
- Windows
- Favorite Browser:
- Who Cares
- Favorite Processor:
- Who Cares
- Favorite Gaming Platform:
- Who Cares
- Your Car:
- Who Cares
- Dream Kudos:
- 50
Posts I've Made
-
In Topic: Accessing events from an AsyncCallback method
Posted 7 Oct 2011
I did something similar some times ago:
... _serverSocket.Listen(4); _serverSocket.BeginAccept(new AsyncCallback(OnAccept), null); ...
private void OnAccept(IAsyncResult ar) { try { Socket clientSocket = _serverSocket.EndAccept(ar); _serverSocket.BeginAccept(new AsyncCallback(OnAccept), null); clientSocket.BeginReceive(byteData, 0, byteData.Length, SocketFlags.None, new AsyncCallback(OnReceive), clientSocket); } catch (Exception ex) { AppendMessage(ex.Message, Messages.Exception); } }
private void OnReceive(IAsyncResult ar) { try { Socket clientSocket = (Socket)ar.AsyncState; clientSocket.EndReceive(ar); ... } -
In Topic: BindingNavigator - how to set Insert Command parameters
Posted 7 Jun 2011
Hi Mateusz
Where is ur Insert SQL?
My Information
- Member Title:
- D.I.C Head
- Age:
- Age Unknown
- Birthday:
- Birthday Unknown
- Gender:
-
- Programming Languages:
- C#, ASP.NET, Java, J2EE, ABAP
Contact Information
- E-mail:
- Private
Friends
|
|


Find Topics
Find Posts
View Reputation Given

|
Comments
mavarazo has no profile comments yet. Why not say hello?