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
Post a Comment