Hi,
I'm working on an applications which reads a pdf document. As we all know we have hand tool in most of the pdf reader, which is used to scroll the document. My issue is when I use the hand tool to scroll the mouse, the speed of the movement of the mouse and the speed of the scrolling of the document is not synchronized. Not matter how fast or slow I move the mouse, speed of scrolling of the document remains same.
I need help in developing the logic for this.
Thank you,
Answers (1)
0
Create command:
OracleCommand command=new OracleCommand();
command.Connection=conn;
command.CommandType=CommandType.StoredProcedure;
command.CommandText=packageName+"."+procedureName;
Then:
then add parameters for this command
command.parameters.add(new oracleparameter.....)
... ..
After that:
Set values to the parameters...
And :
execute command.