|
| 1 | +# ✔ VIRTUAL COPY PASTE |
| 2 | +- ### A Virtual Copy Paste is an application created in python with tkinter gui. |
| 3 | +- ### In this application user will be given two text area one for entering the text and other for pasting the entered text after copying it. |
| 4 | +- ### This process of copying and pasting of text can be done using COPY and PASTE button. |
| 5 | +- ### It also allows us to see the copied text using the SEE button. |
| 6 | +- ### It also give us an error message like "You haven't copied anything!", when we try to SEE or PASTE without copying the text. |
| 7 | + |
| 8 | + |
| 9 | +**** |
| 10 | + |
| 11 | +# REQUIREMENTS : |
| 12 | +- ### python 3 |
| 13 | +- ### tkinter module |
| 14 | +- ### from tkinter messagebox module |
| 15 | + |
| 16 | +**** |
| 17 | + |
| 18 | +# How this Script works : |
| 19 | +- ### User just need to download the file and run the virtual_copy_paste.py on their local system. |
| 20 | +- ### Now on the main window of the application, there will be a START button, clicking on which the workspace of the application opens. |
| 21 | +- ### In this window of workspace there are two textarea given to us, one for entering the text and other for pasting the copied text from firat text area. |
| 22 | +- ### There is a COPY button, clicking on which we can copy the entered text. |
| 23 | +- ### There is a SEE button clicking on which a message box will open showing the copied text. |
| 24 | +- ### There is also a PASTE button, clicking on which user can paste the copied text to another text area. |
| 25 | +- ### It also give us an error message like "You haven't copied anything!", when we try to SEE or PASTE without copying the text. |
| 26 | +- ### Also there is an exit button, clicking on which exit dialog box appears asking for the permission of the user for closing the window. |
| 27 | + |
| 28 | +# Purpose : |
| 29 | +- ### This scripts helps us to easily copy and paste text from one textarea to another textarea using COPY and PASTE button respectively, instead of using CTRL+C and CTRL+V from keyboard. |
| 30 | + |
| 31 | +# Compilation Steps : |
| 32 | +- ### Install tkinter, pandas |
| 33 | +- ### After that download the code file, and run virtual_copy_paste.py on local system. |
| 34 | +- ### Then the script will start running and user can explore it by copying and pasting the text. |
| 35 | + |
| 36 | +**** |
| 37 | + |
| 38 | +# SCREENSHOTS : |
| 39 | + |
| 40 | +**** |
| 41 | + |
| 42 | +<p align="center"> |
| 43 | + <img width = 800 src="Images/1.jpg" /><br> |
| 44 | + <img width = 800 src="Images/2.jpg" /><br> |
| 45 | + <img width = 800 src="Images/3.jpg" /><br> |
| 46 | + <img width = 800 src="Images/4.jpg" /><br> |
| 47 | + <img width = 800 src="Images/5.jpg" /><br> |
| 48 | + <img width = 800 src="Images/6.jpg" /><br> |
| 49 | + <img width = 800 src="Images/7.jpg" /><br> |
| 50 | +</p> |
| 51 | + |
| 52 | +**** |
| 53 | + |
0 commit comments