How to transfer values from a table in Microsoft word into a Intranet webpage textbox - textbox

I'm relatively new to javascript. But is there a way to How to transfer values from a table in Microsoft word into a Intranet webpage Text box, preferably using something simple like notepad to code? Also, is it possible to make it such that the transfer goes on even after the webpage goes on to page 2 and page 3 etc?

Related

Send email as PDF in ruby on rails in Typo3

I have an web-application in RoR which calculates some energy values and investment money. I use ajax to send the data from the web-browser to the server. It is something like this: Browser-server-Browser-Server-Browser
This web-application is already integrated in typo3 and I want to implement a PDF button to send the results per email (in other words, a photo of the page with the results).
I have heard an option would be to generate some links in RoR to be used in typo3 (when clicking on it, it would open exactly the web-application with the results already calculated). But as a newbie, I do not really know which would be the best approach.
Any recommendation?
A screenshot of the page can be done client-side:
http://html2canvas.hertzen.com/
You could even have another page with the same results that you use only for the rendering of the result page what you use for making a clean screen-shot (you might not want to have the footer, menu and other elements on that page, only the results)
Once you have your screenshot, you can upload it to your server where you can use it to create a PDF of that image and then send it with any mail API you prefer to use.
info about TYPO3's mail api can be found here:
https://docs.typo3.org/typo3cms/CoreApiReference/ApiOverview/Mail/Index.html

Excel web query not recognizing tables on the page

Customers use web queries to grab data in the tables directly from our website and place them into excel where they can automatically work on it. while trying to grab data from our website, we noticed that table markers were not shown. excel is unable to recognize the tables on the web page.
Website was developed using RoR.
can someone help us with this issue?
You may want to consider using Power Query instead of regular web queries. With the "from Web" option you can get the DOM into Power Query and access any DOM element.

Displaying Google results in a frame

Some time in the last year, a tool that I use no longer displays Google search results in one of its frames. I suspect that Google started using JavaScript code to hide itself, if it is being displayed in a frame, which is understandable for most uses.
However, this is a tool that only I use, so I'm not misrepresenting to anyone. I use this tool to research data. One frame has a form where I enter data that I find online. The other frame has the Google results and the pages they link to. I can see both the data form that I'm working on and the changing search/results side-by-side in one window.
I tried going to an older browser version, but I think they are using JavaScript.
Now I have to right-mouse click "open in a new tab" and then click to the new tab, and then close it, a lot of extra overhead when I'm trying to process this repetitive research over and over.
Any ideas? Confirmations as to what has changed? I suppose I could retrieve the page in PHP, strip out the part that hides the page and then put the page source in the other frame. A bit of a challenge for me.

Printing Infopath form 2010(.xml) in Sharepoint 2010

My question is related to printing an Infopath 2010 form in Sharepoint 2010.I designed an Infopath 2010 form in Infopath Designer 2010 and published it to a form library in Sharepoint 2010.The end user fill the form and store it in .xml format in the document library.Now I would like to print the form filled by the end user?
Any Ideas or suggestion about the above scenario?Please consider both browser based forms and normal forms
Thanking you in advance.
For normal forms, you have to create a print view. It will create a Word document that can be printed from user's workstations. Here is a link how to design a view for printing:
http://office.microsoft.com/en-us/infopath-help/design-a-view-that-is-optimized-for-printing-HA010151438.aspx
Unfortunately Word print views are not supported for web-based forms. Usually the only option is to create another InfoPath view and design it for "print": all controls as labels or read only; all sections are visible, etc.
[Update]
#Surendra J: Ok. There are two things to address separately.
First of all user should be able to request "Print" operation right from SharePoint view (and I don't mean "Browser->File->Print"....) This can be implemented by using a custom ECB action. Your custom action will be associated with Forms library or even specific ContentType. It will allow SharePoint users to choose "Print Form" right from SharePoint view. These links should help:
http://www.slideshare.net/gvarosky/introduction-to-developing-custom-actions-within-sharepoint
http://www.csharpest.net/?p=95
Second issue is to make print view from XML. As you can understand InfoPath XML has to be transformed to HTML or image. Preferably it should be done by InfoPath forms library. There is no easy way to navigate to given InfoPath view without mixing rules and URL parameters. I recommend you to take a look at this article:
http://social.msdn.microsoft.com/Forums/en-US/sharepoint2010general/thread/156983db-5a62-498f-a3b5-96ad7f57d15f
Disclaimer: I personally like PDF forms product from http://PdfSharepoint.com. It does not have print issues as all forms are dynamic PDFs and works with Adobe Reader. I believe it is a good alternative to InfoPath if printing is necessary.

Quickly and accurately grabbing webpage titles

I'm looking to get the title of a webpage, a common feature of many IRC bots that I'm wanting to incorporate into a IRC client I'm writing for fun.
The method that I currently have working basically connects and sends a GET request for the entire webpage then seeks out the tags and reads inbetween them. For larger webpages this can be slower than I'd like. An additional problem I've noticed is webpages with dynamic titles (such as some phpbb forums) will not return the accurate title as it would show in a browser because I don't do any execution of javascript ect..
It seems one way to get an accurate title is to dump the html into a browser control (such as the IE COM control) and pull the title, but this is just going to make it even more time consuming.
Is there a simple method I am un aware of?
In a word, no, not really.
I guess rather than downloading the whole document you could stream the HTTP file into your application and just stop downloading when you reach </title> - that would save you waiting for the whole HTML document to download.
However that doesn't help the situation if you need to read the title after it's been changed by some client-side javascript. As you say, the only way I can think of doing that is by using a browser control.

Resources