A Microsoft Outlook email forum. Outlook Banter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Email Newsgroups » Outlook - Using Forms
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Forms error - Rules issue?



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old April 28th 09, 10:21 PM posted to microsoft.public.outlook.program_forms
bottle
external usenet poster
 
Posts: 7
Default Forms error - Rules issue?

We contracted a designer to create an outlook form for us. I asked
the designer to summarize what the form is doing which is below.

“The form has a msflex grid component. When the form loads we are
loading data from a sql server and populating this grid. This is the
part that is triggering the security warning.”

We are getting errors and warnings on the client computers (xp box
with office 2003) and cannot figure out where they are coming from. I
am posting in this forum as I believe our server is forcing a policy
that is causing the issue. Problem is that I don’t know how to solve
it. Any assistance would be greatly appreciated. The errors we are
receiving when using the form are listed below. We have an SBS 2003
server w/ service pack 2

Notification
Microsoft Forms
to help prevent malicious code from running, one or more objects in
this form were not loaded. For more information contract you
administrator.

Error
Event Management System
adxoutlookevents_Newinspector.error while opening the new item. Error
returned was could not find the specified object at
microsoft.visualbasic.compilerServices.latebinding .lateget.......

Error
Script Error
Could not find the specified object. Line No:7
Ads
  #2  
Old April 28th 09, 11:10 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP][_3_]
external usenet poster
 
Posts: 465
Default Forms error - Rules issue?

See http://outlookcode.com/article.aspx?id=67, the section on Blocked
ActiveX Controls.

If you want help with code, you'll need to provide the actual statement. We
have no way of knowing what code line 7 contains.

--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54


"bottle" wrote in message
...
We contracted a designer to create an outlook form for us. I asked
the designer to summarize what the form is doing which is below.

“The form has a msflex grid component. When the form loads we are
loading data from a sql server and populating this grid. This is the
part that is triggering the security warning.”

We are getting errors and warnings on the client computers (xp box
with office 2003) and cannot figure out where they are coming from. I
am posting in this forum as I believe our server is forcing a policy
that is causing the issue. Problem is that I don’t know how to solve
it. Any assistance would be greatly appreciated. The errors we are
receiving when using the form are listed below. We have an SBS 2003
server w/ service pack 2

Notification
Microsoft Forms
to help prevent malicious code from running, one or more objects in
this form were not loaded. For more information contract you
administrator.

Error
Event Management System
adxoutlookevents_Newinspector.error while opening the new item. Error
returned was could not find the specified object at
microsoft.visualbasic.compilerServices.latebinding .lateget.......

Error
Script Error
Could not find the specified object. Line No:7


  #3  
Old April 30th 09, 05:38 PM posted to microsoft.public.outlook.program_forms
bottle
external usenet poster
 
Posts: 7
Default Forms error - Rules issue?

Thanks for your post. I am including the code from the form.
Unfortunately the desginer believes that this is a security issue that
is being controlled by our server, we just cant figure out where to
modify the rules.

Function Item_Open()
Set Page = GetInspector.ModifiedFormPages("Event Details")
Page.Controls("dtAnnouncement").height=17
Page.Controls("dtAnnouncement").width=105
Page.Controls("dtAnnouncement").value = Date()

Page.Controls("msfgArtist").height=99
Page.Controls("msfgArtist").width=463

Page.Controls("msfgPromotion").height=99
Page.Controls("msfgPromotion").width=463
End Function

The page has a MSFlexGrid control. Line 7 sets height on this control.
The security feature is preventing this.


On Apr 28, 4:10*pm, "Sue Mosher [MVP]" wrote:
Seehttp://outlookcode.com/article.aspx?id=67, the section on Blocked
ActiveX Controls.

If you want help with code, you'll need to provide the actual statement. We
have no way of knowing what code line 7 contains.

--
Sue Mosher, Outlook MVP
* *Author of Microsoft Outlook 2007 Programming:
* * *Jumpstart for Power Users and Administrators
* *http://www.outlookcode.com/article.aspx?id=54

"bottle" wrote in message

