Get 2 compile errors in my own app but not in example web1.app?
The compile errors are both
"No Matching Prototype Available"
The problem is here in both cases
this
 s_web.AddStyle(clip('shoestrap3') & '/nettalk-ui.css',true) & |
      s_web.AddStyle() &|
    ''
should be
 s_web.AddStyle(clip('shoestrap3') & '/nettalk-ui.css',true) & |
      s_web.AddStyle() &|
    ''
i.e. this must not be there
s_web.AddStyle() &|
Cannot edit the code as it is template generated.
How can I fix it?
IF(1)
    s_web._SitesQueue.Defaults.HtmlCommonStyles = |
      s_web.AddStyle(clip('shoestrap3') & '/theme.css',true) &|
      ''
  Else
    s_web._SitesQueue.Defaults.HtmlCommonStyles = |
      s_web.AddStyle(clip('shoestrap3') & '/jquery-ui.css',true) & |
      s_web.AddStyle('jquery-nt-color.css') &|
      s_web.AddStyle('jquery-nt-menu.css') &|
      s_web.AddStyle('jquery-nt-cal.css') &|
      s_web.AddStyle('jquery.ad-gallery.css') &|
      s_web.AddStyle('redactor.css') &|
      s_web.AddStyle('jquery.fileupload-ui.css') &|
      s_web.AddStyle('netweb.css') &|
      s_web.AddStyle(clip('shoestrap3') & '/nettalk-ui.css',true) & |
      s_web.AddStyle() &|
    ''
  End
  IF(1)
    s_web._SitesQueue.Defaults.HtmlCommonStylesMobile = |
      s_web.AddStyle(clip('shoestrap3') & '/mobiletheme.css',true) &|
      ''
  ELSE
    s_web._SitesQueue.Defaults.HtmlCommonStylesMobile = |
      s_web.AddStyle('jquery.mobile.structure.css') & |
      s_web.AddStyle(clip('shoestrap3') & '/jquery.mobile.theme.css',true) & |
      s_web.AddStyle(clip('shoestrap3') & '/jqm-icon-pack.css',true) &|
      s_web.AddStyle('jquery-nt-color.css') &|
      s_web.AddStyle('jquery-nt-menu.css') &|
      s_web.AddStyle('jquery-nt-cal.css') &|
      s_web.AddStyle('jquery.ad-gallery.css') &|
      s_web.AddStyle('jquery.fileupload-ui.css') &|
      s_web.AddStyle('redactor.css') &|
      s_web.AddStyle('netweb.css') &|
      s_web.AddStyle(clip('shoestrap3') & '/nettalk-mobile.css',true) & |
      s_web.AddStyle() &|
      ''
  End