PREGUNTAS POR CONTESTAR - FoxPro/Visual FoxPro

 Hay un total de 124 Preguntas.<<  >> 

    Pregunta:  67414 - NO PUEDO ACTUALIZAR EL CURSOR (EJECUTABLE EXE EN FOXPRO)
Autor:  Damian Ruzak
Hola. Que tal.

Realice un proyecto de CONTROL DE STOCK con FOXPRO 6.0
Genero el ejecutable.exe pero a la hora de entrar en los formularios de alta baja modificacion o en la parte de dar una baja o actualizar un valor en la tabla me salta:
"no se puede actualizar el objeto cursor"

Probe de todas las formas y me fue imposible.
Incluso probe generar un proyecto nuevo simple, que tiene 1solo form y 1 sola tabla de 2campos (es solo ingresar nombres) y igual aun asi cuando genero el EXE me salta el mismo error...

ADJUNTO EL proyecto para descargarlo por MediaFire. y si pueden solucionar el problema y enviarmelo al email.
>>LINK:
http://www.mediafire.com/?gwfatss2d57b52m

Muchas Gracias!
Contestar

    Pregunta:  67416 - CONEXION BASE DE DATOS
Autor:  nestor javier martinez salinas
como puedo conectar base de datos postgre con visual fox pro utilizando conexion obdc
Contestar

    Pregunta:  67423 - ERROR EN PROCESO
Autor:  Francisco
Buen dia, queria ver quien me puede ayudar estoy revisando un programa y esta un proceso, el problema que tengo es que no encuentro el error pues se queda como trabajando y nunca termina, y cuando lo cierro a la fuerza reviso la tabla estadoclusu tiene miles de registros pero siempre es el mismo, el proceso es este:

titulo1="ESTADO DE CUENTAS POR COBRAR"
SELECT cxc
IF vnivel=2
SET FILTER TO Cxc.registro_f = thisform.I_registro_f.value AND vruta=cxc.vendedor
ELSE
SET FILTER TO Cxc.registro_f = thisform.I_registro_f.value
ENDIF
SELECT estadoclusu
SET FILTER TO vusuario=usuario AND Cxc.registro_f = thisform.I_registro_f.value
GO top
DELETE NEXT 10000
pack
SELECT cxc
GO TOP
DO WHILE NOT EOF()
select estadoclusu
append blank
replace next 1 registro_f with cxc.registro_f
replace next 1 factura with cxc.factura
replace next 1 cliente with cxc.cliente
replace next 1 fecha_fac with cxc.fecha_fac
REPLACE NEXT 1 dias_cr WITH cxc.dias_cr
replace next 1 valor_fac with cxc.valor_fac
REPLACE NEXT 1 abonos WITH cxc.abonos
REPLACE NEXT 1 saldo WITH cxc.saldo
REPLACE NEXT 1 tipodoc WITH cxc.tipodoc
REPLACE NEXT 1 operacion WITH cxc.tipopago
REPLACE NEXT 1 documento WITH cxc.registro_f
REPLACE NEXT 1 usuario WITH vusuario
UNLOCK
SELECT cxc
SKIP
ENDDO
SELECT estadoclusu
SET FILTER TO vusuario=usuario AND registro_f = thisform.I_registro_f.value
go top
IF vnivel=2
scan for registro_f = thisform.I_registro_f.value AND vusuario=usuario
select cxcpagos
SET ORDER TO registro_f
thisform.varregistro_f=estadoclusu.registro_f
thisform.varfactura=estadoclusu.factura
seek estadoclusu.registro_f+estadoclusu.factura
if not eof()
DO WHILE (cxcpagos.registro_f=thisform.varregistro_f AND cxcpagos.factura=thisform.varfactura) AND NOT EOF()
select estadoclusu
append blank
replace next 1 registro_f with cxcpagos.registro_f
replace next 1 factura with cxcpagos.factura
replace next 1 cliente with cxcpagos.nomcli
replace next 1 abonos with cxcpagos.valor
replace next 1 fecha_fac with cxcpagos.fecha_pg
REPLACE NEXT 1 usuario WITH vusuario
if cxcpagos.operacion="3"
replace next 1 operacion with "PG"
replace next 1 documento with cxcpagos.quedan
ELSE
if cxcpagos.operacion="4"
replace next 1 operacion with "PG"
replace next 1 documento with cxcpagos.documento
ELSE
replace next 1 operacion with "DV"
replace next 1 documento with cxcpagos.documento
ENDIF
ENDIF
UNLOCK
SELECT cxcpagos
SKIP
ENDDO
ENDIF
* select notacredito
* seek estadoclusu.registro_f+estadoclusu.factura
* if not eof()
* select estadoclusu
* append blank
* replace next 1 registro_f with notacredito.registro_f
* replace next 1 factura with notacredito.factura
* replace next 1 cliente with notacredito.nomcli
* replace next 1 abonos with notacredito.valor_total
* replace next 1 fecha_fac with notacredito.fecha
* replace next 1 operacion with "NC"
* replace next 1 documento with notacredito.nota_credito
* endif
select estadoclusu
ENDSCAN
ELSE
scan for registro_f = thisform.I_registro_f.value AND vusuario=usuario
select cxcpagos
SET ORDER TO registro_f
thisform.varregistro_f=estadoclusu.registro_f
thisform.varfactura=estadoclusu.factura
seek estadoclusu.registro_f+estadoclusu.factura
if not eof()
DO WHILE (cxcpagos.registro_f=thisform.varregistro_f AND cxcpagos.factura=thisform.varfactura) AND NOT EOF()
select estadoclusu
append blank
replace next 1 registro_f with cxcpagos.registro_f
replace next 1 factura with cxcpagos.factura
replace next 1 cliente with cxcpagos.nomcli
replace next 1 abonos with cxcpagos.valor
replace next 1 fecha_fac with cxcpagos.fecha_pg
REPLACE NEXT 1 usuario WITH vusuario
if cxcpagos.operacion="3"
replace next 1 operacion with "PG"
replace next 1 documento with cxcpagos.quedan
ELSE
if cxcpagos.operacion="4"
replace next 1 operacion with "PG"
replace next 1 documento with cxcpagos.documento
ELSE
replace next 1 operacion with "DV"
replace next 1 documento with cxcpagos.documento
ENDIF
ENDIF
UNLOCK
SELECT cxcpagos
SKIP
ENDDO
ENDIF
* select notacredito
* seek estadoclusu.registro_f+estadoclusu.factura
* if not eof()
* select estadoclusu
* append blank
* replace next 1 registro_f with notacredito.registro_f
* replace next 1 factura with notacredito.factura
* replace next 1 cliente with notacredito.nomcli
* replace next 1 abonos with notacredito.valor_total
* replace next 1 fecha_fac with notacredito.fecha
* replace next 1 operacion with "NC"
* replace next 1 documento with notacredito.nota_credito
* endif
select estadoclusu
ENDSCAN
ENDIF
select estadoclusu
set order to factura
GO top
IMPEMPRESA=ALLTRIM(NOMEMPRESA)
*cPrinter = GETPRINTER( ) && selecciona impresor
*IF MESSAGEBOX("Desea Imprimir?",4+32+256)=6
* REPORT FORM cxcestcta TO PRINTER NOCONSOLE
*ELSE
REPORT FORM cxcestcta TO PRINTER PROMPT PREVIEW
*ENDIF
select clientes
Contestar

    Pregunta:  67440 - ANALISTA