...
We contracted a designer to create an outlook form for us. *I asked
the designer to summarize what the form is doing which is below.

“The form has a msflex grid component. When the form loads we are
loading data from a sql server and populating this grid. This is the
part that is triggering the security warning.”

We are getting errors and warnings on the client computers (xp box
with office 2003) and cannot figure out where they are coming from. *I
am posting in this forum as I believe our server is forcing a policy
that is causing the issue. *Problem is that I don’t know how to solve
it. *Any assistance would be greatly appreciated. *The errors we are
receiving when using the form are listed below. *We have an SBS 2003
server w/ service pack 2

Notification
Microsoft Forms
to help prevent malicious code from running, one or more objects in
this form were not loaded. *For more information contract you
administrator.

Error
Event Management System
adxoutlookevents_Newinspector.error while opening the new item. *Error
returned was could not find the specified object at
microsoft.visualbasic.compilerServices.latebinding .lateget.......

Error
Script Error
Could not find the specified object. *Line No:7


  #4  
Old April 30th 09, 06:18 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP][_3_]
external usenet poster
 
Posts: 465
Default Forms error - Rules issue?

Did you read the article I suggested? It contains information about security
issues related to using non-Outlook controls. It's usually an issue only
with one-off forms, which shouldn't be running code at all, unless the
network administrator is allowing code to run behind one-off forms. However,
it looks like there is also an add-in involved, not just a custom form. The
Event Management System error you shared is not coming from the form code.

As for the second error, if line 7 in the form code is this statement:

Page.Controls("msfgArtist").height=99

the "Could not find the specified object" error message suggests that the
Event Details page has no control named msfgArtist or that the control
cannot be loaded.

--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54


"bottle" wrote in message
...
Thanks for your post. I am including the code from the form.
Unfortunately the desginer believes that this is a security issue that
is being controlled by our server, we just cant figure out where to
modify the rules.

Function Item_Open()
Set Page = GetInspector.ModifiedFormPages("Event Details")
Page.Controls("dtAnnouncement").height=17
Page.Controls("dtAnnouncement").width=105
Page.Controls("dtAnnouncement").value = Date()

Page.Controls("msfgArtist").height=99
Page.Controls("msfgArtist").width=463

Page.Controls("msfgPromotion").height=99
Page.Controls("msfgPromotion").width=463
End Function

The page has a MSFlexGrid control. Line 7 sets height on this control.
The security feature is preventing this.


On Apr 28, 4:10 pm, "Sue Mosher [MVP]" wrote:
See http://outlookcode.com/article.aspx?id=67, the section on Blocked
ActiveX Controls.

If you want help with code, you'll need to provide the actual statement.
We
have no way of knowing what code line 7 contains.

"bottle" wrote in message

...
We contracted a designer to create an outlook form for us. I asked
the designer to summarize what the form is doing which is below.

“The form has a msflex grid component. When the form loads we are
loading data from a sql server and populating this grid. This is the
part that is triggering the security warning.”

We are getting errors and warnings on the client computers (xp box
with office 2003) and cannot figure out where they are coming from. I
am posting in this forum as I believe our server is forcing a policy
that is causing the issue. Problem is that I don’t know how to solve
it. Any assistance would be greatly appreciated. The errors we are
receiving when using the form are listed below. We have an SBS 2003
server w/ service pack 2

Notification
Microsoft Forms
to help prevent malicious code from running, one or more objects in
this form were not loaded. For more information contract you
administrator.

Error
Event Management System
adxoutlookevents_Newinspector.error while opening the new item. Error
returned was could not find the specified object at
microsoft.visualbasic.compilerServices.latebinding .lateget.......

Error
Script Error
Could not find the specified object. Line No:7



  #5  
Old May 2nd 09, 05:59 AM posted to microsoft.public.outlook.program_forms
bottle
external usenet poster
 
Posts: 7
Default Forms error - Rules issue?

Thank you for the article link. I did try making the registry edits
but to no avail. I think a rule is being introduced by our sbs 2003
server. Just don't know where to look. Any other suggestions?

