Hey there
I was working in injector but I have little problem I need to make button which when someone click in it Listbox get dll file from resources
I tried to make it like this :
Code:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
timer1.start()
End Sub
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer3.Tick
Dim Datei As Object = My.Resources.TEST
ListBox1.Items.Add(Datei)
dlls.Add("TEST.dll", Datei)
End Sub
but I'm getting error "Conversion from type 'Byte()' to type 'String' is not valid." in "dlls.Add("TEST.dll", Datei)"
thx
