Default Excel 2007 -RangeFromPoint not working for shapes [message #399539]
Wed, 27 August 2008 01:22
excelthoughts Messages: 2 Registered: August 2006 Location: NULL
Junior Member
I have some code that works for Excel 2003, but not for Excel 2007.
It involves monitoring the Cursor Location to check whether there is a Shape
under it and displaying a tooltip if there is.
Excel 2007 seems to treat everything under Cursor as a Range, even if the
cursor is over a Shape.
I have put VBA code (rather than C#) here as I initially thought that it was
an issue with the Excel 2007 Addin I created using Visual Studio 2008.
However, code fails in VBA and C#.
Set up required to reproduce the problem (VBA code):
1- Place a TextBox (TextBox1) on sheet1 .
2- Place any number of AutoShapes on the same sheet.
3- Add 2 Buttons and assigning to them respectively the StartToolTip and the
StopToolTip Procedures.
Code:
Place this in the Workbook Module:
Code:
Private Sub Workbook_Open() Sheets(1).TextBox1.Visible = False End Sub
Place this code in the Worksheet Module:
Code:
Private Sub CommandButton1_Click()
StartToolTip
End Sub
Private Sub CommandButton2_Click()
StopToolTip
End Sub
Private Sub TextBox1_MouseMove(ByVal Button As Integer, ByVal Shift As
Integer, ByVal X As Single, ByVal Y As Single)
TextBox1.Visible = False
End Sub
Place this code in a Standard Module :
Code:
Option Base 1
Option Explicit
Private Declare Function SetTimer Lib "user32" _
(ByVal hwnd As Long, ByVal nIDEvent As Long, ByVal uElapse As Long, _
ByVal lpTimerFunc As Long) As Long
Private Declare Function KillTimer Lib "user32" (ByVal hwnd As Long, _
ByVal nIDEvent As Long) As Long
Private lTimerID As Long
Private Type POINTAPI
X As Long
Y As Long
End Type
Private Declare Function GetCursorPos Lib "user32" (lpPoint As POINTAPI) As
Long
Private oToolTip As Object
Private ShapesArr() As String
Dim tCurPos As POINTAPI
Dim oRangeFromPoint As Object
Dim bFlag As Boolean
Static oPrev As Object
On Error Resume Next
GetCursorPos tCurPos
Set oRangeFromPoint = ActiveWindow.RangeFromPoint(tCurPos.X, tCurPos.Y)
With oRangeFromPoint
If Not oRangeFromPoint Is Nothing And TypeName(oRangeFromPoint) <>
"OLEObject" And TypeName(oRangeFromPoint) <> "Range" Then
If oPrev.Name <> .Name And .Name <> oToolTip.Name Then
Set oPrev = oRangeFromPoint
bFlag = WorksheetFunction.Match(.Name, ShapesArr(), 0) >= 1
If bFlag Then
bFlag = Null
FormatAndShowToolTip oToolTip, oRangeFromPoint
End If
End If
ElseIf oToolTip.Visible = True Then
oToolTip.Visible = False
Else
Set oPrev = Nothing
End If
End With
End Sub
Private Sub FormatAndShowToolTip(t As Object, ByVal s As Object)
' Dim sText As String
Const sText = "Top line numbers for "
Const bRept = 10
Dim iFarRightColumn As Integer
Now, open workbook in Excel 2003. Should work. Open in Excel 2007. Doesn't
work.
Anyone know why this is happening, or another workaround?
I know I could sort of get the position of each shape using
Range(shape.TopLeftCell, shape.BottomRightCell)), but it is not very
accurate, especially when there are shapes close to each other/overlapping.
v-jzho Messages: 28 Registered: August 2008 Location: NULL
Junior Member
Hello Dave,
Thanks for using Microsoft Newsgroup Support Service, this is Ji Zhou
[MSFT] and I will be working on this issue with you.
Based on my understanding of the issue, we are now trying to get the cell
where our mouse cursor is currently in. Is my understanding right? If not,
please let me know. I find that Cell.Selected is the only property that
tells the information in the PowerPoint object model. Consequently, I think
we can use the following codes to achieve what we want:
PowerPoint.Selection selection = applicationObject.ActiveWindow.Selection;
PowerPoint.Table activetable = selection.ShapeRange.Table;
for (int i = 1; i <= activetable.Rows.Count; i++)
{
for (int j = 1; j <= activetable.Columns.Count; j++)
{
if (activetable.Cell(i, j).Selected)
{
Debug.Print("The current selection is in " +
selection.ShapeRange.Name + " Cell(" + i.ToString() + ", " + j.ToString() +
")");
}
}
}
The above code firstly gets the selection object from the ActiveWindow.
After that, it gets the table from the selection.ShapeRange.Table, and
iterates through all cells in the table to see whose Selected property
returns true. The selected cell is we are looking for.
Please let me know whether this works for you or not. And if you have any
other concerns, please feel free to contact me. I will do my best to help.
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at: msdnmg@microsoft.com.
Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at http://support.microsoft.com/select/default.aspx?target=assi stance&ln=en-us.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
RE: Determine the filesize of an image in a document [message #399544]
Wed, 27 August 2008 02:29
v-jzho Messages: 28 Registered: August 2008 Location: NULL
Junior Member
Hello Peter,
Thanks for using Microsoft Newsgroup Support Service, this is Ji Zhou
[MSFT] and I will be working on this issue with you.
Firstly, I want to ensure I understand the issue correctly. We are trying
to get the physical size of images in the active document. If an image's
size is big, then we compress it. Any misunderstanding about your question,
please let me know.
I think, the approach depends on which version of Word we are using:
1.If we are using Word 2007 API and the .docx file format, the active
document exposes an property named
Document.WordOpenXML(http://msdn.microsoft.com/en-us/library/bb242889.aspx
). It will return the OpenXML content of the active document. If the user
does not modify the document in XML level, by default, the image
inlineshape's pkg:name will be image1, image2, image3.... And the
corresponding content in the OpenXML looks like:
Thus, I think we can try to search the index of the string "<pkg:part
pkg:name=\"/word/media/image"+index.ToString() with String.Indexof() method
in Document.WordOpenXML. And then we can find the next "<pkg:binaryData>"
and "</pkg:binaryData>" mark's location with the same method. Then, we can
know the binary data's length which reflects the image's physical size
occupied in the document.
2.If we are using Word 2003 and the .doc file format, no API exposed to
developer to get the inline image's size. The only way I can think out is
calling document.SaveAs() method to save the active document in html
format. Then, all images are saved in the corresponding folder of that html
file. We can iterate through those image files to know their actual size.
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at: msdnmg@microsoft.com.
Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at http://support.microsoft.com/select/default.aspx?target=assi stance&ln=en-us.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
RE: Determine the filesize of an image in a document [message #399564]
Wed, 27 August 2008 05:14
HayRoller Messages: 199 Registered: October 2007 Location: NULL
Senior Member
Hi Ji Zhou
Thanks for your reply.
In this project, we're dealing with Office 2003, so it's a pity it won't work.
Your suggestion will probably be a problem since this check will be done
everytime a document is opened.
Thanks anyway
Regards
--
Peter Karlström
Midrange AB
Sweden
""Ji Zhou [MSFT]"" wrote:
> Hello Peter,
>
> Thanks for using Microsoft Newsgroup Support Service, this is Ji Zhou
> [MSFT] and I will be working on this issue with you.
>
> Firstly, I want to ensure I understand the issue correctly. We are trying
> to get the physical size of images in the active document. If an image's
> size is big, then we compress it. Any misunderstanding about your question,
> please let me know.
>
> I think, the approach depends on which version of Word we are using:
>
> 1.If we are using Word 2007 API and the .docx file format, the active
> document exposes an property named
> Document.WordOpenXML(http://msdn.microsoft.com/en-us/library/bb242889.aspx
> ). It will return the OpenXML content of the active document. If the user
> does not modify the document in XML level, by default, the image
> inlineshape's pkg:name will be image1, image2, image3.... And the
> corresponding content in the OpenXML looks like:
>
> <pkg:part pkg:name=\"/word/media/image1.gif\" pkg:contentType=\"image/gif\"
> pkg:compression=\"store\">
> <pkg:binaryData>(binary content represents the image)
> </pkg:binaryData>
> </pkg:part>
>
> Thus, I think we can try to search the index of the string "<pkg:part
> pkg:name=\"/word/media/image"+index.ToString() with String.Indexof() method
> in Document.WordOpenXML. And then we can find the next "<pkg:binaryData>"
> and "</pkg:binaryData>" mark's location with the same method. Then, we can
> know the binary data's length which reflects the image's physical size
> occupied in the document.
>
> 2.If we are using Word 2003 and the .doc file format, no API exposed to
> developer to get the inline image's size. The only way I can think out is
> calling document.SaveAs() method to save the active document in html
> format. Then, all images are saved in the corresponding folder of that html
> file. We can iterate through those image files to know their actual size.
>
>
> Best regards,
> Ji Zhou (v-jzho@online.microsoft.com, remove 'online.')
> Microsoft Online Community Support
>
> Delighting our customers is our #1 priority. We welcome your comments and
> suggestions about how we can improve the support we provide to you. Please
> feel free to let my manager know what you think of the level of service
> provided. You can send feedback directly to my manager at:
> msdnmg@microsoft.com.
>
> ==================================================
> Get notification to my posts through email? Please refer to
> http://msdn.microsoft.com/en-us/subscriptions/aa948868.aspx# notifications.
>
> Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
> where an initial response from the community or a Microsoft Support
> Engineer within 1 business day is acceptable. Please note that each follow
> up response may take approximately 2 business days as the support
> professional working with you may need further investigation to reach the
> most efficient resolution. The offering is not appropriate for situations
> that require urgent, real-time or phone-based interactions or complex
> project analysis and dump analysis issues. Issues of this nature are best
> handled working with a dedicated Microsoft Support Engineer by contacting
> Microsoft Customer Support Services (CSS) at
> http://support.microsoft.com/select/default.aspx?target=assi stance&ln=en-us.
> ==================================================
> This posting is provided "AS IS" with no warranties, and confers no rights.
>
>
Re: Determine the filesize of an image in a document [message #399565]
Wed, 27 August 2008 05:55
Tony Jollans Messages: 34 Registered: March 2007 Location: NULL
Member
You can get a guide with something on these lines:
For Each s In ActiveDocument.InlineShapes
MsgBox "Guide size is " & UBound(s.Range.EnhMetaFileBits)
Next
However, this does not really reflect size on disk, especially in 2007 -
which may compress images itself (even before zipping), or may hold more
than one copy, depending on how the image has been edited.
--
Enjoy,
Tony
www.WordArticles.com
"Peter Karlström" <HayRoller@newsgroup.nospam> wrote in message
news:1FD0E760-5D35-4D34-9399-C038C9CDF5CC@microsoft.com...
> Hi
>
> In one of my projects I want to check all images in the active document
> and
> determine the actual "filesize" of that image, i.e. the image "physical"
> size.
>
> Next step will be do compress too large images in order to keep document
> filesize to a minimum.
>
> I have looked around in the InLineShape objekt without finding a proper
> approach or property/method.
>
> Is this possible? Can anybody help me?
>
> Thanks in advance
> --
> Peter Karlström
> Midrange AB
> Sweden
Re: Determine the filesize of an image in a document [message #399572]
Wed, 27 August 2008 06:53
HayRoller Messages: 199 Registered: October 2007 Location: NULL
Senior Member
Hi Tony
I much appreciate your reply, since it, after my testing, actually seems to
reflect size in some way. I will se if this can be of any use in the project.
Thanks a million
Best Regards
--
Peter Karlström
Midrange AB
Sweden
"Tony Jollans" wrote:
> You can get a guide with something on these lines:
>
> For Each s In ActiveDocument.InlineShapes
> MsgBox "Guide size is " & UBound(s.Range.EnhMetaFileBits)
> Next
>
> However, this does not really reflect size on disk, especially in 2007 -
> which may compress images itself (even before zipping), or may hold more
> than one copy, depending on how the image has been edited.
>
> --
> Enjoy,
> Tony
>
> www.WordArticles.com
>
> "Peter Karlström" <HayRoller@newsgroup.nospam> wrote in message
> news:1FD0E760-5D35-4D34-9399-C038C9CDF5CC@microsoft.com...
> > Hi
> >
> > In one of my projects I want to check all images in the active document
> > and
> > determine the actual "filesize" of that image, i.e. the image "physical"
> > size.
> >
> > Next step will be do compress too large images in order to keep document
> > filesize to a minimum.
> >
> > I have looked around in the InLineShape objekt without finding a proper
> > approach or property/method.
> >
> > Is this possible? Can anybody help me?
> >
> > Thanks in advance
> > --
> > Peter Karlström
> > Midrange AB
> > Sweden
>
>
David Thielen Messages: 1181 Registered: June 2006 Location: NULL
Senior Member
Hi;
As I understand it, I can add my own nodes anywhere in an Office XML
file (both Word 2003 WordML as well as the document/worksheet xml part
in a DOCX/XLSX file). Are there any rules about how/where to do this?
In creating a new appoint, where there are four options within the Show Time As: (Free, Tentative, Busy, Out of Office), can I add to those options? How? If I can, can I push this out thru Domain GPO? Thanks
You will need to wwrite a store provider, this is as Extdended MAPi as it
getsm which means no .Net.
Why can't you create your own PST store (Namespace.AddStore)?
--
Dmitry Streblechenko (MVP) http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
-
"Brian Graham" <BrianGraham@discussions.microsoft.com> wrote in message
news:A352B915-DB86-461A-BDA1-C27430AB7AB2@microsoft.com...
> Hi, Currently I have an add in that allows users to profile emails to a
> database by dragging and dropping the emails onto folders that I display
> in a
> separate Custom Task Pane.
>
> It would be a lot neater if I could create a store(?) that is not a PST
> file
> and dynamically create the folders and possibly even mail items in there
> on
> start-up.
>
> I have seen some other document management systems do something similar to
> this so my question is can this be done in c# .Net VSTO 3.0 with Outlook
> 2007?
>
> Thanks in advance
> Brian
How do I design a custom Task form and hide Page 1! [message #399775]
Wed, 27 August 2008 15:06
George P Messages: 3 Registered: April 2007 Location: NULL
Junior Member
I'm using the task functions in Outlook (2003) to record simple enquiries and
assign tasks to different people. I want to create a custom task form. I got
as far as creating a page two, but don't know how to get fields like "Due
date" to work with drop down calendars etc.
I also want to hide Page 1 (the default form) and to save the form so others
can use it
Programmatically set a textbox control to read-only [message #399716]
Wed, 27 August 2008 12:19
lucy[1] Messages: 38 Registered: December 2006 Location: NULL
Member
Hi,
I am creating an VSTO Add-in in C#. I have some textboxes on my custom form
that I want to programmatically set to read-only in my code. I am using
Microsoft.Vbe.Interop.Forms. I have looked under the
Microsoft.Vbe.Interop.Forms.Control interface and the
Microsoft.Vbe.Interop.Forms.TextBox interface properties for a 'Read-only'
property but cannot find one. Can anyone help me?
Did you try the Locked property?
--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook Programming: Jumpstart
for Administrators, Power Users, and Developers http://www.outlookcode.com/jumpstart.aspx
"Lucy" wrote:
> Hi,
>
> I am creating an VSTO Add-in in C#. I have some textboxes on my custom form
> that I want to programmatically set to read-only in my code. I am using
> Microsoft.Vbe.Interop.Forms. I have looked under the
> Microsoft.Vbe.Interop.Forms.Control interface and the
> Microsoft.Vbe.Interop.Forms.TextBox interface properties for a 'Read-only'
> property but cannot find one. Can anyone help me?
>
> Thanks.
RE: Microsoft Conferencing Add-in for Outlook Notification Questio [message #399562]
Wed, 27 August 2008 04:59
MatthiasK Messages: 1 Registered: August 2008 Location: NULL
Junior Member
Google is your best friend, just enter the subject line without the version
number and you can find the kb article http://support.microsoft.com/kb/954287
This is by design, but should not appear in the calendar, but in the Deleted
Items folder.
Probably not, certainly not with any Outlook code. If anything you'd have to
come up with some Win32 API hack that took callbacks on all messages to
newly opened windows and look for a newly opened window that was from a
browser and then hope it was due to clicking a link in an email and not from
some other method of opening a browser.
"t-timmy" <t-timmy@discussions.microsoft.com> wrote in message
news:6DD88B2C-3DBA-48AE-B33D-0329FBE289FC@microsoft.com...
> Hi.
>
> I searched for a solution, and couldn't find one.
>
> Is there a way for an add-in to capture specific links in a message?
>
> Let's say I'm writing a chess game, and I want all clicks to
> www.chess.com/play to be stopped, so I can open my game instead.
>
> Is this possible?
Re: Catching link clicks inside a message [message #399715]
Wed, 27 August 2008 12:53
t-timmy Messages: 2 Registered: August 2008 Location: NULL
Junior Member
I see...
That's a little discouraging.
Anyway, thanks for the quick answer.
"Ken Slovak - [MVP - Outlook]" wrote:
> Probably not, certainly not with any Outlook code. If anything you'd have to
> come up with some Win32 API hack that took callbacks on all messages to
> newly opened windows and look for a newly opened window that was from a
> browser and then hope it was due to clicking a link in an email and not from
> some other method of opening a browser.
>
> --
> Ken Slovak
> [MVP - Outlook]
> http://www.slovaktech.com
> Author: Professional Programming Outlook 2007.
> Reminder Manager, Extended Reminders, Attachment Options.
> http://www.slovaktech.com/products.htm
>
>
> "t-timmy" <t-timmy@discussions.microsoft.com> wrote in message
> news:6DD88B2C-3DBA-48AE-B33D-0329FBE289FC@microsoft.com...
> > Hi.
> >
> > I searched for a solution, and couldn't find one.
> >
> > Is there a way for an add-in to capture specific links in a message?
> >
> > Let's say I'm writing a chess game, and I want all clicks to
> > www.chess.com/play to be stopped, so I can open my game instead.
> >
> > Is this possible?
>
>
Problem with Outlook 2003 BCM and offline files [message #399540]
Wed, 27 August 2008 01:09
Gregg Hill Messages: 47 Registered: August 2006 Location: NULL
Member
Hello!
I have a client with SBS 2003 and Outlook 2003. Whenever he logs off if his
LAN workstation, he gets an error stating "Offline files (\\server\Users)
Unable to make 'Contact Management database [1].MDB available offline on
(UNC to his My Docs). Files of this type cannot be made available offline."
As a side note, has anyone had trouble with Google Groups searches lately,
say in the last week? I can search for items inside quotation marks such as
"files of this type cannot be made available offline" and I get few hits,
sometimes none. If I search without quotation marks, I get dozens of hits,
and they show the EXACT text of what was in the quotation marks on the first
searches.
When you attempt to make files or folders available offline, the following
error message may be displayed:
Offline files (\\server\share): Unable to make file Filename available
offline on \\server\share. Files of this type cannot be made available
offline.
CAUSE
By default, files with the following extensions are excluded:
..db?
..ldb
..mdb
..mde
..mdw
..pst
..slm
RESOLUTION
Microsoft does not recommend modifying the list of excluded files. See the
"More Information" section for more details.
Back to the top
STATUS
This behavior is by design.
Back to the top
MORE INFORMATION
Certain file types are excluded by default as a means to prevent file
conflicts and data loss. The mechanism that the Offline Files feature uses
is Client-Side Caching (CSC). CSC can recognize when synchronization issues
exist (for example, if the copy of a file on the server has been modified
since the last synchronization). In such a case, you can select which
version to use, but you cannot merge the contents.
There may also be another synchronization mechanism that is typically used
for the file type. One such file type is .pst files. This type is included
in the list to prevent conflicts with the built-in offline and
synchronization features in Microsoft Outlook. The Offline Files feature
uses a replacement method of synchronization, so there is no way to merge
the two copies.
You can modify the list of excluded extensions by editing the appropriate
Group Policy object (local, domain, organizational unit, and so on). For
example, to remove the .pst extension from the list of excluded files,
enable the following sample policy in Policy Editor:
Computer Configuration\Administrative Templates\Network\Offline Files\Files
not cached
Then, type the following string in the Extensions box:
*.slm;*.mdb;*.ldb;*.mdw;*.mde;*.db?
Log off, and then log back on. This replaces the default list, preserving
all but the *.pst extension. You can use the same method for any of the
other extensions.
=============
If this is Outlook 2007
have you thought about taking advantage of the shared Datbase with BCM
and put the datbase on the server and you sharing it?
Russ
--
Russell Grover - SBITS.Biz
Microsoft Gold Certified Partner
Microsoft Small Business Specialist
World Wide Remote SBS2003 Support - http://www.SBITS.Biz
"Gregg Hill" <greggmhill at please do not spam me at yahoo dot com> wrote in
message news:u8EQWMACJHA.1632@TK2MSFTNGP06.phx.gbl...
> Hello!
>
> I have a client with SBS 2003 and Outlook 2003. Whenever he logs off if
> his LAN workstation, he gets an error stating "Offline files
> (\\server\Users) Unable to make 'Contact Management database [1].MDB
> available offline on (UNC to his My Docs). Files of this type cannot be
> made available offline."
>
> As a side note, has anyone had trouble with Google Groups searches lately,
> say in the last week? I can search for items inside quotation marks such
> as "files of this type cannot be made available offline" and I get few
> hits, sometimes none. If I search without quotation marks, I get dozens of
> hits, and they show the EXACT text of what was in the quotation marks on
> the first searches.
>
> Thank you!
>
> Gregg Hill
>
>
>
>
>
>
>
>
Re: Problem with Outlook 2003 BCM and offline files [message #399542]
Wed, 27 August 2008 01:37
support Messages: 27 Registered: August 2006 Location: NULL
Junior Member
Sorry Glasses off (Didn't see the 2003)
Upgrade to office 2007 and you can share the BCM database on the SBS server
Works Great
Russ
And no I haven't noticed a Goggle Search issue on groups.. sorry
--
Russell Grover - SBITS.Biz
Microsoft Gold Certified Partner
Microsoft Small Business Specialist
World Wide Remote SBS2003 Support - http://www.SBITS.Biz
"Russ (www.SBITS.Biz)" <support@REMOVETHIS.sbits.biz> wrote in message
news:OkYZBYACJHA.2056@TK2MSFTNGP05.phx.gbl...
> Yes this is the way it's meant to work
> Syncronization will not occure on Specific Database files
> .mdb is one of them
>
> http://support.microsoft.com/default.aspx?scid=kb;en-us;252509
>
> When you attempt to make files or folders available offline, the following
> error message may be displayed:
> Offline files (\\server\share): Unable to make file Filename available
> offline on \\server\share. Files of this type cannot be made available
> offline.
>
> CAUSE
> By default, files with the following extensions are excluded:
> .db?
> .ldb
> .mdb
> .mde
> .mdw
> .pst
> .slm
>
> RESOLUTION
> Microsoft does not recommend modifying the list of excluded files. See the
> "More Information" section for more details.
> Back to the top
> STATUS
> This behavior is by design.
> Back to the top
>
> MORE INFORMATION
> Certain file types are excluded by default as a means to prevent file
> conflicts and data loss. The mechanism that the Offline Files feature uses
> is Client-Side Caching (CSC). CSC can recognize when synchronization
> issues exist (for example, if the copy of a file on the server has been
> modified since the last synchronization). In such a case, you can select
> which version to use, but you cannot merge the contents.
>
> There may also be another synchronization mechanism that is typically used
> for the file type. One such file type is .pst files. This type is included
> in the list to prevent conflicts with the built-in offline and
> synchronization features in Microsoft Outlook. The Offline Files feature
> uses a replacement method of synchronization, so there is no way to merge
> the two copies.
>
> You can modify the list of excluded extensions by editing the appropriate
> Group Policy object (local, domain, organizational unit, and so on). For
> example, to remove the .pst extension from the list of excluded files,
> enable the following sample policy in Policy Editor:
> Computer Configuration\Administrative Templates\Network\Offline
> Files\Files not cached
> Then, type the following string in the Extensions box:
> *.slm;*.mdb;*.ldb;*.mdw;*.mde;*.db?
> Log off, and then log back on. This replaces the default list, preserving
> all but the *.pst extension. You can use the same method for any of the
> other extensions.
>
> =============
> If this is Outlook 2007
> have you thought about taking advantage of the shared Datbase with BCM
> and put the datbase on the server and you sharing it?
>
> Russ
>
> --
> Russell Grover - SBITS.Biz
> Microsoft Gold Certified Partner
> Microsoft Small Business Specialist
> World Wide Remote SBS2003 Support - http://www.SBITS.Biz
>
>
> "Gregg Hill" <greggmhill at please do not spam me at yahoo dot com> wrote
> in message news:u8EQWMACJHA.1632@TK2MSFTNGP06.phx.gbl...
>> Hello!
>>
>> I have a client with SBS 2003 and Outlook 2003. Whenever he logs off if
>> his LAN workstation, he gets an error stating "Offline files
>> (\\server\Users) Unable to make 'Contact Management database [1].MDB
>> available offline on (UNC to his My Docs). Files of this type cannot be
>> made available offline."
>>
>> As a side note, has anyone had trouble with Google Groups searches
>> lately, say in the last week? I can search for items inside quotation
>> marks such as "files of this type cannot be made available offline" and I
>> get few hits, sometimes none. If I search without quotation marks, I get
>> dozens of hits, and they show the EXACT text of what was in the quotation
>> marks on the first searches.
>>
>> Thank you!
>>
>> Gregg Hill
>>
>>
>>
>>
>>
>>
>>
>>
>
>