Posts by Pedro Ramon • 113 points
4 posts
-
1
votes2
answers600
viewsA: How to store words from a text in an array
You can use the function split If you need to separate words, pass the desired separate as a parameter: var text = 'Lorem ipsum dolor sit amet, consectetur adipiscing elit'; var arrayDePalavras =…
javascriptanswered Pedro Ramon 113 -
1
votes1
answer338
viewsA: Change the . NET Frameworks application
Linq was introduced in version 3.5 of . Net! Try porting your application to this version of the framework, which is also compatible with Winxp.
-
4
votes1
answer587
viewsQ: How to communicate a local application with an open web page in the browser?
I have a commercial web application that runs basic restaurant operations. In summary, a waiter accesses the 'orders' page and requests a new 'product'. These products are classified by departments,…
-
5
votes2
answers4850
viewsQ: How to print a text (coupon) via javascript?
I have a commercial web application written in ASP.NET MVC4 with c#, where I need to print a direct sale closing coupon to a non-tax printer (Diebold). Is there any way to send, whether by JS, a…