I've found a free WebService on the net for a currency converter and have
created a class to use it with the WSDL tool.
I call the WebService method asynchronously:
converter.Conve rsionRateAsync( (Currency)fromC urrencyComboBox .SelectedIndex,
(Currency)toCur rencyComboBox.S electedIndex);
Where do I have to put the catch instruction?
If I try to run the instruction above when I am not connected to the
Internet, I receive a message with a System.Net.WebE xception exception.
Where can I catch it?
Thanks
----
Dr. John Skandar
<yugo_amaryl@ms n.com>
created a class to use it with the WSDL tool.
I call the WebService method asynchronously:
converter.Conve rsionRateAsync( (Currency)fromC urrencyComboBox .SelectedIndex,
(Currency)toCur rencyComboBox.S electedIndex);
Where do I have to put the catch instruction?
If I try to run the instruction above when I am not connected to the
Internet, I receive a message with a System.Net.WebE xception exception.
Where can I catch it?
Thanks
----
Dr. John Skandar
<yugo_amaryl@ms n.com>
Comment