On Apr 30, 11:18*am, "Sue Mosher [MVP]"
wrote:
Did you read the article I suggested? It contains information about security
issues related to using non-Outlook controls. It's usually an issue only
with one-off forms, which shouldn't be running code at all, unless the
network administrator is allowing code to run behind one-off forms. However,
it looks like there is also an add-in involved, not just a custom form. The
Event Management System error you shared is not coming from the form code..

As for the second error, if line 7 in the form code is this statement:

* * * * * * * * Page.Controls("msfgArtist").height=99

the "Could not find the specified object" error message suggests that the
Event Details page has no control named msfgArtist or that the control
cannot be loaded.

--
Sue Mosher, Outlook MVP
* *Author of Microsoft Outlook 2007 Programming:
* * *Jumpstart for Power Users and Administrators
* *http://www.outlookcode.com/article.aspx?id=54

"bottle" wrote in message

...
Thanks for your post. *I am including the code from the form.
Unfortunately the desginer believes that this is a security issue that
is being controlled by our server, we just cant figure out where to
modify the rules.

Function Item_Open()
* * * * * * Set Page = GetInspector.ModifiedFormPages("Event Details")
* * * * * * Page.Controls("dtAnnouncement").height=17
* * * * * * Page.Controls("dtAnnouncement").width=105
* * * * * * Page.Controls("dtAnnouncement").value = Date()

* * * * * * Page.Controls("msfgArtist").height=99
* * * * * * Page.Controls("msfgArtist").width=463

* * * * * * Page.Controls("msfgPromotion").height=99
* * * * * * Page.Controls("msfgPromotion").width=463
End Function

The page has a MSFlexGrid control. Line 7 sets height on this control.
The security feature is preventing this.

On Apr 28, 4:10 pm, "Sue Mosher [MVP]" wrote:

Seehttp://outlookcode.com/article.aspx?id=67, the section on Blocked
ActiveX Controls.


If you want help with code, you'll need to provide the actual statement..
We
have no way of knowing what code line 7 contains.


"bottle" wrote in message


....
We contracted a designer to create an outlook form for us. I asked
the designer to summarize what the form is doing which is below.


“The form has a msflex grid component. When the form loads we are
loading data from a sql server and populating this grid. This is the
part that is triggering the security warning.”


We are getting errors and warnings on the client computers (xp box
with office 2003) and cannot figure out where they are coming from. I
am posting in this forum as I believe our server is forcing a policy
that is causing the issue. Problem is that I don’t know how to solve
it. Any assistance would be greatly appreciated. The errors we are
receiving when using the form are listed below. We have an SBS 2003
server w/ service pack 2


Notification
Microsoft Forms
to help prevent malicious code from running, one or more objects in
this form were not loaded. For more information contract you
administrator.


Error
Event Management System
adxoutlookevents_Newinspector.error while opening the new item. Error
returned was could not find the specified object at
microsoft.visualbasic.compilerServices.latebinding .lateget.......


Error
Script Error
Could not find the specified object. Line No:7


  #6  
Old May 3rd 09, 09:19 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP][_3_]
external usenet poster
 
Posts: 465
Default Forms error - Rules issue?

Have you checked with your own email administrators? Looked to see if
they've set up security in the Outlook Security Settings public folder?
--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54


"bottle" wrote in message
...
Thank you for the article link. I did try making the registry edits
but to no avail. I think a rule is being introduced by our sbs 2003
server. Just don't know where to look. Any other suggestions?

On Apr 30, 11:18 am, "Sue Mosher [MVP]"
wrote:
Did you read the article I suggested? It contains information about
security
issues related to using non-Outlook controls. It's usually an issue only
with one-off forms, which shouldn't be running code at all, unless the
network administrator is allowing code to run behind one-off forms.
However,
it looks like there is also an add-in involved, not just a custom form.
The
Event Management System error you shared is not coming from the form code.

As for the second error, if line 7 in the form code is this statement:

Page.Controls("msfgArtist").height=99

the "Could not find the specified object" error message suggests that the
Event Details page has no control named msfgArtist or that the control
cannot be loaded.


"bottle" wrote in message