Autor:  otilia mercado
Desarrollo en Visual Foxpro 9, puede correr un ejecutable de visual en un sistema operativo androide,o que tengo que hacer
Contestar

    Pregunta:  67448 - CAMBIO SO
Autor:  raul
Tengo un programa hecho en VFP 5.0 que corría muy bien en mi PC con windows xp. Ahora he cambiado el equipo y éste viene con windows 7. Sucede que el programa no parte. Apararece el mensaje No se encuentra biblioteca soporte.

Que se puede hacer para que corra bien el programa
Contestar

    Pregunta:  67449 - CRT0505
Autor:  Cristian Torres
alguien me puede ayudar y desir de k se trata este error : "command contains unrecognized phrase keyword" y como lo puedo corregirlo
Contestar

    Pregunta:  67477 - COMO GRABAR UNA LLAMADA TELEFONICA Y ESCUCHARLA CON VFP9
Autor:  miguel chicas zavala
quiero recibir llamadas telefonicas en mi cumputadora y luego escucharlas, esto utilizando vfp9
Contestar

    Pregunta:  67481 - MENOS LINEAS AYÚDEME!!
Autor:  sebastias ruiz
La tarea consiste en elaborar un programa que imprima un texto con una fuente aleatoria, es decir, el texto se podrá imprimir con fuente Arial o con Times New Roman o con cualquier otra fuente que traiga FoxPro pero tiene que ser al azar. el chiste de esto es de menos lineas ideas o comentarios gracias.
Contestar

    Pregunta:  67489 - MIGRACION DE GENEXUS 6 A SUPERIOR
Autor:  Roberto Lerici
Desarrollè sofware en genexus 6, ejecutable en visual foxpro 6.0, Quisiera migrarlo a una version actualizada, alguien migro de esta version a una mas nueva? que me recomiendan?
Contestar

    Pregunta:  67505 - ESCANEAR EN FOXPRO
Autor:  Jose Benthan
¿Que condigo se puede utilizar para escanear un documento en un formulario de foxpro. y guardarlo ?
Contestar

|<  <<  2 3 4 5 6 7 8 9 10 11 12  >>  >|