PC Review


Reply
Thread Tools Rate Thread

Change data in an Internal Data Type

 
 
Blayne Willett
Guest
Posts: n/a
 
      21st Jul 2009
Field called "Message" is an Internal Data Type and it contains data that was
entered previously and we now want to delete the information and the system
will not allow you to delete it or change it.
This field keeps appearing at the end of any printouts even though it is not
shown on the form itself.
 
Reply With Quote
 
 
 
 
Sue Mosher [MVP]
Guest
Posts: n/a
 
      22nd Jul 2009
Huh? Do you mean the message body? It certainly can be changed, either with
VBA code by modifying the Body property or by changing the form design to
add the message control or make it visible. Then run the form, delete the
body content, and republish the form.

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


"Blayne Willett" <Blayne (E-Mail Removed)> wrote in message
news4D66EF9-0425-4543-920F-(E-Mail Removed)...
> Field called "Message" is an Internal Data Type and it contains data that
> was
> entered previously and we now want to delete the information and the
> system
> will not allow you to delete it or change it.
> This field keeps appearing at the end of any printouts even though it is
> not
> shown on the form itself.



 
Reply With Quote
 
Blayne Willett
Guest
Posts: n/a
 
      22nd Jul 2009
Sue.

Thanks for taking time to respond to my question.

I’m still not clear on what to do as I seem to have multiple issues that
together may require multiple solutions.

First let me say that the original form that I used as my starting point was
developed by Paul Orlando who is no longer with the company. Unfortunately
the form I used as my starting point contains his contact info in the
“Message” field and I am not allowed to edit this value. I also do not have
access to the “Body” field as you will see below.(Sorry your email address
did not work) It does not appear in the “Field Chooser” list even though it
exists behind the scene.

My object was to create a form and after sending the form to the appropriate
person they would print the information and file it. I did not include
“Message” on my form but it shows up as the last field on the printout. My
solution would be to edit it the Message field and simply blank it out but
I’m not allowed to do this.

Would this have anything to do with Outlook permissions?

Regards,








Blayne Willett
Manager, Data Centre Operations
SS&C Technologies
(formerly Financial Models Company Inc.)
(E-Mail Removed)
 905 - 212 - 3174 Direct
 647 - 204 - 2329 Cellular



"Sue Mosher [MVP]" wrote:

> Huh? Do you mean the message body? It certainly can be changed, either with
> VBA code by modifying the Body property or by changing the form design to
> add the message control or make it visible. Then run the form, delete the
> body content, and republish the form.
>
> --
> Sue Mosher, Outlook MVP
> Author of Microsoft Outlook 2007 Programming:
> Jumpstart for Power Users and Administrators
> http://www.outlookcode.com/article.aspx?id=54
>
>
> "Blayne Willett" <Blayne (E-Mail Removed)> wrote in message
> news4D66EF9-0425-4543-920F-(E-Mail Removed)...
> > Field called "Message" is an Internal Data Type and it contains data that
> > was
> > entered previously and we now want to delete the information and the
> > system
> > will not allow you to delete it or change it.
> > This field keeps appearing at the end of any printouts even though it is
> > not
> > shown on the form itself.

>
>
>

 
Reply With Quote
 
Blayne Willett
Guest
Posts: n/a
 
      22nd Jul 2009
"Message" and "Body" are two different fields within "Field Chooser" box.
For some reason, likely got deleted, the "Body" field does not appear even
though it does exist. The problem I'm having is with the "Message" field.
Please understand that I'm not putting this field on my form, the problem
seems to be that it was on the form that I copied in order to set up my new
form. The "Message" field does not appear on either the input or the read
page but it prints the message when you print the read page and I don't want
to see it EVER. The design software does not have edit capabilities for this
field. I can drag it onto the form, delete it and it dissappears but it
still prints on the output. Hopefully this better explains my problem.
"Sue Mosher [MVP]" wrote:

