I do not see the rdio buttons in the post ditor window.
Sorry for getting back late. For me this is still unsettled. I have gone through the process and here are some more details.
The DataGridView lets you choose from three types of sources, Database, Web Service, Object. This particular problem was noticed in trying to get data from a Web Service to a Windows Client. I am nor sure if this is somehing special to my version of VS 2008.
---------------------
Client Creation Steps:
Add a form
Add a DataGridView to the form
Configure DataGridView
--Click on Add Project Data Source
--Choose Web Service
Add Web Service
--------Add Web Reference
------------Choose Web Services in this solution
---------------------------------------------------------------------------
[ a web service in the solution is identified and added to web references]
[The Data Source Configuraion Wizard reports that "the following web reference will be added and all objects it returns will be available in the Data Sources window" with http://localhost:1098/Serive1.asmx]
You finish closing this wizard
This web reference creates two data sources,
the Service1 which only exposes the following:
Url
UseDefaultCredentials
Soap Version
--
--
etc
and the class which is named "Web Service methods name + CompletedEvenArgs"
which does not expose the method.
Hence the DataGridView's wizard does not do the tasks [BindingSource does not bind to response from web service] necessary to bring data from the Web Service method.
In the case of connecting to a DataBase it is straight forward.
Someone has suggested doing this process manually and that suggestion does not address the wizard's problem. It is probably a workaround.