Search found 7799 matches: return

Return to advanced search

Re: New txbrowse

... columns) you end user wants to select the columns to display because you don't like the columns displayed, in the menu there is the possibility to return back i.e. to display xbrowse with the previous columns, obviously the state is saved. xbrowse's setcolumns() method has been changed and loaded ...
by Silvio.Falconi
Mon Apr 22, 2024 7:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New txbrowse
Replies: 6
Views: 389

Re: Servidor de mail propio y acuse de ENTREGA.

... ser que para los mismo al menos en las pruebas que he hecho. Creo que AI no ha dado con la respuesta correcta, aun así volveré a probar con "return-receipt-to". Ahora que lo pienso, la etiqueta que busco debe estar en la configuración del mensaje, pues no se recibe en las cabeceras del ...
by FiveWiDi
Mon Apr 22, 2024 5:16 am
 
Forum: Off Topic / Otros temas
Topic: Servidor de mail propio y acuse de ENTREGA.
Replies: 2
Views: 53

Re: Servidor de mail propio y acuse de ENTREGA.

... guide you through the process. The "tag" you're looking for is not "Generate-Delivery-Report." Instead, you need to use the Return-Receipt-To or Disposition-Notification-To headers. Here's how you can test it: Find an email client or service that allows you to add custom ...
by Antonio Linares
Mon Apr 22, 2024 4:58 am
 
Forum: Off Topic / Otros temas
Topic: Servidor de mail propio y acuse de ENTREGA.
Replies: 2
Views: 53

Re: Brush

... 0 BITMAP oImagem FILENAME cImagem ; SIZE 400, 600 OF ; oDlg PIXEL NO BORDER ADJUST ACTIVATE WINDOW oDlg CENTERED ; ON INIT SobreporImagem( oDlg ) Return NIL *------------------------------------------------------------------------------* Function SobreporImagem( oDlg ) Local oImagem Local cImagem ...
by oliveiros junior
Fri Apr 19, 2024 1:42 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Brush
Replies: 10
Views: 236

Error Fwh 24.02 con XBROWSE

... := AL_CENTER, o:oDataFont := aFont[1]} ) oBrw:CreateFromCode() oWnd:oClient := oBrw BrwBtnBar( oBrw ) WaitOff( @oWait ) ACTIVATE WINDOW oWnd Return //------------------------------------------------------------------------------ // Barra de opciones //------------------------------------------------------------------------------ ...
by CARLOS ATUNCAR
Mon Apr 08, 2024 6:31 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error Fwh 24.02 con XBROWSE
Replies: 0
Views: 97

Acuse d e entrega y acuse de lectura en un mail.

... oMsg:Fields:Item( "urn:schemas:mailheader:disposition-notification-to" ):Value = cFrom oMsg:Fields:Item( "urn:schemas:mailheader:return-receipt-to" ):Value = cFrom oMsg:Fields:Update() He encontrado varia documentación al respecto de CDOSYS pero no veo que parámetro debo ...
by FiveWiDi
Sat Apr 06, 2024 7:34 pm
 
Forum: Off Topic / Otros temas
Topic: Acuse d e entrega y acuse de lectura en un mail.
Replies: 2
Views: 1540

Re: Question about wfReadUrl()

... BitDefender. BitDefender blocks http://www.ma-consult.be, but does not block the other url's. With your suggestion using UrlExist(), a blocked URL returns into a .F., the other URL's, return into a .T. So in case http://www.ma-consult.be is blocked, the url http://www.juda.be is used. And that ...
by driessen
Sat Apr 06, 2024 8:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about wfReadUrl() - SOLVED
Replies: 20
Views: 2782

Re: Problem with valid email refresh btnbmp

PERHAPS ??

function validaEmail(cEmail)
LOCAL pCompiled := hb_regexComp("^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,4})$")

LOCAL cRet := .t.

IF HB_RegExMatch( pCompiled, alltrim(cEmail), .F. )


cRet := .f.
end
return cRet
by Silvio.Falconi
Wed Apr 03, 2024 10:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with valid email refresh btnbmp- RESOLVED
Replies: 25
Views: 2435

Re: Problem with valid email refresh btnbmp

perhaos validamail not run here return allways .f.
by Silvio.Falconi
Wed Apr 03, 2024 9:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with valid email refresh btnbmp- RESOLVED
Replies: 25
Views: 2435

Re: also error with btnbmp SHOWPOPUP

... ) ) Function Contextual_Menu( oBtn,oBrw,oDbf,cIniUser,cSection,oParent,oCont,lExport,lColConfig ) .... MENU oMenu POPUP .. ENDMENU return oMenu
by Silvio.Falconi
Mon Apr 01, 2024 10:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: also error with btnbmp SHOWPOPUP
Replies: 8
Views: 1708

Re: also error with btnbmp SHOWPOPUP

... Disp_Menu_Comuni(oParent,nRow,nCol,oDbf,oBrw,cSection,oCont) .... ENDMENU ACTIVATE POPUP oMenu OF oParent AT oBrw:nTop+nRow, oBrw:nLeft+nCol RETURN (NIL) and another on action Function MenuContextual(oControl,oBrw,oDbf,cIniUser,cSection,lExport,lColConfig,oParent,oCont ) .... ENDMENU return ...
by Silvio.Falconi
Sun Mar 31, 2024 9:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: also error with btnbmp SHOWPOPUP
Replies: 8
Views: 1708

Re: also error with btnbmp SHOWPOPUP

...  } ) If you use ::ShowPopUp, the function MenuContextual(...) should not return NIL, but should return a PopupMenu object. It looks like this function is returning NIL not a popup menu object. Please check the last line of ...
by nageswaragunupudi
Sun Mar 31, 2024 3:26 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: also error with btnbmp SHOWPOPUP
Replies: 8
Views: 1708

AYUDA Validacion LRC para datafono

... valor lo reemplazé por 2 y todo salió de maravillas. For Each c As Char In GetStringFromHex(s) checksum = checksum Xor Convert.ToByte(c) Nextini Return checksum.ToString("X2") End Function Private Function GetStringFromHex(ByVal s As String) As String Dim result As String = Nothing ...
by russimicro
Sat Mar 30, 2024 6:03 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: AYUDA Validacion LRC para datafono
Replies: 2
Views: 488

Re: Hide/show search system on a dialog - Resolved

... oBrw:oSortCbx:hide() oBrw:nTop:=2 oBrw:nHeight:= oBar:ntop-40 Endif for n=1 to Len(aBtn) aBtn[n]:ntop:= oBar:ntop-40 aBtn[n]:refresh() next return nil
by Silvio.Falconi
Mon Mar 25, 2024 11:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Hide/show search system on a dialog - Resolved
Replies: 6
Views: 1195

Re: Problema super raro

Mr. Rao:

Yes, I want to copy the records from a non-temporary table and pass them to a temporary table to modify them
and then return them to the non-temporary table

There are 5 records in the non-temporary table and only 2 are passed to the temporary table

Best regards
by Armando
Sun Mar 24, 2024 1:31 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema super raro (SOLUCIONADO)
Replies: 10
Views: 2123
Next

Return to advanced search