帮助将pdf文件添加到Visual Studio
我正在从保存的PDF文件中进行辅导(《 C ++入门指南》),并且正在尝试在IDE(VS)中创建PDF的窗口,就像您可以通过单击起始页面上的链接并更改来获得浏览器窗口一样网址.但是,当我尝试添加文件时,它以机器语言出现,无法读取.我得到提示,这可能很重要,所以这是整个过程:;
行尾不一致.您要归一化行尾吗?
C:\ Users \ joe \ contacts \ Desktop \ C ++ \ C ++ BeginnersGuide.pdf
行结尾
(下一个是在显示此内容的下拉窗口中,其他内容是unix或其他内容,我是Windows,所以我保留在此,最高默认值)
Windows LR LF
(按钮)是,否
不管我执行是还是否,它仍然是无法读取的机器语言,但是它确实在一个窗口中.它发生在我身上,也许我应该尝试将pdf c/p放入OpenOffice,然后尝试将其作为文本文件放入,这是下一步,但是有人知道错在哪里或我应该怎么做吗?非常感谢您的时间.(c/p无法正常工作,它在剪贴板上的速度变慢,因为我认为它是PDF)
我正在使用win32console c ++在Visual Basic 2008中进行此研究.
I am tutoring from PDF files I saved (C++ Beginners Guide) and I am trying to make a window for the PDF in the IDE (VS) like you can have a browser window by hitting a link from the start page and changing the url. However, when I attempt to add the file, it comes in as machine language that is unreadable. I get a prompt and it may be important so here is the whole thing:;
the line endings are inconsistent. Do you want to normalize the line endings?
C:\Users\joe\contacts\Desktop\C++\C++BeginnersGuide.pdf
line ending
(this next is in a drop down window showing this, the other stuff is unix or other things, I am windows so I keep there, the top default)
Windows LR LF
(buttons) yes, no
No matter if I do yes or no it still is unreadable machine language, but it does go in a window. It occurred to me maybe I should try to c/p the pdf into OpenOffice and try putting it in as a text file, that''s next, but does anyone know what is wrong or what I should do? thank you very much for your time.(c/p didn''t work it goes on the clipboard to slow because it''s a PDF I think)
I am use win32console c++ for this studying in Visual Basic 2008.
Visual Studio不知道如何显示PDF文件.因此,它会尽最大努力(我认为)将其加载为PostScript文件(PDF是PostScript的一种).
您可以尝试此 [ ^ Social上的a>]线程,尽管它们都无法满足您的要求.
Visual Studio does not know how to display PDF files. So it does the best it can which is (I think) to load it as a PostScript File (PDF is a sort of PostScript).
You can try any of the solutions in this[^] thread on MSDN Social although none of them will do what you want.