...
Thanks for your post. I am including the code from the form.
Unfortunately the desginer believes that this is a security issue that
is being controlled by our server, we just cant figure out where to
modify the rules.

Function Item_Open()
Set Page = GetInspector.ModifiedFormPages("Event Details")
Page.Controls("dtAnnouncement").height=17
Page.Controls("dtAnnouncement").width=105
Page.Controls("dtAnnouncement").value = Date()

Page.Controls("msfgArtist").height=99
Page.Controls("msfgArtist").width=463

Page.Controls("msfgPromotion").height=99
Page.Controls("msfgPromotion").width=463
End Function

The page has a MSFlexGrid control. Line 7 sets height on this control.
The security feature is preventing this.

On Apr 28, 4:10 pm, "Sue Mosher [MVP]" wrote:

Seehttp://outlookcode.com/article.aspx?id=67, the section on Blocked
ActiveX Controls.


If you want help with code, you'll need to provide the actual statement.
We
have no way of knowing what code line 7 contains.


"bottle" wrote in message


...
We contracted a designer to create an outlook form for us. I asked
the designer to summarize what the form is doing which is below.


“The form has a msflex grid component. When the form loads we are
loading data from a sql server and populating this grid. This is the
part that is triggering the security warning.”


We are getting errors and warnings on the client computers (xp box
with office 2003) and cannot figure out where they are coming from. I
am posting in this forum as I believe our server is forcing a policy
that is causing the issue. Problem is that I don’t know how to solve
it. Any assistance would be greatly appreciated. The errors we are
receiving when using the form are listed below. We have an SBS 2003
server w/ service pack 2


Notification
Microsoft Forms
to help prevent malicious code from running, one or more objects in
this form were not loaded. For more information contract you
administrator.


Error
Event Management System
adxoutlookevents_Newinspector.error while opening the new item. Error
returned was could not find the specified object at
microsoft.visualbasic.compilerServices.latebinding .lateget.......


Error
Script Error
Could not find the specified object. Line No:7



  #7  
Old May 4th 09, 06:24 PM posted to microsoft.public.outlook.program_forms
bottle
external usenet poster
 
Posts: 7
Default Forms error - Rules issue?

Any idea where to check these security settings on an sbs 2003 box?

On May 3, 2:19*pm, "Sue Mosher [MVP]" wrote:
Have you checked with your own email administrators? Looked to see if
they've set up security in the Outlook Security Settings public folder?
--
Sue Mosher, Outlook MVP
* *Author of Microsoft Outlook 2007 Programming:
* * *Jumpstart for Power Users and Administrators
* *http://www.outlookcode.com/article.aspx?id=54

"bottle" wrote in message

...
Thank you for the article link. *I did try making the registry edits
but to no avail. *I think a rule is being introduced by our sbs 2003
server. *Just don't know where to look. *Any other suggestions?

On Apr 30, 11:18 am, "Sue Mosher [MVP]"
wrote:

Did you read the article I suggested? It contains information about
security
issues related to using non-Outlook controls. It's usually an issue only
with one-off forms, which shouldn't be running code at all, unless the
network administrator is allowing code to run behind one-off forms.
However,
it looks like there is also an add-in involved, not just a custom form.
The
Event Management System error you shared is not coming from the form code.


As for the second error, if line 7 in the form code is this statement:


Page.Controls("msfgArtist").height=99


the "Could not find the specified object" error message suggests that the
Event Detailspage has no control named msfgArtist or that the control
cannot be loaded.
"bottle" wrote in message


...
Thanks for your post. I am including the code from the form.
Unfortunately the desginer believes that this is a security issue that
is being controlled by our server, we just cant figure out where to
modify the rules.


Function Item_Open()
Set Page =GetInspector.ModifiedFormPages("Event Details")
Page.Controls("dtAnnouncement").height=17
Page.Controls("dtAnnouncement").width=105
Page.Controls("dtAnnouncement").value = Date()


Page.Controls("msfgArtist").height=99
Page.Controls("msfgArtist").width=463


Page.Controls("msfgPromotion").height=99
Page.Controls("msfgPromotion").width=463
End Function


