vote up 0 vote down star

I have some storyboards in XAML (WPF Project) and I´m calling them from the VB code with this:

Dim ServiceOff As Storyboard = DirectCast(FindResource("ServiceStopped"), Storyboard)
ServiceOff.Begin()

I´m getting the following error when trying to build:

Overload resolution failed because no accessible 'Begin' accepts this number of arguments.

Any ideas?

flag

1 Answer

vote up 0 vote down check

I answered in your other question.

You need to call ServiceOff.Begin(me) if you're not using .NET 3.5 SP1

link|flag
Thanks, seems to accept it that way but I´m getting tons of other errors and I think I messed up somewhere else. It´s a simple test app so I´ll start over in a cleaner way. Thanks again for the help! Oh, and sorry for the double post, though you couldn't see the new comments on old posts. thanks! – TuxMeister Mar 5 at 1:58
No problem, I'll fix up your question too. – Ray Mar 5 at 2:02
Oh, and the best thanks is an upvote and accepted answer :) – Ray Mar 5 at 2:04

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.