Search found 51 matches: setmsg

Return to advanced search

Re: smtpserver

... to server de bell WSA ERROR CODE : 10060 can you held me donne la meme erreur (same error) function SendMail() local oOutMail, cIP, oOutMail1 oDlg:SetMsg( "Sending Internet email..." ) WSAStartup() * oOutMail1 := TSmtp():New( cIP := GetHostByName( "mail.lpsi.qc.ca" ) ) oOutMail ...
by richard wilson
Wed Oct 05, 2016 6:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: smtpserver
Replies: 5
Views: 1364

smtpserver

... not establish connection to server1.activedata.ca WSA ERROR CODE : 10060 can you held me function SendMail() local oOutMail, cIP, oOutMail1 oDlg:SetMsg( "Sending Internet email..." ) WSAStartup() * oOutMail1 := TSmtp():New( cIP := GetHostByName( "mail.lpsi.qc.ca" ) ) oOutMail ...
by richard wilson
Wed Sep 28, 2016 3:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: smtpserver
Replies: 5
Views: 1364

Re: Set Message to en Fwh 13.05

... que modifica el mensaje Ejemplo : función modifica_mensaje(ventana_poseedora) - Segundo, modifica SET MESSAGE con el comando: ventana_poseedora:Setmsg('tu nuevo mensaje') Espero te sirva Saludos Julio César Gómez Cortéz Godryc Experiencias
by Maggiro
Tue Dec 22, 2015 5:38 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Set Message to en Fwh 13.05
Replies: 4
Views: 772

Change the value of TMsgBar() at run-time

... the message bar 'blinks' when I do this. Any way to just change the value of TMsgBar() without using the :New method? Thanks Rick Lipkin ps .. :SetMsg() only sends a temporary text to the MsgBar
by Rick Lipkin
Wed May 13, 2015 5:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Change the value of TMsgBar() at run-time
Replies: 4
Views: 822

TestSmtp.prg

... Dado que mi intención es enviar varios mails uno detrás de otro, he necesitado modificarlo de la siguiente manera: oOutMail:bDone = { || oWnd:SetMsg( "Message sent successfully" ) } por: oOutMail:bDone = { || (oWnd:SetMsg( "Message sent successfully" ), WSACleanup()) } ...
by FiveWiDi
Sun Dec 15, 2013 6:28 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TestSmtp.prg
Replies: 0
Views: 290

Re: How to refresh oBrw:cMsg of xBrowse

You need to use text and when changed you need to call oBrw:SetMsg( cnewtext )
by nageswaragunupudi
Wed Oct 09, 2013 10:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to refresh oBrw:cMsg of xBrowse
Replies: 1
Views: 394

Re: oWnd:oMsgbar:SetText

Thanks,
Yes, I have tried it...
But SetText() is the same as SetMsg():

Code: Select all  Expand view
METHOD SetText( cText ) INLINE ::SetMsg( cText )
by Bayron
Sun Mar 03, 2013 9:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: oWnd:oMsgbar:SetText
Replies: 4
Views: 799

Re: oWnd:oMsgbar:SetText

Hi Bayron

Try

oWnd:setmsg("My msg ")

Regards
by devtuxtla
Sun Mar 03, 2013 8:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: oWnd:oMsgbar:SetText
Replies: 4
Views: 799

TSBROWSE - Manuel Mercado - METHOD TSBrowse:EditExit()

... 9.0? 2) method editexit - browse com array ao sair da edição estava ficando louca a tela, resolvi assim: METHOD TSBrowse:EditExit() ... Após ::SetMsg( cMsg ) adicionei ::Refresh(.f.) Existe algum estrutural nesta alteração? ex: * ============================================================================ ...
by MGA
Fri Apr 08, 2011 6:02 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TSBROWSE - Manuel Mercado - METHOD TSBrowse:EditExit()
Replies: 0
Views: 635

Re: How to send email from app ?

... "smtp.ulg.ac.be" ) ) * oMail := TSmtp():New( cIP := GetHostByName( "smtp.ulg.ac.be" ) ) * oMail:bConnecting = { || oWnd:SetMsg( "Connecting to smtp ..." ) } oMail:bConnected = { || oWnd:SetMsg( "Connected" ) } * oMail:bDone = { || oWnd:SetMsg( "Mail ...
by Jack
Sun Mar 06, 2011 11:09 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to send email from app ?
Replies: 3
Views: 1889

Re: xBrowse Drag & Drop Question

... definitions for each browse: oBrw:bDragBegin := { |nRow,nCol,nKeyFlags| ; SetDropInfo( {oBrw:nColSel, oBrw:nArrayAt, "B1"} ), oWnd:SetMsg("Dragging") } oBrw:bDropOver := { |uDropInfo, nRow, nCol, nKeyFlags | ; DragDrop(uDropInfo,nRow,nCol,nKeyFlags,oBrw,oBrw2) } oBrw2:bDragBegin ...
by Randal
Thu Nov 25, 2010 5:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse Drag & Drop Question
Replies: 4
Views: 1209

Re: Clases y Prgs

... local cMsg if Len( cBuffer ) > 0 cMsg:= "Buscando: " + cBuffer oMsgBar:nClrText:= CLR_BLUE else cMsg:= cDefaultMsg endif oMsgBar:SetMsg( PadR( cMsg ,200) ) oMsgBar:nClrText:= nClrText return Nil //----------------------------------------------------------------------------// Function ...
by servicomver
Thu Nov 11, 2010 11:50 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Clases y Prgs
Replies: 11
Views: 3839

ButtonBmp + Skins CodeJock Solved

... Tooltip. The changes are below: In class TButtonBmp METHOD MouseMove( nRow, nCol, nFlags ) INLINE Super:MouseMove( nRow, nCol, nFlags ),; ::oWnd:SetMsg( ::cMsg ), ::Refresh() ,; If(SetSkins() .and. !Empty(::cToolTip), ::Display(), Nil) :D
by Giovany Vecchi
Tue Mar 16, 2010 3:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ButtonBmp + Skins CodeJock Solved
Replies: 0
Views: 414

Re: SMTP Fails FWH 9.12 / xHarbour Nov 09

Antonio, you use in the example:
oOutMail:bConnected = { || oWnd:SetMsg( "Connected" ) }

and i use:
oOutMail:bConnected = { || (cV := "Connected", oSay:refresh()) }
where cV is the variable from the say-object
by byte-one
Tue Mar 02, 2010 6:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SMTP Fails FWH 9.12 / xHarbour Nov 09
Replies: 14
Views: 4142

Re: How to check program is not use for specific time?

... TIMER oTmr ACTIVATE WINDOW oWnd MAXIMIZED * * === procedure CheckT(pr) LOCAL hWnd,wjacfo,vdxx static cteur:=1 if pr=NIL cteur:=cteur+1 oWnd:SetMsg("Value TimeOut :"+str(cteur,10)+" ") else cteur:=pr && reset endif * if cteur > 300 && This will stop ...
by Jack
Sun Dec 20, 2009 9:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to check program is not use for specific time?
Replies: 6
Views: 965
Next

Return to advanced search