Is that possible to put annotation (like drawing line)onto the *.ppt file that is viewed onto the web browser control ??
Printable View
Is that possible to put annotation (like drawing line)onto the *.ppt file that is viewed onto the web browser control ??
???
Could you rephrase that one please ?
To add a line to a web page, you use the <hr> tag ...
As we know there is a web brrowser control in Visual Basic.
Below is the code that i m using to design a user control:
control: textbox, command button,web browser control
Private Sub Command1_Click()
WebBrowser1.Navigate TextURL.Text
' TextURL.Text = C:\WhiteBoard project\IApresentation.ppt
'This is power point presentation file , *.ppt
End sub
The problem now that i m having is: how to put annotation like pen drawing on the *.ppt presentation on the webbrowser.
you could get the hwnd from the webbrowser and then
use API graphics functions for windows to draw lines.
(see previous posts of me on how to get the hwnd of the webbrowser control)