> Huh? Do you mean the message body? It certainly can be changed, either with
> VBA code by modifying the Body property or by changing the form design to
> add the message control or make it visible. Then run the form, delete the
> body content, and republish the form.
>
> --
> Sue Mosher, Outlook MVP
> Author of Microsoft Outlook 2007 Programming:
> Jumpstart for Power Users and Administrators
> http://www.outlookcode.com/article.aspx?id=54
>
>
> "Blayne Willett" <Blayne (E-Mail Removed)> wrote in message
> news4D66EF9-0425-4543-920F-(E-Mail Removed)...
> > Field called "Message" is an Internal Data Type and it contains data that
> > was
> > entered previously and we now want to delete the information and the
> > system
> > will not allow you to delete it or change it.
> > This field keeps appearing at the end of any printouts even though it is
> > not
> > shown on the form itself.

>
>
>

 
Reply With Quote
 
Blayne Willett
Guest
Posts: n/a
 
      22nd Jul 2009

I also own two of your books at work and likely a few others at home. Great
Books!

"Sue Mosher [MVP]" wrote:

> Huh? Do you mean the message body? It certainly can be changed, either with
> VBA code by modifying the Body property or by changing the form design to
> add the message control or make it visible. Then run the form, delete the
> body content, and republish the form.
>
> --
> Sue Mosher, Outlook MVP
> Author of Microsoft Outlook 2007 Programming:
> Jumpstart for Power Users and Administrators
> http://www.outlookcode.com/article.aspx?id=54
>
>
> "Blayne Willett" <Blayne (E-Mail Removed)> wrote in message
> news4D66EF9-0425-4543-920F-(E-Mail Removed)...
> > Field called "Message" is an Internal Data Type and it contains data that
> > was
> > entered previously and we now want to delete the information and the
> > system
> > will not allow you to delete it or change it.
> > This field keeps appearing at the end of any printouts even though it is
> > not
> > shown on the form itself.

>
>
>

 
Reply With Quote
 
Sue Mosher [MVP]
Guest
Posts: n/a
 
      23rd Jul 2009
If you want to fix the form, you need to use one of the two methods I
described earlier: (1) Use VBA code, e.g.:

Application.ActiveInspector.CurrentItem.Body = ""

and then republisth the form. Or, (2) add the Message field to the form
design, run the form, delete the message body content, republish.

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


"Blayne Willett" <(E-Mail Removed)> wrote in message
news:E1792759-E28E-45C4-882F-(E-Mail Removed)...
> "Message" and "Body" are two different fields within "Field Chooser" box.
> For some reason, likely got deleted, the "Body" field does not appear even
> though it does exist. The problem I'm having is with the "Message" field.
> Please understand that I'm not putting this field on my form, the problem
> seems to be that it was on the form that I copied in order to set up my
> new
> form. The "Message" field does not appear on either the input or the read
> page but it prints the message when you print the read page and I don't
> want
> to see it EVER. The design software does not have edit capabilities for
> this
> field. I can drag it onto the form, delete it and it dissappears but it
> still prints on the output. Hopefully this better explains my problem.
> "Sue Mosher [MVP]" wrote:
>
>> Huh? Do you mean the message body? It certainly can be changed, either
>> with
>> VBA code by modifying the Body property or by changing the form design to
>> add the message control or make it visible. Then run the form, delete the
>> body content, and republish the form.


>>
>> "Blayne Willett" <Blayne (E-Mail Removed)> wrote in
>> message
>> news4D66EF9-0425-4543-920F-(E-Mail Removed)...
>> > Field called "Message" is an Internal Data Type and it contains data
>> > that
>> > was
>> > entered previously and we now want to delete the information and the
>> > system
>> > will not allow you to delete it or change it.
>> > This field keeps appearing at the end of any printouts even though it
>> > is
>> > not
>> > shown on the form itself.

>>
>>
>>



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Get data of internal data representation of primitive type Jon Slaughter Microsoft C# .NET 7 2nd Apr 2008 10:33 AM
internal data integrity (type 4) =?Utf-8?B?U3RlZmFuaWU=?= Microsoft Word Document Management 1 21st Dec 2005 02:32 PM
Change Memo data type to Text data type DS Microsoft Access Getting Started 1 26th Jan 2005 04:56 PM
Unable to change data type in field options when importing data f. =?Utf-8?B?SmluTXF0?= Microsoft Access External Data 1 21st Jan 2005 10:58 PM
How to change a number or text data type to autonumber and keep the table data? Julian Ganoudis Microsoft Access Forms 2 12th Jan 2004 08:47 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 05:48 PM.