< Run-time error'380' Could not set the RowSource property. Invalid property value> on Mac
Hi,
I generated a VBA userform using 365. The code works fine on a PC. However, when I try to share the document with Mac users, I get a run-time error <Run-time error'380' Could not set the RowSource property. Invalid property value.> When I access the document on a Mac, the debugging error comes in the:
Sub Show_For ()
SampleSubmissionForm.()
End Sub
Can someone please help? Thanks in advanced
Last edited by llogballig; 06-01-2020 at 12:29 PM.
Re: < Run-time error'380' Could not set the RowSource property. Invalid property value> on
I have bad news. UserForms use ActiveX controls, and MacOS does not support them. (I assume your users are not using a Windows VM under MacOS.)
One option is to redevelop your project using a worksheet instead of a UserForm and use Forms controls instead of ActiveX, but you would have to rewrite all your code.
Jeff
| | |·| |·| |·| |·| | |:| | |·| |·| Read the rules
Use code tags to [code]enclose your code![/code]
Re: < Run-time error'380' Could not set the RowSource property. Invalid property value> on
Maybe my description was in exact . I would like for Mac users to be able to access the form to enter and save data. This is possible no?! Could you direct me to where I can learn how to develop the project as a worksheet? Thanks in advanced
Re: < Run-time error'380' Could not set the RowSource property. Invalid property value> on
Controls on a userform are not activex. The issue you have is that listboxes and comboboxes do not have a Rowsource property on a Mac. You need to populate them using either the List/Column properties, or AddItem.
Re: < Run-time error'380' Could not set the RowSource property. Invalid property value> on
Originally Posted by rorya
Controls on a userform are not activex. The issue you have is that listboxes and comboboxes do not have a Rowsource property on a Mac. You need to populate them using either the List/Column properties, or AddItem.
I apologize for this mistake, I am misinformed.
(I cannot imagine why the available properties would be any different for supported controls on a Mac.)
Bookmarks