Windows error 0x88985002, -2003283966

Detailed Error Information

DWRITE_E_NOFONT[1]

MessageIndicates the specified font does not exist.
Declared inwinerror.h

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)true
FacilityCode2200 (0x898)
NameFACILITY_WINCODEC_DWRITE_DWM[1]
Error Code20482 (0x5002)

Questions

0votes
1answer

PrintPreviewDialog issue on 4K monitor

I have added a print preview feature to my program. The problem is, it does not display the preview document well on screen resolutions above 1920 x 1080. Example: preview [https://i.stack.imgur.com/nLxKG.png] Code: QFont docFont; docFont.setPointSize(14); QTextDocument *textDoc = new QTextDocument(this); textDoc->setDefaultFont(docFont); textDoc->setPlainText(getHardwareData()); During a debugging process I have found the [...] read more
c++
windows
qt

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0