Program : opens a lecture, at the end of the lecture offers to pass the test. After the test displays the result.
The project is written in windows forms. Lecture in pdf format. I open the file using Adobe PDF Reader:
string filePath = "C:\\Users\\q\\1.pdf"; this.axAcroPDF1.LoadFile(filePath); this.axAcroPDF1.src = filePath; this.axAcroPDF1.setShowToolbar(false); this.axAcroPDF1.setView("FitH"); this.axAcroPDF1.setLayoutMode("SinglePage"); this.axAcroPDF1.Show(); Problem : it is necessary that the pdf-file is in the project (inside .exe ), so that it can be read only in the program.