






Copy Selected Text Within a Browser to a Clipboard
Use the following code to copy selected text within a Web browser to a clipboard in VB.NET 2.0: Dim docx As HtmlDocument = WebBrowser1.Document Dim readme As Object = Nothing’assume
Use the following code to copy selected text within a Web browser to a clipboard in VB.NET 2.0: Dim docx As HtmlDocument = WebBrowser1.Document Dim readme As Object = Nothing’assume
Ever wanted to bookmark a Web page so you can read it later? Here’s a quick way to do it, that works in both IE and Firefox: CTRL+D This does
ou may have noticed that synthesized voices are becoming more commonplace. Hundreds, if not thousands of electronic toys and gadgets speak to their owners in robotic voices. Whether it is
People using loop variables in compilers like VC++ 6.0 are acccustomed to using loop variables after the loop. For example, take a look at the following code: for (int i=0;
Use the following code to find the total number of tables in an MS Access database: select count(name) from msysobjects where type=1 and flags=0
The following code allows you to move a non-modal JDialog together with its parent JFrame and vice versa in a Swing application. //new MovingTogether(jFrame1, jDialog1); (“jFrame1” is a JFrame//and “jDialog1”