Albin Jose

Greenhorn
+ Follow
since Feb 11, 2008
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Albin Jose

Hi,
I have a read only pdf, i want to make it read-write,how do i do it?what ever language and technology is ok
16 years ago
I have a read-only PDF forms that needs to be converted in to read-write mode of PDF forms so that a user can fill in his details and take a print-out of the form.
16 years ago
Let me know , if its possible thro java, if not let me know the other mechanisms as such
16 years ago
I have an non editable pdf, i need to change certain data in the pdf , how to make it editable.
Thanks in advance
16 years ago
I am using the following methods , they work for IE but not for mozilla,

1.<body ondragstart="return false" onselectstart="return false">


2.
function preventCopyPaste() {
var key = String.fromCharCode(event.keyCode).toLowerCase();
if ((event.ctrlKey && (key == "c" || key == "v")) ||
(event.shiftKey && event.keyCode==45)) {
event.returnValue = false;
}
}
function preventRightClick(){
var rightClick=false;
if(event.which) rightClick=(event.which==3);
if(event.button) rightClick=(event.button==2);
if(rightClick) alert("Right click restricted");
}

But this doesn work for mozilla, any other option,

Thanks ,
Albin.
Hi,
I have a form in which i have two text boxes one for entering email and the other for verify email (to make sure the user entered the correct email id we are asking to enter the same email id twice),I need to restrict copy feature in both the fields (that is the user should not be able to copy text data from the email and confirm email text boxes) , are there any properties for text box using which i can do this or should i try using java script,I tried using some key press functions but it din work , can you suggest me some method in which this can be achieved
Thanks ,
But i don use jsp, i m using the same java file(servlet) to render my html page,i use place holders for displaying back to the user, but i need to retain the values to be posted back.
17 years ago
wanted to add one more, are there any other methods other than setting it in session
17 years ago
Hi,
I have a html form where in i get values from the user, i m sending it to a servlet for validating the values entered by the user,The servlet in turn calls a EJB which interacts with the database via a procedure calls,Now my problem is if the database procedure throws some exception , it is rethrown to the servlet via the EJB and the servelt redirects it to the same html page(where the user had entered earlier).Now i have to retain all the values previously entered by the User(i Know i have to keep it in session )but let me know the better methods of where to put them in session like which place these variables have to be set
17 years ago