On the microsoft website:
http://msdn.microsoft.com/en-us/library/vstudio/wak0wfyt.aspx#BKMK_DeclaringAnArray
It says that I can initialize the array as follows:
Dim doubles = {1.5, 2, 9.9, 18}
But I get an error message:
Compile error: Expected: end of statement
And he points to an equal sign. I just copy-paste, what's wrong here?
This will work in vb or vb.net, but not vba. You need to initialize this in two steps.
Dim doubles doubles = array(1.5, 2, 9.9, 18)
Source: https://habr.com/ru/post/944611/More articles:Image address in ember grunt build templates - build-processSquare R and absolute sum of squares available scipy.optimize curve_fit? - pythonUsing sendmail from the command line - emailNameError from Python input () function - pythonHow to debug OCaml code? - functional-programmingWindows Azure VM (Iaas) unexpected reboots - sql-serverMultiple checkbox filtering in AngularJS - angularjsreadOnlyInput does not work in p: calendars - jsf-2django-cms "summary view" combining content from multiple pages - djangoShow backup status on magento interface - frontendAll Articles