Ok so I have alot of plans for programs coming up and I want them all to fade in and out so instead of copy and pasting from project to project etc I learnt about dll's
So when I added in the references etc and I typed in what I declared the Fadein function as which was "FadeIn" I got an error saying it needed to be declared
So I declared it as a string
Then I get a different error saying Expression is not a method.
Argghh! What do I do?
So when I added in the references etc and I typed in what I declared the Fadein function as which was "FadeIn" I got an error saying it needed to be declared
So I declared it as a string
Code:
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Dim FadeIn As String FadeIn(Me) End Sub
Argghh! What do I do?
Comment