Hi,
In MS Vista Operating System, Office converter is not allow to import *.doc file.
While importing, it is not showing any filter option for selecting *.doc file which is created using MSWord.
Even I have tried with demo application for Office converter (Delphi 6).
Thanks,
Regards,
Laxmikant
In Vista, Office converter is not importing *.doc file
-
- Posts: 17
- Joined: Wed Apr 30, 2008 8:07 pm
-
- Site Admin
- Posts: 17555
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
I'm using Vista Business SP1, C++ Builder 2007, MS Office 2007 SP1, TRichViewEdit v1.9.46 and TRVOfficeConverter without any problems.
The following source works:
My application shows a list of RTF, DOCM, WPS, DOCX and DOC files. Importing these files work perfectly.
The following source works:
Code: Select all
OpenDialog1->Filter = "RTF files|*.rtf|" + rvc->GetImportFilter();
if(OpenDialog1->Execute())
{
rve->Clear();
rve->Format();
rve->Update();
rve->Clear();
if(OpenDialog1->FilterIndex == 1)
{
rve->LoadRTF(OpenDialog1->FileName);
}
else
{
rvc->ImportRV(OpenDialog1->FileName, rve, OpenDialog1->FilterIndex - 2);
}
rve->Format();
rve->Modified = true;
rve->SetFocus();
}
-
- Site Admin
- Posts: 17555
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
Sorry, I was wrong. The problem is with Word2007's DOC export converters, not with import converters. They should work fine.
Probably you just use wrong converter for this type of files.
There are two DOC files of different formats:
- Word 6/95 doc files;
- Word 97 and newer doc files.
The proper converter must be used for them.
And there is the 3d type of DOC files possible: RTF file with *.doc extension. Such files are saved by the "Word 6.0/95" export converter.
Probably you just use wrong converter for this type of files.
There are two DOC files of different formats:
- Word 6/95 doc files;
- Word 97 and newer doc files.
The proper converter must be used for them.
And there is the 3d type of DOC files possible: RTF file with *.doc extension. Such files are saved by the "Word 6.0/95" export converter.
-
- Site Admin
- Posts: 17555
- Joined: Sat Aug 27, 2005 10:28 am
- Contact: