Search found 167 matches: plain

Return to advanced search

Re: Xbrowse generating dialogs !

Otto,

Yes I did !

But i'm not changing or looking into something else then plain FW. I have no need for a any new ways of using my personel programs, since there is no business in software at my point.
But it looks promissing for those who need it ))

Thanks
by Marc Venken
Thu Nov 18, 2021 3:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse generating dialogs !
Replies: 3
Views: 377

Re: Spell CHecker

... the .fpt files, be able to make them "look nicer" in RTF, and keep them stored in the .FPT file. Initially that file would be a mix of plain text and RTF. I was told it was possible, but never got it to save. Thanks for responding.
by TimStone
Mon Nov 15, 2021 11:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Spell CHecker
Replies: 15
Views: 1991

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: 380

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: 380

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: 380

Automated Outlook e-mail and sending plain text

... and it works quite well .. however I am having problems with some users that can not see the Body ( cBody ) of the message .. which I code as plain text ... Here is the code:          cBody    := "Dear Employee: "+alltrim( cEMployee )+";"+chr(10)        ...
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: 380

Re: patternlock

Thanks Otto

Do you use TWeb or plain HTML/JS? I am using HTML/JS

Where i put it:
Code: Select all  Expand view

<form action="save.prg?customer" method="post">
...
<button id="save" type="submit" class="btn btn-primary float-right">Save changes</button>
 
by acuellar
Mon Sep 20, 2021 7:30 pm
 
Forum: mod_harbour
Topic: patternlock
Replies: 11
Views: 1373

Re: patternlock

... or not to enter the side. Antonio posted yesterday some code: http://forums.fivetechsupport.com/viewtopic.php?f=46&t=40852 Do you use TWeb or plain HTML/JS? Best regards, Otto function mainTEMPLATE<!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><head>  ...
by Otto
Mon Sep 20, 2021 5:14 pm
 
Forum: mod_harbour
Topic: patternlock
Replies: 11
Views: 1373

Re: CP 852

Thanks Antonio, I know this text, but it doesn't help me. I will try to explain the problem. In plain Harbour, this program use CP 852 codepage: REQUEST HB_CODEPAGE_HR852function Main()   local cName := Chr(143) + Chr(134) + ...
by nbatocanin
Wed Aug 11, 2021 12:18 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: CP 852
Replies: 4
Views: 560

Re: Call HTML form in FWH application

... the htmlcode to a file and then call the htmlview with the updated htmlcode. Should work, but maybe there can be updated function that will show plain html data from a variable data. When cTemp = used, htmlview will also startup google and give a result of a google seek for the code (cTemp = ...
by Marc Venken
Sat May 22, 2021 9:21 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Call HTML form in FWH application
Replies: 7
Views: 1547

link in my own library

Dear Antonio,
Can you please advise me on how I can link in my library or prg-files?
Should we link in compiled files or plain prg files?
Best regards,
Otto
by Otto
Wed Apr 14, 2021 6:36 am
 
Forum: mod_harbour
Topic: link in my own library
Replies: 4
Views: 566

Hash-Table Vs Variables

... new to hash - tables. But it seems to be an improvement to my coding. Now I cloned/changed TApp from TWeb to use it without using TWeb - with plain html and JS. It seems to me that we should in future use HASH also in our CLASSes instead of single variables. Is that a good idea or are there ...
by Otto
Sat Nov 14, 2020 8:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Hash-Table Vs Variables
Replies: 3
Views: 416

oServer:setRequestHeader

Dear, good afternoon! I need an aid in the following situation: When sending the oServer:setRequestHeader("Content-Type", "text/plain; charset=UTF-8" ) command to the server, it does not recognize some accents as ã and õ. Is there a command to be given before sending? I thank ...
by oliveiros junior
Wed Jul 08, 2020 5:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: oServer:setRequestHeader
Replies: 0
Views: 252

Re: transparent on a say

now I resolved set color of say with CLR_BLUE, GetSysColor( 15 ) But I think is wrong

Not wrong. This is also one way. Better is COLOR CLR_BLUE, oDlg:nClrPane.
But this works only when the dialog has a plain background color.

Say ..with lTransparent := .t. should work.
by nageswaragunupudi
Sun Apr 12, 2020 1:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: transparent on a say
Replies: 7
Views: 986

Re: Export To Word

No, it's not possible in the current state.

You would either have to create a module to generate a Word file the way it is exported to Excel, or export it to plain text.
by MOISES
Fri Jan 31, 2020 6:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Export To Word
Replies: 11
Views: 1894
PreviousNext

Return to advanced search