The page has a MSFlexGrid control. Line 7 sets height on this control.
The security feature is preventing this.


On Apr 28, 4:10 pm, "Sue Mosher [MVP]" wrote:


Seehttp://outlookcode.com/article.aspx?id=67, the section on Blocked
ActiveX Controls.


If you want help with code, you'll need to provide the actual statement.

  #8  
Old May 4th 09, 06:36 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP][_3_]
external usenet poster
 
Posts: 465
Default Forms error - Rules issue?

Exactly where I said to look: In the Public Folders hierarchy. Outlook
Security Settings, if present, is always a top-level folder under Public
Folders\All Folders.

--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54


"bottle" wrote in message
...
Any idea where to check these security settings on an sbs 2003 box?

On May 3, 2:19 pm, "Sue Mosher [MVP]" wrote:
Have you checked with your own email administrators? Looked to see if
they've set up security in the Outlook Security Settings public folder?

"bottle" wrote in message

...
Thank you for the article link. I did try making the registry edits
but to no avail. I think a rule is being introduced by our sbs 2003
server. Just don't know where to look. Any other suggestions?

On Apr 30, 11:18 am, "Sue Mosher [MVP]"
wrote:

Did you read the article I suggested? It contains information about
security
issues related to using non-Outlook controls. It's usually an issue only
with one-off forms, which shouldn't be running code at all, unless the
network administrator is allowing code to run behind one-off forms.
However,
it looks like there is also an add-in involved, not just a custom form.
The
Event Management System error you shared is not coming from the form
code.


As for the second error, if line 7 in the form code is this statement:


Page.Controls("msfgArtist").height=99


the "Could not find the specified object" error message suggests that
the
Event Detailspage has no control named msfgArtist or that the control
cannot be loaded.
"bottle" wrote in message


...
Thanks for your post. I am including the code from the form.
Unfortunately the desginer believes that this is a security issue that
is being controlled by our server, we just cant figure out where to
modify the rules.


Function Item_Open()
Set Page =GetInspector.ModifiedFormPages("Event Details")
Page.Controls("dtAnnouncement").height=17
Page.Controls("dtAnnouncement").width=105
Page.Controls("dtAnnouncement").value = Date()


Page.Controls("msfgArtist").height=99
Page.Controls("msfgArtist").width=463


Page.Controls("msfgPromotion").height=99
Page.Controls("msfgPromotion").width=463
End Function


The page has a MSFlexGrid control. Line 7 sets height on this control.
The security feature is preventing this.


On Apr 28, 4:10 pm, "Sue Mosher [MVP]" wrote:


Seehttp://outlookcode.com/article.aspx?id=67, the section on Blocked
ActiveX Controls.


If you want help with code, you'll need to provide the actual
statement.
We
have no way of knowing what code line 7 contains.


"bottle" wrote in message


...
We contracted a designer to create an outlook form for us. I asked
the designer to summarize what the form is doing which is below.


“The form has a msflex grid component. When the form loads we are
loading data from a sql server and populating this grid. This is the
part that is triggering the security warning.”


We are getting errors and warnings on the client computers (xp box
with office 2003) and cannot figure out where they are coming from. I
am posting in this forum as I believe our server is forcing a policy
that is causing the issue. Problem is that I don’t know how to solve
it. Any assistance would be greatly appreciated. The errors we are
receiving when using the form are listed below. We have an SBS 2003
server w/ service pack 2


Notification
Microsoft Forms
to help prevent malicious code from running, one or more objects in
this form were not loaded. For more information contract you
administrator.


Error
Event Management System
adxoutlookevents_Newinspector.error while opening the new item. Error
returned was could not find the specified object at
microsoft.visualbasic.compilerServices.latebinding .lateget.......


Error
Script Error
Could not find the specified object. Line No:7



  #9  
Old May 4th 09, 08:35 PM posted to microsoft.public.outlook.program_forms
bottle
external usenet poster
 
Posts: 7
Default Forms error - Rules issue?

Outlook Security settings are not present. Any other suggestions?
Thanks in advance.

