We're sorry Aspose doesn't work properply without JavaScript enabled.

Free Support Forum - aspose.com

Excel 2 Word Directly

Hi,
how can i insert a excel worksheet in a word field?
I don’t wanna use Ole and image.
Please help-me!

Hi
Thanks for your request. There is no way to insert Excel worksheets into a Word document directly. However, you can try to achieve this using Aspose.Words and Aspose.Cells.
Maybe this demo could be useful for you.
https://releases.aspose.com/words/net
Best regards.

Hi,
How to get the temporary license?

The page bellow is not working.
https://purchase.aspose.com/temporary-license

Thanks!

In order for us to issue you a temporary license, we will first need to know:

  • What products you are interested in?
  • What platform you would like to use them on?
  • What your licensing needs will be?

Due to that, the option to request a temporay license is provided on the final step of the Get pricing information wizard.
Please click here to be taken to the main purchase page.

Sorry,
but the conversor is not working very well,
please, check that and help me again.

Hi
Thanks for your request. Please try using the latest version of conversion class.
Best regards.

Sorry,
but don’t works still.
Can you help me again?
It appears a problem with background color.

Hi
Thanks for your request. I tested your document and it seems it converted properly. Note, Xls2Doc is just demo, if you need you can change this code to fit your needs.
Best regards.

Ok!
Thanks!
I tried do this, and i found a thing,
the method bellow, allways return “black”,
please check that this problem is not in your application but in Aspose.Cells.
Can you help me?

// Set background color
wordsCell.CellFormat.Shading.ForegroundPatternColor = excelCell.Style.ForegroundColor;
wordsCell.CellFormat.Shading.BackgroundPatternColor = excelCell.Style.BackgroundColor;

Please, check the file attached.

I found the real problem,
please, note that when the cells has background-color, then the method “ConvertBackgroundTexture” allways returns “Aspose.Words.TextureIndex.TextureSolid”.
This value allways is read like black in my Word (Microsoft Word 2002 Language: Portuguese).
Can you help me?

Hi
Thanks for your request. It seems that it is a problem of MS Word 2002. I tested the document in Word 2003 and 2007 and it looks fine. As a workaround, you can try commenting out the following code:

// Set background texture
wordsCell.CellFormat.Shading.Texture = ConvertBackgroundTexture(excelCell.Style.Pattern);

Best regards.

Ok!
Thanks,
It works very well!!!