Ver Mensaje Individual
  #3 (permalink)  
Antiguo 31/05/2006, 07:32
Avatar de Phobos
Phobos
 
Fecha de Ingreso: abril-2001
Ubicación: sentado frente a un pc prestado
Mensajes: 375
Antigüedad: 24 años
Puntos: 2
A ver... puedes cargar el recordset tal cual a la grilla y luego aplicarle un formato a esta y ahi hacer los cambios... algo asi

Código:
set MshflexGrid1.recordset=Rs
With MshflexGrid1
    for i=1 to .rows-1
       .textmatrix(i,1) = .textmatrix(i,1) & " " & .textmatrix(i,2)
    next i
end with
espero se haya entendido,

Saludos.