Share Your Source Code or Article

Do you have source code, articles, tutorials, web links, and books to share? You can write your own content here. You can even have your own blog.

Submit now...

Database Programming Made Easy

This tutorial will teach you step by step on how to connect and manipulate database. If you'd like to suggest a tutorial please write a comment at the bottom of this article.

Read more...

Hire Us to Do Your Work

Do you want a customized system? Do you want to setup your own website to do business? Then we are here to help you in your programming needs.

Read more...

Search

Copy Paste from excel to Web browser text box
4 replies [Last post]
User offline. Last seen 1 year 8 weeks ago. Offline
Joined: 07/10/2009


Hi All,

Let me explain you clearly what i need first. i have a excel in which three columns are there Firt columns consists of First name, Second column consists of Last name and thrid columns consists of Email IDs of the persons. Now i have a Web browser which has these fields First name, last name and Email IDs text bobx along with a submit and reset button at the end. All i have to do is copy paste each data from excel and paste it in the respectively fields in the web browser and submit it when i submit i get a pop stating succesfully completed where again i have to give a enter. So i have to give a double enter after pasting the data into the web browser. i tried doing in marco's but could not find a solutions for it. Can anyone help me in doing this.

ashwin




Anonymous
Hi All, Let me explain you

Hi All,

Let me explain you clearly what i need first. i have a excel in which one column are there column consists of URL . That consist paste into a website than that website creat into the one URL. Than that URL do the copy and paste into the excel sheet. I have lot of URL's. It will do the manually take the lot of days any easy method for automatically do that work. Please help me.

Regards
Sri

Anonymous
Copy Paste from excel to Web browser text box

Ashwin,

Use the below javascript code for copyig excel clipboard data to webbrowser.
- First copy some data from excl in clipboard.
- onbuttonclick even of html page call below javascript.

function pasteGrid()
{
var chkTable = window.clipboardData.getData("Text");
if(chkTable != null)
{
alert(chkTable);
}

once you get alert, you can split data by using below coomand
var data = window.clipboardData.getData("Text").split("\n");

....

I hope it will help you.

- Santosh
mansukh_santosh@yahoo.com

Anonymous
Very Interesting..

I am looking at the code above and wondering what the 'data' variable has in it? Can I loop through it in two dimensions to populate a table? Would very much appreciate some help on this next step!

Thanks,
Rich

Anonymous
HI

I need one help in a form i am having the following fields

Name
Surname
Email
Address
Mobile no

IN the form i am having another button called upload

if i click upload it must open an excel sheet in the excel sheet having column names as name, surname, email, address, mobile no along with values
After clicking upload it must pull data from excel and load in the text box of the form..

Can any post your ideas regarding this???

Regards
Sabari

Post new comment

CAPTCHA
This question is for testing whether you are a human visitor and to prevent automated spam submissions.
Image CAPTCHA
Enter the characters shown in the image.

Step by Step Java Tutorial

In this tutorial you will learn how to program with Java. It has a rich of information to be educated well with Java.

Read more...

Do You Have Question?

Do you have any question related to computer programming? Visit our forum and post new topic on the category you like. Be gentle when asking a question.

Ask now...

Point of Sale

Point of Sale is very useful especially for supermarkets or restaurants. I have included a barcode scanner in this program. Please check it out.

Read more...