CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Jul 2001
    Posts
    100

    .NET asynchronous programming

    Hi! Has anyone heard anything about .NET suppport for cuncurrent and/or asynchronous programming. Articles, sites ... anything ... Thanks in advance.


  2. #2
    Join Date
    May 2002
    Location
    Atlanta,GA
    Posts
    262

    Re: .NET asynchronous programming

    Here is a decent article on Asynchronus socket programming in .NET. http://www.codeproject.com/csharp/socketsincs.asp There are several other good ones out there. Just go to google and search for Asynchronus and the language you are using.

    Jared Parsons
    Jared

  3. #3
    Join Date
    Mar 2012
    Posts
    2

    Filling a DataSet from a asynchronous Process

    Hello Guys

    I have a windows application where i executing differents Stored Procedures from SQL Server to return dara, accourding to the date range the executing time can be between 3 to 5 minutes, as the connection is Synchronous the user have to wait all that time. For that reason i have been looking for about asynchronous execution, in http://msdn.microsoft.com/en-us/library/1a674khd.aspx and http://msdn.microsoft.com/en-us/library/7b6f9k7k.aspx, as you can see it just update data or return a SqlDataReader, from a query.
    My question is how can i execute a store procedure in asynchronous process and the return data load in a GridView.

    Regards

    CM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured