[HELP]Set the dll(s)'...What is the code for: *I want to select the selected dlls in the listbox1 to be injected.Help me!Thanks...
listn..if you dont know enough of VB to figure this stuff out then i wouldnt bother with an injector. but here, try this. Code: ListBox1.Items.Count or listbox1.items.add i use .Count in my injector
Count just gets the number of items in the listbox. He should use a for loop untill the UBound of listbox1 -1. Try something like [code] For i = 0 To ListBox1.Items.Count - 1 ''Insert injection code here. For listbox1.items.item(i)" Next