Search found 1504 matches: password

Return to advanced search

Re: How to make password GET viewable on demand?

Desde recurso, así también funciona sin indicar que es ES_PASSWORD DEFINE DIALOG oDlg1 RESOURCE "CHANGEPASS" OF oWnd1   oDlg1:lhelpIcon := .f.   REDEFINE GET oGet[1] VAR cNombre   OF oDlg1 ID 109   REDEFINE GET oGet[2] VAR cUser        OF oDlg1 ID 110    REDEFINE GET oGet&...
by richard-service
Wed May 15, 2024 1:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to make password GET viewable on demand?
Replies: 8
Views: 227

Re: How to make password GET viewable on demand?

How about support Resource Get? I guess you must be using the style ES_PASSWORD in the resource. Above toggle should work with resource also. Please try and provide your feedback. Dear Mr.Rao Yes, You're right. I using the style ES_PASSWORD in the resource. I add your code and working fine. REDEFIN...
by richard-service
Wed May 15, 2024 1:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to make password GET viewable on demand?
Replies: 8
Views: 227

Re: Send Emails from Fivewin application

sorry, I meant TLS It should work, but I never checked it myself. Do you have any sample (with userid and password) that you can share (at least with me), so I can test it here? In his day I already hit him too many heads to prepare a test now. I came out of that very fed up ...
by paquitohm
Tue May 14, 2024 5:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Send Emails from Fivewin application
Replies: 44
Views: 1163

Re: Send Emails from Fivewin application

paquitohm wrote:sorry, I meant TLS


It should work, but I never checked it myself. Do you have any sample (with userid and password) that you can share (at least with me), so I can test it here?
by Enrico Maria Giordano
Tue May 14, 2024 4:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Send Emails from Fivewin application
Replies: 44
Views: 1163

Re: How to make password GET viewable on demand?

Desde recurso, así también funciona sin indicar que es ES_PASSWORD DEFINE DIALOG oDlg1 RESOURCE "CHANGEPASS" OF oWnd1   oDlg1:lhelpIcon := .f.   REDEFINE GET oGet[1] VAR cNombre   OF oDlg1 ID 109   REDEFINE GET oGet[2] VAR cUser        OF oDlg1 ID 110    REDEFINE GET oGet&#...
by cmsoft
Tue May 14, 2024 2:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to make password GET viewable on demand?
Replies: 8
Views: 227

Re: How to make password GET viewable on demand?

DLG_SENHA_PASSWORD DIALOG 239, 157, 238, 148STYLE DS_ABSALIGN | DS_MODALFRAME | 0x4L | WS_POPUP | WS_VISIBLE | WS_CAPTIONCAPTION "Password"FONT 8, "MS Sans Serif"{ EDITTEXT 20, 90, 60, 50, 14, ES_CENTER | ES_MULTILINE | ES_PASSWORD | WS_BORDER | WS_GROUP | WS_TABSTOP PUSHBUTTON ...
by karinha
Tue May 14, 2024 1:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to make password GET viewable on demand?
Replies: 8
Views: 227

Re: How to make password GET viewable on demand?

How about support Resource Get?


I guess you must be using the style ES_PASSWORD in the resource.
Above toggle should work with resource also.
Please try and provide your feedback.
by nageswaragunupudi
Tue May 14, 2024 12:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to make password GET viewable on demand?
Replies: 8
Views: 227

Re: send an email using the Outlook object

... try { $mail->isSMTP(); $mail->Host = 'smtp.gmail.com'; $mail->SMTPAuth = true; $mail->Username = 'RECEIVER@gmail.com'; $mail->Password = 'SECRET'; $mail->SMTPSecure = "ssl"; $mail->Port = 465; //Recipients //Recipients $mail->setFrom($email, $name); $mail->addAddress("RECEIVER@gmail.com", ...
by Silvio.Falconi
Tue May 14, 2024 7:50 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: send an email using the Outlook object
Replies: 5
Views: 184

Re: How to make password GET viewable on demand?

oGet:lShowPassword := .T. / .F. to display or hide password oGet:lShowPassword := !oGet:lShowPassword to toggle display of password Here is a sample #include "fivewin.ch"function Main()   local oDlg, oGet   local cPw   := Space( ...
by richard-service
Tue May 14, 2024 7:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to make password GET viewable on demand?
Replies: 8
Views: 227

Re: How to make password GET viewable on demand?

Thank you very much Rao!
by hua
Mon May 13, 2024 8:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to make password GET viewable on demand?
Replies: 8
Views: 227

Re: How to make password GET viewable on demand?

oGet:lShowPassword := .T. / .F. to display or hide password oGet:lShowPassword := !oGet:lShowPassword to toggle display of password Here is a sample #include "fivewin.ch"function Main()   local oDlg, oGet   local ...
by nageswaragunupudi
Mon May 13, 2024 4:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to make password GET viewable on demand?
Replies: 8
Views: 227

How to make password GET viewable on demand?

Is it possible to make a password GET field viewable if user click to view password?
Something similar to what we see in most web forms

TIA
by hua
Mon May 13, 2024 4:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to make password GET viewable on demand?
Replies: 8
Views: 227

Re: New FWH 24.02

Dear Michel,

Are you using Google Chrome ?

I just tested your login and password from here and it worked fine. It just requested to identify twice

Please try it again, thanks
by Antonio Linares
Sat Mar 09, 2024 1:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New FWH 24.04
Replies: 37
Views: 7682

Re: How to include hbCurl?

Marc, you can redirect to a file: clogrooms and then read with memoread. Regards, Otto DCOM := 'cmd /c "' +; cCurlPath + 'curl.exe -u username:password -i -k -F "fileToUpload=@' +; aSrc[I] + '" -F "uploadDirectory=' + cuploadDirectory + '" ' +; cEndpointRooms + ' > ' ...
by Otto
Fri Mar 08, 2024 10:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to include hbCurl?
Replies: 13
Views: 3096

Re: Fwh 23.10 TGet another problem (UNSOLVED)

... like to remind you that I am using Visual Studio 2022 32 bit and Harbour. I also use Windows manifest. I can give any remote application's id and password if you want. You can compile it in my computer.
by Horizon
Tue Feb 20, 2024 6:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fwh 23.10 TGet another problem (UNSOLVED)
Replies: 132
Views: 55922
Next

Return to advanced search