1
Answer

Call Webservice with C#

Photo of behr

behr

20y
2.3k
1
Hello everybody! I'm looking for an example, that explane the call to a webservice. I'd like to write the programm in C#. I think the problem isn't big, but I don't where I have to start. I hope you can give me a example to understand it. Regrads! peppi

Answers (1)

1
Photo of Frogleg
NA 7.9k 33k 13y
Here vc 2008 version
0
Photo of Suthish Nair
NA 31.7k 4.6m 13y
waw.. great sample 5 out of 5 points...
0
Photo of Frogleg
NA 7.9k 33k 13y

Attachment mousezoom.zip

Here's one way
0
Photo of Farooque Ali
NA 266 202.5k 13y
Hi,

Thanks. Here am doing the Zooming from 25% to 400% how to incorporate my code in to this Event. Can you please tell me.
0
Photo of Frogleg
NA 7.9k 33k 13y
To get mouse wheel use

protected override void OnMouseWheel(MouseEventArgs e)
{
if (e.Delta > 0)
{
MessageBox.Show("up");
}
else if (e.Delta < 0)
{
MessageBox.Show("down");
}

}

One detent = 120

look here for more info
http://msdn.microsoft.com/en-us/library/system.windows.forms.mouseeventargs.delta.aspx#Y526