Click here to Skip to main content
15,897,187 members
Home / Discussions / WPF
   

WPF

 
GeneralRe: base wizard Pin
Parwej Ahamad25-Mar-10 3:40
professionalParwej Ahamad25-Mar-10 3:40 
GeneralRe: base wizard Pin
sth_Weird25-Mar-10 3:55
sth_Weird25-Mar-10 3:55 
GeneralRe: base wizard Pin
Parwej Ahamad25-Mar-10 5:44
professionalParwej Ahamad25-Mar-10 5:44 
AnswerRe: base wizard Pin
Jammer25-Mar-10 0:45
Jammer25-Mar-10 0:45 
GeneralRe: base wizard Pin
sth_Weird25-Mar-10 0:54
sth_Weird25-Mar-10 0:54 
GeneralRe: base wizard Pin
keyur soni25-Mar-10 1:08
keyur soni25-Mar-10 1:08 
QuestionUsing wcf services in Silverlight that is running in console application Pin
Sanjay_bmsit24-Mar-10 2:23
Sanjay_bmsit24-Mar-10 2:23 
AnswerRe: Using wcf services in Silverlight that is running in console application Pin
Michael J. Eber16-Apr-10 20:30
Michael J. Eber16-Apr-10 20:30 
If you succeeded in getting a service reference then you are halfway there.

Let's say you saved that reference as MyWcfService. That name becomes your namespace extension. So if your project is MyWeb, then your full service namespace is MyWeb.MyWcfService.

In your program you now have to find the name of your DataClient. After that the rest is a piece of cake.

MasterClient client = new MasterClient();
client.OpenAsync();                          // required
client.GetInformationEventHandler+=new EventHandler(ProcessResults);
client.GetInformation();
client.CloseAsync();                         // also required


The event handler sets the CallBack from the asynchronous call.
The GetInformationI() call is actually whatever your calls are in your service. (event handlers are automatically generated for you)

You can make multiple calls to multiple methods on the same instance of the client. But if you have to make two calls to the same method, you need two separate instances of the client and two instances of the event handler. (such as loading the customer address and billing address)
QuestionSilverlight and WCf services Pin
sanjay_honeywell24-Mar-10 0:16
sanjay_honeywell24-Mar-10 0:16 
AnswerRe: Silverlight and WCf services Pin
Abhinav S24-Mar-10 3:35
Abhinav S24-Mar-10 3:35 
QuestionBinding WPF element to property of a class Pin
Prasoon Chaudhary23-Mar-10 20:33
Prasoon Chaudhary23-Mar-10 20:33 
AnswerRe: Binding WPF element to property of a class Pin
koleraba23-Mar-10 22:22
koleraba23-Mar-10 22:22 
AnswerRe: Binding WPF element to property of a class Pin
Prasoon Chaudhary24-Mar-10 23:40
Prasoon Chaudhary24-Mar-10 23:40 
QuestionCarousel website.. Beginner Pin
Yraith23-Mar-10 7:45
Yraith23-Mar-10 7:45 
AnswerRe: Carousel website.. Beginner Pin
Kunal Chowdhury «IN»23-Mar-10 16:57
professionalKunal Chowdhury «IN»23-Mar-10 16:57 
AnswerRe: Carousel website.. Beginner Pin
Abhinav S23-Mar-10 18:54
Abhinav S23-Mar-10 18:54 
GeneralRe: Carousel website.. Beginner Pin
Yraith24-Mar-10 5:02
Yraith24-Mar-10 5:02 
QuestionAdding additional Brushes to the Style of a ContentControl Pin
Alan Beasley22-Mar-10 3:06
Alan Beasley22-Mar-10 3:06 
AnswerRe: Adding additional Brushes to the Style of a ContentControl Pin
Abhinav S22-Mar-10 4:18
Abhinav S22-Mar-10 4:18 
GeneralRe: Adding additional Brushes to the Style of a ContentControl [modified] Pin
Alan Beasley22-Mar-10 5:25
Alan Beasley22-Mar-10 5:25 
GeneralRe: Adding additional Brushes to the Style of a ContentControl Pin
Abhinav S22-Mar-10 7:38
Abhinav S22-Mar-10 7:38 
GeneralRe: Adding additional Brushes to the Style of a ContentControl Pin
Alan Beasley22-Mar-10 8:06
Alan Beasley22-Mar-10 8:06 
GeneralRe: Adding additional Brushes to the Style of a ContentControl Pin
Katka Vaughan20-Apr-10 10:15
Katka Vaughan20-Apr-10 10:15 
GeneralRe: Adding additional Brushes to the Style of a ContentControl Pin
Alan Beasley20-Apr-10 22:34
Alan Beasley20-Apr-10 22:34 
GeneralRe: Adding additional Brushes to the Style of a ContentControl Pin
Katka Vaughan21-Apr-10 1:15
Katka Vaughan21-Apr-10 1:15 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.