How can i loop this instruction
sSoftware = "Insert into Software_List ([Name], [Version]) values ('" & objSoftware.Name & "','" & objSoftware.Version & "')"
mConnection.Execute (sSoftware)
Because at the moment it executes only once and it lists only 1 program in my table, i have been told that i would need some sort of looping instruction for it to do all the programs.
i have been looking over some coding for DO until instruction but i just know how to start it with this line
sSoftware = "Insert into Software_List ([Name], [Version]) values ('" & objSoftware.Name & "','" & objSoftware.Version & "')"
mConnection.Execute (sSoftware)
Because at the moment it executes only once and it lists only 1 program in my table, i have been told that i would need some sort of looping instruction for it to do all the programs.
i have been looking over some coding for DO until instruction but i just know how to start it with this line