Loading
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...
Submit now...
Sponsor
Receive Free Updates
Today's popular content
- How to Connect to a Database and Add/Update/Delete Record (55)
- Hotel Reservation System in MS Access (47)
- Free Hotel Management System Manual (39)
- Automated Voting System (38)
- My VB Program (37)
- Visual Basic .NET 2008 Tutorial (36)
- Payroll System (33)
- Hotel Reservation System (31)
- Hotel Reservation System (VB.NET) (30)
- A Simple Add, Edit, Delete, and Search using VB and MSAccess (30)
- 1 of 204
- ››
Random Post
- 5 Tips & Tricks in ASP.NET (2,144)
- Invoking JavaScript function from WinForms (1,876)
- Database Application (6,194)
- Prime Number Solver Version 1.0 (4,228)
- Simple Member Information (2,344)
- Geographical Quiz 1.0 (1,506)
- Penalty System (4,172)
- SImple Library System Using VB.NET by Ico (4,714)
- SQL MID() Function (1,571)
- Windows Forms - CheckBox Control (11,564)
- 1 of 133
- ››
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