Search found 32 matches: nele

Return to advanced search

Re: Hide a Checkbox from Resource.

That was my first guess but this does not seem to work. For dDay := dStart to dEnd nEle++ nId++ lVar := FALSE oChk := nil If dDay >= dFrom .AND. dDay <= dTo Redefine CheckBox oChk Var lVar Id nId of oDlg oChk:SetText( PadL( Day(dDay),2,"0" ) ) oChk:cargo ...
by byron.hopp
Mon Jul 03, 2023 6:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Hide a Checkbox from Resource.
Replies: 7
Views: 377

DLL xHarbour em FiveLinux

Olá,

é possivel gerar DLL xHarbour no FiveLinux ?

Eu preciso criar um CGI para Linux e nele vamos ler e executar programas que estão na DLL.

Grato.
Ari
by Ari
Tue Nov 17, 2020 11:41 am
 
Forum: FiveLinux / FiveDroid (Android)
Topic: DLL xHarbour em FiveLinux
Replies: 1
Views: 1012

Re: usando CDOSYS marca error, mail

... el ejemplo de CDOSYS mail, funcione correctamente se debe corregir una linea del codigo que esta mal escrita esto es lo que dicce en el PRG: For nEle := 1 To Len( aAttach ) :AddAttachment := AllTrim( aAttach[ nEle ] ) Next el error se produce al tratar de adjuntar archivos porque esta mal escrito ...
by rterraz
Mon Aug 10, 2015 4:59 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: usando CDOSYS marca error, mail
Replies: 4
Views: 1118

Re: no me funciona CDOSYS, gmail

funcion: Function fSendMail( cMailServer, cFrom, cTo, cSubject, cBody, cAttach, cBCC, cUser, cPass, nPort, oDlg ) Local oCfg, oMsg, oError, nEle, cToken, bMens, lAuth:=!Empty(cUser).and.!Empty(cPass) Local aAttach:={} Default nPort := 25, ; cSubject := "", ; cBody := "" if ...
by noe aburto
Fri May 29, 2015 1:42 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: no me funciona CDOSYS, gmail
Replies: 5
Views: 669

usando CDOSYS marca error, mail

... // --- Enviar un mail Function fSendMail( cMailServer, cFrom, cTo, cSubject, cBody, cAttach, cBCC, cUser, cPass, nPort ) Local oCfg, oMsg, oError, nEle, cToken, bMens,; lAuth := ! Empty( cUser ) .and. ! Empty( cPass ), ; nSendOpt := 2 // send using: 1 = pickup folder 2 = port memvar aAttach Default ...
by noe aburto
Tue May 12, 2015 2:15 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: usando CDOSYS marca error, mail
Replies: 4
Views: 1118

Re: Alguna version reciente de CDOSYS?

Ya encontre donde esta la falla del prg de cdosys. Nunca entra al ciclo

For nEle := 1 To Len( aAttach )
:AddAttachment := AllTrim( aAttach[ nEle ] )
Next

y por ello no tomas los archivos indicados y separados por comas..
by noe aburto
Tue Feb 18, 2014 6:09 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Alguna version reciente de CDOSYS?
Replies: 3
Views: 652

Re: Fichero BMP/JPG en xbrowse

Ola Francisco,

Desculpe, este exemplo tinha me passado batido. Vou dar uma analisada nele.

Obrigado pela sua atençao e um abraço.

Sergio....
by Sdo
Thu Mar 08, 2012 2:01 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Fichero BMP/JPG en xbrowse
Replies: 12
Views: 3641

Re: duda Aeval

... Puedes intentar hacer algo asi: Function Prueba() Local aTabla := { {0,0},{0,1},{0,2},{0,3},{0,4},{0,5} } //AEVal( aTabla , { | nV , nEle | Msginfo( Str(nV[1])+Str( nEle ) ) } ) AEVal( aTabla , { | nV , nEle | Porelarray( nV ) } ) //AEVal( aTabla , { | nV , nEle | Msginfo( Str(nV[1])+Str( ...
by cnavarro
Mon Feb 20, 2012 7:02 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: duda Aeval
Replies: 3
Views: 671

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 folder 2 ...
by Armando Picon
Fri Nov 04, 2011 2:02 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Volviendo al tema CDO
Replies: 19
Views: 6339

Re: Help CDO

Hello, Only change this line :AddAttachment := AllTrim( aAttach[ nEle ] ) by :AddAttachment( AllTrim( aAttach[ nEle ] ) ) This error occurs when you change from xHarbour to harbour 3, this modification don't affect programs working with xHarbour or Harbour ...
by nnicanor
Wed Oct 19, 2011 8:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help CDO
Replies: 6
Views: 1003

Re: Ayuda sobre e-mail con CDO.

Hola, Cambia esta linea :AddAttachment := AllTrim( aAttach[ nEle ] ) Por :AddAttachment( AllTrim( aAttach[ nEle ] ) ) a mi me paso cuando cambie compilador de xHarbour a Harbour 3 y despues de dar muchas vueltas encontre que el llamado es diferente, y ...
by nnicanor
Wed Oct 19, 2011 8:41 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda sobre e-mail con CDO.
Replies: 13
Views: 3627

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

... :From := Trim( cFrom ) :To := Trim( cTo ) :Subject := Trim( cSubject ) :TextBody := Trim( cBody ) For nEle := 1 To Len( aAttach ) :AddAttachment := AllTrim( aAttach[ nEle ] ) Next If ! Empty( cBCC ) :BCC := Trim( cBCC ) EndIf :Send() End With ELGUNA ...
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: 419

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

... :From := Trim( cFrom ) :To := Trim( cTo ) :Subject := Trim( cSubject ) :TextBody := Trim( cBody ) For nEle := 1 To Len( aAttach ) :AddAttachment := AllTrim( aAttach[ nEle ] ) Next If ! Empty( cBCC ) :BCC := Trim( cBCC ) EndIf :Send() End With ELGUNA ...
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: 366

NÃO DEIXAR O SISTEMA ABRIR MAIS DE UMA VEZ

Tenho um aplicativo em FWPPC e quando o usuario clica no menu iniciar, ele possibilita a abertura do sistema mais de uma vez.
Eu fiz um bloqueio pra isso.

Queria uma forma que se o sistema já estivesse rodando ele penas voltasse nele.

Espero ter explicado de forma clara aos amigos.
by INFORMAIS
Mon Apr 25, 2011 12:44 am
 
Forum: FiveWin para Pocket PC
Topic: NÃO DEIXAR O SISTEMA ABRIR MAIS DE UMA VEZ
Replies: 1
Views: 739

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 = port LOCAL lSendOk ...
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: 2596
Next

Return to advanced search