Home |
Search |
Today's Posts |
#2
![]() |
|||
|
|||
![]() I may have found my own solution.... I'll post here for any other lost souls.. I had a thought that the difference between systems might have been Word's Normal.dot file, which is the base template for New documents. So I created my own .dot file and included it with the VB app distribution, and used it as a template when creating the new Word docs with the sctterplot graphs. VB6 code: Dim oWord As Word.Application Dim oDoc As Word.Document 'Start Word and open the document template. oWord = CreateObject("Word.Application") oWord.Visible = True oDoc = oWord.Documents.Add (Template:= _ App.path & "\Template.dot" _ , NewTemplate:=False, DocumentType:=0) So far so good, the client is reporting no scatterplot distortions... Hope this helps someone else. -Chris -- Hubris00 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Area chart Disappears | Charts and Charting in Excel | |||
Activating a Chart object | Charts and Charting in Excel | |||
Resize chart area without resizing plot area | Charts and Charting in Excel | |||
How do I alter plot area colour in a chart without a mouse? | Charts and Charting in Excel | |||
Area Chart Formatting Question | Charts and Charting in Excel |