Missing your remote desktop connection under Accessories in Windows?
1. Go to "C:\Windows\System32" folder and find the "mstsc.exe".
b. Create a shortcut out of it.
c. Move it to "C:\Documents and Settings\All Users\Start
Menu\Programs\Accessories\Communications" folder.
d. The system may ask to make this short cut on the desktop. Click yes, then simply
cut the shortcut from the desktop and paste in the Communications folder.
e. Rename the shortcut "Remote Desktop Connection".
Thursday, May 12, 2016
Monday, May 02, 2016
copy a text to clipboard in Java
Easily done via Java Toolkit
StringSelection selection = new StringSelection(theString);
Clipboard clipboard = Toolkit.getDefaultToolkit().getSystemClipboard();
clipboard.setContents(selection, selection);
StringSelection selection = new StringSelection(theString);
Clipboard clipboard = Toolkit.getDefaultToolkit().getSystemClipboard();
clipboard.setContents(selection, selection);
commenting a line in Netbeans
commenting a line in Netbeans ? Try this
Ctrl + Shift + C
Source : https://netbeans.org/project_downloads/usersguide/shortcuts-80.pdf
Ctrl + Shift + C
Source : https://netbeans.org/project_downloads/usersguide/shortcuts-80.pdf
Subscribe to:
Posts (Atom)