Search found 90 matches: automated

Return to advanced search

Re: Does anyone have an Envelope Printing module ?

... not really so concerned with automating envelopes .. He tells me he just cuts and pastes the address into Word and then prints his envelope and an automated envelope routine would be nice to have but not a requirement .. I plan on expermenting with creating something that prints on plain paper ...
by Rick Lipkin
Mon Mar 04, 2024 2:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Does anyone have an Envelope Printing module ?
Replies: 10
Views: 550

Interesting discussion with ChtGPT

... A clear, easily understandable syntax can help people get started and reduce the learning curve. AI Integration: With the advent of AI and automated code creation, some of the more complex aspects of programming might indeed be simplified or even automated. This could reduce the need for ...
by Otto
Mon Nov 06, 2023 4:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Interesting discussion with ChtGPT
Replies: 15
Views: 1241

Re: ChromeDriver - WebDriver for Chrome

... and password via our Fivewin, then search for specific data, fetch the data from the HTML table to Excel etc all these processes can be done in an automated manner. Has anybody here already done this using SeleniumBasic ? Here is the link to download the tool https://github.com/florentbr/SeleniumBasic/releases/tag/v2.0.9.0 ...
by anserkk
Thu Jan 19, 2023 5:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ChromeDriver - WebDriver for Chrome
Replies: 9
Views: 1099

Re: SMS Text messaging - FOLLOW UP

... them here. It appears the real push today is for OUTGOING texts and emails, and most services are not focused on replies unless you are writing automated systems. I hope others will look into, and share, some of their practices with good email and text usage for businesses, and how they apply ...
by TimStone
Mon Nov 07, 2022 8:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SMS Text messaging
Replies: 12
Views: 1697

Re: How to Curl for text messaging

... with harbour and for the http server I was able to have it work with pure mod_harbor under Apache. With this combination you can setup a full automated text and reply responses using Twilio. My implementation sends medical appointment reminder texts to patients cell numbers. The patient can ...
by NWKL
Sat Aug 13, 2022 11:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to Curl for text messaging
Replies: 17
Views: 2242

Re: Automated Outlook e-mail and sending plain text

Rick,

not sure if this is what you mean
Code: Select all  Expand view
local cHTML

TEXT INTO cHTML
   <html>
   <head>
   </head>
   <body>
   Your text goes here
   </body>
   </html>
ENDTEXT

oMailItem:HtmlBody = cHTML
 
by Antonio Linares
Wed Oct 20, 2021 10:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Automated Outlook e-mail and sending plain text
Replies: 3
Views: 377

Re: Automated Outlook e-mail and sending plain text

Antonio

Thank you .. would you mind giving me a quick example of the plain text conversion ??

Rick Lipkin
by Rick Lipkin
Tue Oct 19, 2021 7:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Automated Outlook e-mail and sending plain text
Replies: 3
Views: 377

Re: Automated Outlook e-mail and sending plain text

Dear Rick,

oMailItem:HtmlBody = cHTML

Use "<br>" instead of Chr( 10 )

and remember to use the typical HTML structure:

<html>
<head>
</head>
<body>
Your text goes here
</body>
</html>

You can use tables, colors, etc.
by Antonio Linares
Tue Oct 19, 2021 6:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Automated Outlook e-mail and sending plain text
Replies: 3
Views: 377

Automated Outlook e-mail and sending plain text

To All I have automated a WorkGroup application that generates an Outlook 365 ( client ) e-mail ... the code is simple enough and it works quite well .. however I am having problems with some users that can not see the Body ( cBody ...
by Rick Lipkin
Tue Oct 19, 2021 6:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Automated Outlook e-mail and sending plain text
Replies: 3
Views: 377

Google Unveils Tool to Better Secure GitHub Repos

Good morning !!!

Google has launched a GitHub app that provides automated continuous enforcement of security best practices for GitHub projects.

https://devops.com/google-unveils-tool-to-better-secure-github-repos/

Best regards,
by Baxajaun
Fri Aug 13, 2021 7:32 am
 
Forum: Utilities / Utilidades
Topic: Google Unveils Tool to Better Secure GitHub Repos
Replies: 0
Views: 364

Re: ApplyParams Tdatabase

... is occupied on the day 29/07/2021 so I didn't understand your unhealthy idea of adding a day without doing the proper research >This could be automated. Just build a routine that looks for all free rooms for the customer's desired date range. > Collect them all and present in a browse of ...
by Silvio.Falconi
Thu Jul 15, 2021 9:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ApplyParams Tdatabase
Replies: 8
Views: 1263

Re: ApplyParams Tdatabase

... for the client when I change the position I mean the type of the item, the number and the date range for the reservation. This could be automated. Just build a routine that looks for all free rooms for the customer's desired date range. Collect them all and present in a browse of available ...
by James Bott
Thu Jul 15, 2021 5:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ApplyParams Tdatabase
Replies: 8
Views: 1263

Re: Documentation for variables - what form should it be?

... a program could easily extract. In other words, the purpose of the documentation isn't just readibility for human beings, but also a reference for automated processes that might analyze software code in the future. So there would have to be a consistent structure that lists the types of elements ...
by FWExplorer
Tue Mar 02, 2021 11:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Documentation for variables - what form should it be?
Replies: 9
Views: 929

Re: How to Curl for text messaging

Maurizio; I have not used it for whatsApp but the only thing that changes is the url. Same for voice or automated Chat. With my sample all you would have to change is the url to consume any of their other services via Curl. They have samples showing how to use their services ...
by reinaldocrespo
Wed Feb 24, 2021 12:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to Curl for text messaging
Replies: 17
Views: 2242

Re: How to Curl for text messaging

... with harbour and for the http server I was able to have it work with pure mod_harbor under Apache. With this combination you can setup a full automated text and reply responses using Twilio. My implementation sends medical appointment reminder texts to patients cell numbers. The patient can ...
by reinaldocrespo
Tue Feb 23, 2021 8:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to Curl for text messaging
Replies: 17
Views: 2242
Next

Return to advanced search

cron