Posts Tagged Button
Is it possible to copy all text from a screen to the clipboard & send it in an email w/ the click of a button? – Fax Email
Posted by in Fax Email on May 30, 2011

By Kce001: Is it possible to copy all text from a screen to the clipboard & send it in an email w/ the click of a button?
I am needing to be able to fax or email information on a screen. My program pulls up information from a customer and has labels and a text box. I want to have all of the information that’s displayed on that window to be copied except one or two selections and by the click of a submit button, put that information into an email and have it ready to send. I know I could just make it where they could select all of the text and copy/paste, but I’m trying to make it more automated. I’m working in Visual Studio 2010 with Visual basic code. Any ideas?
Answer:
Answer by NevTheTech
Ctrl+PrtScn should put the entire window in the Clip board. Then paste it in to what ever you like. Bit limited that though, try using a screen capture program (most art programs have that function) which is far more flexible over what is actually captured.
If you want to do it pro grammatically then just access the Clipboard functions from the API – Not ideal, but without writing reams of code, that might be the simplest.
Answer by Gardner
Make a button to copy the data, in the click event put something like this:
Dim myPasteString as String = Nothing
myPasteString = String.Format(“Name {0}”, myNameTextbox.Text) & vbCrLf
myPasteString = String.Format(“Address: {0}”, myAddrTextobx.Text) & vbCrLf
My.Computer.ClipBoard.Clear
My.Computer.Clipboard.Settext(myPasteString)
Then you can pull up your email and just paste the data directly into your email body.
Give your answer to this question please!
How to active the “Merge to Fax” button in Microsoft Word 2003?
Posted by in Fax How-To on April 7, 2011

By Hooti: How to active the “Merge to Fax” button in Microsoft Word 2003?
I have a problem by my Microsoft Word 2003 program which its Merge to Fax button is always off. Even I installed windows fax program, still this option is off.
Did you have the same problem? Is the problem common or it’s only in my pc.I’m getting SP2 from Microsoft Office.Is there any hope that would solve the problem?!
Good Answer:
Answer by tekinstaller
some of the drivers for your office suite did not register, you will have to get a hold of microsoft tech support and they will explain the process of registering them and it will work great
Please leave your answer in the comments! Thanks.
