excel vba - Runtime error 70 Permission Denied -


i error

runtime error 70 permission denied

when trying feed combo. current code:

private sub userform_initialize()     dim x long     dim sht string      sht = sheets(1).name     sheets(sht).select     x = 2      while x <= 27         cbouserid.additem range("a" & x).value         x = x + 1     loop end sub 


Comments

Popular posts from this blog

php - trouble displaying mysqli database results in correct order -

depending on nth recurrence of job in control M -

sql server - Cannot query correctly (MSSQL - PHP - JSON) -