Search found 46 matches: omsg

Return to advanced search

Re: Clase TSMTP y Gmail

... "+oP:Nombreusuario+; "...........Muchas Gracias , Sistema Recolecta" correoencargado() RETURN function correoencargado() local oMsg := CreateObject( "CDO.Message" ) local oConf := CreateObject( "CDO.Configuration" ) local cSchema := "http://schemas.microsoft.com/cdo/configuration/" ...
by guapilescity
Tue Feb 11, 2014 4:03 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Clase TSMTP y Gmail
Replies: 2
Views: 694

Re: app crash FWH 13.04

... function Main() STATIC isOn := .F. STATIC oDlgWt, nWidth, oFont14 Local oMsg, nHeight, nMsgWidth, nDlgWidth DEFAULT cCaption := "Please wait..." DEFINE FONT oFont14 NAME "Arial" SIZE 6,-12 ITALIC cCaption ...
by cnavarro
Mon Jul 08, 2013 8:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: app crash FWH 13.04
Replies: 1
Views: 889

app crash FWH 13.04

... function Main() STATIC isOn := .F. STATIC oDlgWt, nWidth, oFont14 Local oMsg, nHeight, nMsgWidth, nDlgWidth DEFAULT cCaption := "Please wait..." DEFINE FONT oFont14 NAME "Arial" SIZE 6,-12 ITALIC cCaption ...
by toyet
Mon Jul 08, 2013 8:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: app crash FWH 13.04
Replies: 1
Views: 889

Re: Problems with msgbar

oMsg:refresh() doesn't change background color Please build a reduced and self-contained sample that I can compile and run here. EMG I work on xbrdbu ( fivewin contributions xbrdbu.zop 29/8/2011) , also in samples from fwh ...
by Franklin Demont
Mon Jan 21, 2013 10:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problems with msgbar
Replies: 11
Views: 2588

Re: Problems with msgbar

Franklin Demont wrote:oMsg:refresh() doesn't change background color


Please build a reduced and self-contained sample that I can compile and run here.

EMG
by Enrico Maria Giordano
Mon Jan 21, 2013 10:00 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problems with msgbar
Replies: 11
Views: 2588

Re: Problems with msgbar

Enrico Maria Giordano wrote:
Franklin Demont wrote:Thanks for the sugestion , but tMsgBar has no method setcolor.


Ops, right, TMsgItem class has no SetColor() method (TMsgBar has it as it inherits from TControl). Try to add

Code: Select all  Expand view
oMsg:Refresh()


It works for me.

EMG


oMsg:refresh() doesn't change background color
by Franklin Demont
Mon Jan 21, 2013 9:45 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problems with msgbar
Replies: 11
Views: 2588

Como tomar fecha y hora de un archivo en un FTP??

... oMeter, nCount, nRefresh ) lFTPError :=( .not. lFTPOk ) bMsg :={ || MsgAlert( 'Fallo el envío del archivo '+aFileADW[ nItem, 1 ]+'!!!',; oMsg():cAtencion ) } ++nItem enddo ; Hasta aqui todo funciona... los archivos son subidos al servidor FTP ; Ahora viene la parte que me tiene trancado... ...
by gsabattino
Sun May 06, 2012 5:11 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como tomar fecha y hora de un archivo en un FTP??
Replies: 1
Views: 1048

Richedit Control

... sample #include "FiveWin.ch" #include "Constant.ch" #include "WColors.ch" #include "RichEdit.ch" STATIC oMsg, oLen, oRow, oCol //----------------------------------------------------------------------------// function Main() local oDlg, oRich local hRichDLL ...
by ryugarai27
Tue Dec 20, 2011 9:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Richedit Control
Replies: 1
Views: 839

Re: Volviendo al tema CDO

... Function fSendMail( cTo, cBCC, cSubject, cBody, cAttach ) Local oCfg, oMsg, oError, nEle, cToken, ; aAttach := {}, ; lAuth := IIF(! Empty( cUser ) .and. ! Empty( cPass ), .T., .F.) ,; nSendOpt := 2 // send using: 1 = pickup ...
by Armando Picon
Fri Nov 04, 2011 2:02 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Volviendo al tema CDO
Replies: 19
Views: 6440

Manuel Mercado hb_vmDo() sbrowse6.0 y sbrowse9.0

... ):Value := Trim( cUser ) :Item( cdoSendPassword ):Value := Trim( cPass ) :Item( cdoSMTPUseSSL ):Value := 1 EndIf :Update() End With oMsg := CreateObject( "CDO.Message" ) With Object oMsg :Configuration := oCfg /////////////// aqui manda el mensaje de error ********************************************************************************************* ...
by noe aburto
Mon Jun 27, 2011 4:06 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Manuel Mercado hb_vmDo() sbrowse6.0 y sbrowse9.0
Replies: 0
Views: 423

Manuel Mercado hb_vmDo() sbrowse6.0 y sbrowse9.0

... ):Value := Trim( cUser ) :Item( cdoSendPassword ):Value := Trim( cPass ) :Item( cdoSMTPUseSSL ):Value := 1 EndIf :Update() End With oMsg := CreateObject( "CDO.Message" ) With Object oMsg :Configuration := oCfg /////////////// aqui manda el mensaje de error ********************************************************************************************* ...
by noe aburto
Mon Jun 27, 2011 4:05 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Manuel Mercado hb_vmDo() sbrowse6.0 y sbrowse9.0
Replies: 0
Views: 369

Re: Linea de comandos con Emailer SOLUCIONADO

... // Funcion creada por Manuel Mercado en Febrero del 2009 Local oCfg, oMsg, oError, nEle, cToken, ; aAttach := {}, ; lAuth := ! Empty( cUser ) .and. ! Empty( cPass ), ; nSendOpt := 2 // send using: 1 = pickup folder 2 ...
by jll-fwh
Sat Nov 06, 2010 8:06 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Linea de comandos con Emailer SOLUCIONADO
Replies: 7
Views: 2610

Unicode + RichEdit

... sample #include "FiveWin.ch" #include "Constant.ch" #include "WColors.ch" #include "RichEdit.ch" STATIC oMsg, oLen, oRow, oCol //----------------------------------------------------------------------------// function Main() local oDlg, oRich local hRichDLL ...
by ryugarai27
Fri Jul 09, 2010 9:16 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Unicode + RichEdit
Replies: 0
Views: 467

Re: Lectora Laser

... "mc1000.prg" FUNCTION Main() PRIVATE oWnd PRIVATE cLog := "" PRIVATE nCant := 1 , oCant PRIVATE nExist := 0 PRIVATE oInvPC , oMsg , oMarca, oPrecio , oDes , oMsg2 PRIVATE cBarCode := space(15) , oBarCode PRIVATE files_dir := "\\caja1\c\" PRIVATE nContador := 0 , ...
by diegopolverelli
Mon Jul 05, 2010 11:15 am
 
Forum: FiveWin para Pocket PC
Topic: Lectora Laser
Replies: 15
Views: 6364

Re: transparent say

Daniel not run on buttonbar

@ 7, 285 SAY ::oMsg PROMPT "RIVAMANIA PRO 1.00" ;
SIZE 150, 15 PIXEL OF ::oBar FONT ::oFont TRANSPARENT

Image
by Silvio
Fri Mar 13, 2009 2:10 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: transparent say
Replies: 9
Views: 1113
PreviousNext

Return to advanced search

cron