Error en ejecución
Tengo el siguiente código:
select all estgrupo.codestud, hvida.programa,estgrupo.estado,;
alltrim(hvida.apellidos)+SPACE(1)+ALLTRIM(hvida.nombre);
from estgrupo join hvida ;
on alltrim(estgrupo.codestud)=ALLTRIM(hvida.codigo);
into cursor MilistaC readwrite
* where ALLTRIM(estgrupo.codigo)=ALLTRIM(thisform.mCodigo.Value);
* .and.;
!DELETED() order by codestud noconsole nowait;
IF RECCOUNT("MilistaC")=0 then
MESSAGEBOX("sin registros")
ENDIF
thisform.detalleGrupo.RowSourceType= 3
thisform.detalleGrupo.RowSource='MilistaC'
thisform.detalleGrupo.Refresh
Al ejecutar me manda error en la asignación en el rowsourcetype "unreconzided command verb"
select all estgrupo.codestud, hvida.programa,estgrupo.estado,;
alltrim(hvida.apellidos)+SPACE(1)+ALLTRIM(hvida.nombre);
from estgrupo join hvida ;
on alltrim(estgrupo.codestud)=ALLTRIM(hvida.codigo);
into cursor MilistaC readwrite
* where ALLTRIM(estgrupo.codigo)=ALLTRIM(thisform.mCodigo.Value);
* .and.;
!DELETED() order by codestud noconsole nowait;
IF RECCOUNT("MilistaC")=0 then
MESSAGEBOX("sin registros")
ENDIF
thisform.detalleGrupo.RowSourceType= 3
thisform.detalleGrupo.RowSource='MilistaC'
thisform.detalleGrupo.Refresh
Al ejecutar me manda error en la asignación en el rowsourcetype "unreconzided command verb"
1 respuesta
Respuesta de César Pech
1