On May 4, 11:36*am, "Sue Mosher [MVP]" wrote:
Exactly where I said to look: In the Public Folders hierarchy. Outlook
Security Settings, if present, is always a top-level folder under Public
Folders\All Folders.

--
Sue Mosher, Outlook MVP
* *Author of Microsoft Outlook 2007 Programming:
* * *Jumpstart for Power Users and Administrators
* *http://www.outlookcode.com/article.aspx?id=54

"bottle" wrote in message

...
Any idea where to check these security settings on an sbs 2003 box?

On May 3, 2:19 pm, "Sue Mosher [MVP]" wrote:

Have you checked with your own email administrators? Looked to see if
they've set up security in the Outlook Security Settings public folder?


"bottle" wrote in message


...
Thank you for the article link. I did try making the registry edits
but to no avail. I think a rule is being introduced by our sbs 2003
server. Just don't know where to look. Any other suggestions?


On Apr 30, 11:18 am, "Sue Mosher [MVP]"
wrote:


Did you read the article I suggested? It contains information about
security
issues related to using non-Outlook controls. It's usually an issue only
with one-off forms, which shouldn't be running code at all, unless the
network administrator is allowing code to run behind one-off forms.
However,
it looks like there is also an add-in involved, not just a custom form.
The
Event Management System error you shared is not coming from the form
code.


As for the second error, if line 7 in the form code is this statement:


Page.Controls("msfgArtist").height=99


the "Could not find the specified object" error message suggests that
the
Event Detailspage has no control named msfgArtist or that the control
cannot be loaded.
"bottle" wrote in message


....
Thanks for your post. I am including the code from the form.
Unfortunately the desginer believes that this is a security issue that
is being controlled by our server, we just cant figure out where to
modify the rules.


Function Item_Open()
Set Page =GetInspector.ModifiedFormPages("Event Details")
Page.Controls("dtAnnouncement").height=17
Page.Controls("dtAnnouncement").width=105
Page.Controls("dtAnnouncement").value = Date()


Page.Controls("msfgArtist").height=99
Page.Controls("msfgArtist").width=463


Page.Controls("msfgPromotion").height=99
Page.Controls("msfgPromotion").width=463
End Function


The page has a MSFlexGrid control. Line 7 sets height on this control..
The security feature is preventing this.


On Apr 28, 4:10 pm, "Sue Mosher [MVP]" wrote:


Seehttp://outlookcode.com/article.aspx?id=67, the section on Blocked
ActiveX Controls.


If you want help with code, you'll need to provide the actual
statement.
We
have no way of knowing what code line 7 contains.


"bottle" wrote in message


...
We contracted a designer to create an outlook form for us. I asked
the designer to summarize what the form is doing which is below.


“The form has a msflex grid component. When the form loads we are
loading data from a sql server and populating this grid. This is the
part that is triggering the security warning.”


We are getting errors and warnings on the client computers (xp box
with office 2003) and cannot figure out where they are coming from. I
am posting in this forum as I believe our server is forcing a policy
that is causing the issue. Problem is that I don’t know how to solve
it. Any assistance would be greatly appreciated. The errors we are
receiving when using the form are listed below. We have an SBS 2003
server w/ service pack 2


Notification
Microsoft Forms
to help prevent malicious code from running, one or more objects in
this form were not loaded. For more information contract you
administrator.


Error
Event Management System
adxoutlookevents_Newinspector.error while opening the new item. Error
returned was could not find the specified object at
microsoft.visualbasic.compilerServices.latebinding .lateget.......


Error
Script Error
Could not find the specified object. Line No:7


  #10  
Old May 4th 09, 08:59 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP][_3_]
external usenet poster
 
Posts: 465
Default Forms error - Rules issue?

The only other thing I can think of is that maybe the flexgrid control
wasn't properly registered so it can't load. That's not an Outlook issue,
but an issue with the custom application's setup.

I don't think this has anything to do with your SBS server.

--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54


"bottle" wrote in message
...
Outlook Security settings are not present. Any other suggestions?
Thanks in advance.

On May 4, 11:36 am, "Sue Mosher [MVP]" wrote:
Exactly where I said to look: In the Public Folders hierarchy. Outlook
Security Settings, if present, is always a top-level folder under Public
Folders\All Folders.

--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54

"bottle" wrote in message

...
Any idea where to check these security settings on an sbs 2003 box?

On May 3, 2:19 pm, "Sue Mosher [MVP]" wrote:

Have you checked with your own email administrators? Looked to see if
they've set up security in the Outlook Security Settings public folder?


"bottle" wrote in message


...
Thank you for the article link. I did try making the registry edits
but to no avail. I think a rule is being introduced by our sbs 2003
server. Just don't know where to look. Any other suggestions?


On Apr 30, 11:18 am, "Sue Mosher [MVP]"
wrote:


Did you read the article I suggested? It contains information about
security
issues related to using non-Outlook controls. It's usually an issue
only
with one-off forms, which shouldn't be running code at all, unless the
network administrator is allowing code to run behind one-off forms.
However,
it looks like there is also an add-in involved, not just a custom
form.
The
Event Management System error you shared is not coming from the form
code.


As for the second error, if line 7 in the form code is this statement:


Page.Controls("msfgArtist").height=99


the "Could not find the specified object" error message suggests that
the
Event Detailspage has no control named msfgArtist or that the control
cannot be loaded.
"bottle" wrote in message


...
Thanks for your post. I am including the code from the form.
Unfortunately the desginer believes that this is a security issue that
is being controlled by our server, we just cant figure out where to
modify the rules.


Function Item_Open()
Set Page =GetInspector.ModifiedFormPages("Event Details")
Page.Controls("dtAnnouncement").height=17
Page.Controls("dtAnnouncement").width=105
Page.Controls("dtAnnouncement").value = Date()


Page.Controls("msfgArtist").height=99
Page.Controls("msfgArtist").width=463


Page.Controls("msfgPromotion").height=99
Page.Controls("msfgPromotion").width=463
End Function


The page has a MSFlexGrid control. Line 7 sets height on this control.
The security feature is preventing this.


On Apr 28, 4:10 pm, "Sue Mosher [MVP]" wrote:


Seehttp://outlookcode.com/article.aspx?id=67, the section on Blocked
ActiveX Controls.


If you want help with code, you'll need to provide the actual
statement.
We
have no way of knowing what code line 7 contains.


"bottle" wrote in message


...
We contracted a designer to create an outlook form for us. I asked
the designer to summarize what the form is doing which is below.


“The form has a msflex grid component. When the form loads we are
loading data from a sql server and populating this grid. This is the
part that is triggering the security warning.”


We are getting errors and warnings on the client computers (xp box
with office 2003) and cannot figure out where they are coming from.
I
am posting in this forum as I believe our server is forcing a policy
that is causing the issue. Problem is that I don’t know how to solve
it. Any assistance would be greatly appreciated. The errors we are
receiving when using the form are listed below. We have an SBS 2003
server w/ service pack 2


Notification
Microsoft Forms
to help prevent malicious code from running, one or more objects in
this form were not loaded. For more information contract you
administrator.


Error
Event Management System
adxoutlookevents_Newinspector.error while opening the new item.
Error
returned was could not find the specified object at
microsoft.visualbasic.compilerServices.latebinding .lateget.......


Error
Script Error
Could not find the specified object. Line No:7



 




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Outlook 2003 Forms issue. Cláudio Rodrigues [MVP] Outlook - General Queries 0 January 24th 08 09:58 PM
Weird issue publishing forms [email protected] Add-ins for Outlook 5 August 14th 07 07:01 PM
outlook 2003 forms issue prog Outlook - Using Forms 8 May 14th 07 07:11 PM
Issue seeing / posting to the Org Forms Library ttw001 Outlook - Using Forms 1 March 2nd 07 02:56 AM
Issue with Forms and Cached Exchange Mode. charftong Outlook - Using Forms 5 November 29th 06 08:54 PM


All times are GMT +1. The time now is 12:57 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2025 Outlook Banter.
The comments are property of their posters.