Tecnologia, programação e muito Visual FoxPro.

quarta-feira, 29 de janeiro de 2014

RE: [usuarios_fox] INFORMES DE VFP A LA NUBE

 

Hola Alejandro, pues yo trabajo con la nube desde C# , se puede conectar Vfox con
Sql Azure y aqui hay un artículo que te puede ayudar.


Ojala y otros compañeros nos comenten sus experinecias.

Saludos Cordiales

José Alfonso


From: alejandroosoriod@yahoo.com.mx
To: usuarios_fox@yahoogrupos.com.mx
Date: Mon, 27 Jan 2014 15:38:46 -0800
Subject: [usuarios_fox] INFORMES DE VFP A LA NUBE

 


ESTIMADOS, ALGUNO DE USTEDES HA ENVIADO INFORMES DE VFP A UNA NUBE?, FORMATO EXCEL O TEXTO.


SALUDOS

__._,_.___
Actividad reciente:
Comentarios, agregar archivos en el foro, observaciones o si deseas darte de baja avísame a: jamorquecho@hotmail.com

.

__,_._,___

terça-feira, 28 de janeiro de 2014

]] XL-mania [[ Ringkaskan Form Isian [1 Attachment]

 

Saya membuat sebuah form isian yang harus diisi, dengan isian yang akan disimpan dalam file lain (database.xlsm), itu sudah berhasil.
Tapi kemudian ketika saya memasukkan sangat banyak form isian yang harus diisi, macro menyatakan bahwa itu terlalu besar (Compile error: Procedure too large).
Pertanyaannya:
1. Apakah macro yang saya buat itu bisa diringkas ?
2. Apa kode macro yang harus saya isi untuk mengurutkan nomor urut isi dalam database, yang semula saya buat adalah "ws.Cells(iRow, 1).Value = Range("A1").Value - 3" namun tidak berjalan dengan baik, semua menulis angka 1, artinya tidak urut, cuma 1 terus 1 terus 1 dst.
3. Bagaimana saya menambahkan fungsi formula untuk "ws.Cells(iRow, 2).Value" yang formulanya seperti ini "16"&VLOOKUP(G10;xx!A:B;2;FALSE)&VLOOKUP(H10;xx!F:G;2;FALSE)&TEXT(B10;"yy")&TEXT(B10;"mm")&TEXT(B10;"dd")&TEXT(P10;"yy")&TEXT(P10;"mm")&TEXT(P10;"dd")&IF(COUNTIF(P$6:P10;P10)<10;0&COUNTIF(P$6:P10;P10);COUNTIF(P$6:P10;P10)) ??

Semoga para master atau siapapun bisa membantu saya, terima kasih :)
Salam hangat, riemogerz.

__._,_.___
View attachments on the web
Reply via web post Reply to sender Reply to group Start a New Topic Messages in this topic (1)
Recent Activity:
+-:: XL-mania ::::::::::::::::::::----------------------------------+
| Maaf moderasi terlambat karena yahoogroups sering error           |
+-------------------------------------------------------------------+
| DILARANG : MLM, money game, OOT, iklan tanpa izin, SARA, testing, |
| pembicaraan pribadi, one line message,  melecehkan,  tidak sopan. |
+-------------------------------------------------------------------+
| Buat subjek yang kreatif, jangan : "tanya", "help", "mohon bantu" |
| Usahakan besar attachment < 200 kb. Gunakan  winzip  jika  perlu. |
+-------------------------------------------------------------------+
| Ajak teman-teman Anda bergabung dengan mengirim e-mail kosong ke  |
| XL-mania-subscribe@yahoogroups.com atau kirimkan mereka file dari |
| http://groups.yahoo.com/group/XL-mania/files/Promotion/           |
+-------------------------------------------------------------------+
| Berikan testimoni di :                                            |
| http://www.xl-mania.com/2008/06/testimoni-xl-mania.html           |
+-------------------------------------------------------------------+
| Message lama ada di :                                             |
| http://groups.yahoo.com/group/XL-mania/messages [perlu yahoo id]  |
| http://www.mail-archive.com/xl-mania@yahoogroups.com              |
+-------------------------------------------------------------------+
.

__,_._,___

Re: [usuarios_fox] IMPRESION EN EPSON TERMICA - TICKETS

 

Te doy las gracias y saludos.



El Jueves, 24 de octubre, 2013 18:17:45, Cid Guzman <cidguzman@hotmail.com> escribió:
 
Este es un ejemplo de un ticket en una impresora Epson TM-IV (Termica), tambien me funciona en una impresora termica Bixolon. Espero que este ejemplo te sirva, tambien imprime una imagen (logo). Utilizo VFP9:
 
**** Inicio Programa
******* TICKETREMISION ******
SET console off
SET PRINTER ON
SET DEVICE TO PRINTER

@00,05 say iimagen bitmap ISOMETRIC SIZE 10,20
?
?
? ALLTRIM(inombre)  FONT 'ARIAL',10 STYLE 'B'
? ALLTRIM(IRFC) FONT 'ARIAL',10 STYLE 'N'
? ALLTRIM(idomicilio) FONT 'ARIAL',8 STYLE 'N'
? ALLTRIM(iciudad)+" "+ALLTRIM(iestado) FONT 'ARIAL',8 STYLE 'N'

? ALLTRIM(itelefonos) FONT 'ARIAL',8 STYLE 'N'
? ALLTRIM(iwebpage) FONT 'ARIAL',10 STYLE 'B'
?
? ifechahora FONT 'ARIAL',10 STYLE 'N'
? "NOTA: "+ALLTRIM(STR(INREMISION)) FONT 'ARIAL',12 STYLE 'N'
?
? "CANT      DESCRIPCION           PRECIO     IMPORTE" FONT 'ARIAL',8 STYLE 'N'
? "---------------------------------------------------------------------" FONT 'ARIAL',8 STYLE 'N'
SELECT TICKETREMISION
GO TOP
ren=0
icantcon=0
DO WHILE ! EOF()
   ren=Prow()+1
   @ren,00 say CANTIDAD picture("9999") FONT 'ARIAL',8 STYLE 'N'
   icantcon=icantcon+cantidad
   @ren,05 say DESCRIPCIO pict("!!!!!!!!!!!!!!!!!!!!")FONT 'ARIAL',8 STYLE 'N'
   @ren,20 say PRECIOU picture("9999.99") FONT 'ARIAL',8 STYLE 'N'
   @ren,28 say IMPORTE picture("9999.99") FONT 'ARIAL',8 STYLE 'N'
   SKIP
ENDDO
@Prow()+1,0 say "---------------------------------------------------------------------" FONT 'ARIAL',8 STYLE 'N'
@Prow()+1,0 say "   TOTAL (DLLS): " FONT 'ARIAL',14 STYLE 'B'
@Prow(),19 say ITOTALD picture("$9999.99") FONT 'ARIAL',14 STYLE 'B'
@Prow()+2,0 say "TOTAL (PESOS): " FONT 'ARIAL',14 STYLE 'B'
@Prow(),19 say ITOTALP picture("$9999.99") FONT 'ARIAL',14 STYLE 'B'
@Prow()+2,0 say "       TIPO DE CAMBIO:"  FONT 'ARIAL',10 STYLE 'N'
@Prow(),18 say ITIPOCAMBIO picture("999.9999") FONT 'ARIAL',10 STYLE 'N'
@Prow()+2,0 say IIF(ITIPOPAGO="T","PAGO CON TARJETA (VOUCHER)",IIF(ITIPOPAGO="E","PAGO EN EFECTIVO", IIF(ITIPOPAGO="C","CORTESIA","---------")))  FONT 'ARIAL',8 STYLE 'N'
@Prow()+1,0 say "TOTAL DE ARTICULOS(ITEMS): "+ALLTRIM(STR(icantcon)) FONT 'ARIAL',8 STYLE 'N'
@Prow()+1,0 say "LO ATENDIO (YOUR HOST): "+ALLTRIM(INOMBREMESERO) FONT 'ARIAL',8 STYLE 'N'
IF iautoriza<>" "
   @PROW()+2,0 say "AUTORIZA: "+ALLTRIM(iautoriza) FONT 'ARIAL',10 STYLE 'N'
endif
@PROW()+1,0 say "CLAVE DE INTERNET: "+iclaveint FONT 'ARIAL',10 STYLE 'N'
 
SET PRINTER OFF
SET PRINTER TO  && este es el que me hace sacar la impresion (EJECT)
SET DEVICE TO SCREEN
SET CONSOLE ON

 
**** Fin Programa
 
To: usuarios_fox@yahoogrupos.com.mx
From: alejandroosoriod@yahoo.com.mx
Date: Fri, 4 Oct 2013 22:43:36 +0000
Subject: [usuarios_fox] IMPRESION EN EPSON TERMICA - TICKETS

 
ESTIMADOS,

TENGO UN PROGRAMA QUE GENERA UN TICKET DE VENTA EL CUAL FUNCIONA PERFECTAMENTE CON UN MINI PRINTER, AHORA ESA MISMA IMPRESIÓN SE ENVÍA A UNA IMPRESORA EPSON TERMICA, NO ME RESPETA EL TAMAÑO DE LETRA, LAS NEGRILLAS, TAMPOCO EL CENTRAR LOS TEXTOS, UTILIZO EL CHR() PARA LAS DIFERENTES FUNCIONES DE IMPRESIÓN, CUAL PODRÍA SER EL PROBLEMA?

SALUDOS.




__._,_.___
Actividad reciente:
Comentarios, agregar archivos en el foro, observaciones o si deseas darte de baja avísame a: jamorquecho@hotmail.com

.

__,_._,___

]] XL-mania [[ Mencari total MA (Month to date) [1 Attachment]

 

Selamat siang para master XL


Mau minta bantuan ke para master XL Mania,

 

Bagaimana cara menhitung total MA month to date . yang saya kasih tanda patah dengan menjumlah di kolom A dan B

Dan data yang ada di kolom A dan B otomatis link ke kolom C

 

Saya lampirkan file attachement nya biar jelas

Sebelum nya terima Kasih

 

 

Sumariyadi

 

 


______________________________________________________________________
This email has been scanned by the Symantec Email Security.cloud service.
For more information please visit http://www.symanteccloud.com
______________________________________________________________________

__._,_.___
View attachments on the web
Reply via web post Reply to sender Reply to group Start a New Topic Messages in this topic (1)
Recent Activity:
+-:: XL-mania ::::::::::::::::::::----------------------------------+
| Maaf moderasi terlambat karena yahoogroups sering error           |
+-------------------------------------------------------------------+
| DILARANG : MLM, money game, OOT, iklan tanpa izin, SARA, testing, |
| pembicaraan pribadi, one line message,  melecehkan,  tidak sopan. |
+-------------------------------------------------------------------+
| Buat subjek yang kreatif, jangan : "tanya", "help", "mohon bantu" |
| Usahakan besar attachment < 200 kb. Gunakan  winzip  jika  perlu. |
+-------------------------------------------------------------------+
| Ajak teman-teman Anda bergabung dengan mengirim e-mail kosong ke  |
| XL-mania-subscribe@yahoogroups.com atau kirimkan mereka file dari |
| http://groups.yahoo.com/group/XL-mania/files/Promotion/           |
+-------------------------------------------------------------------+
| Berikan testimoni di :                                            |
| http://www.xl-mania.com/2008/06/testimoni-xl-mania.html           |
+-------------------------------------------------------------------+
| Message lama ada di :                                             |
| http://groups.yahoo.com/group/XL-mania/messages [perlu yahoo id]  |
| http://www.mail-archive.com/xl-mania@yahoogroups.com              |
+-------------------------------------------------------------------+
.

__,_._,___

segunda-feira, 27 de janeiro de 2014

Bls: ]] XL-mania [[ Kolaborasi Ms Excel dengan Ms Access

 

sebenarnya konsepnya sama seperti anda menggunakan vb dan DB access, jadi jadi anda bisa import dengan menggunakan makro/vba excel. saya sdh pernah buat program utk mengambil data dari msaccess yang kemudian di program setiap 1/2 jadi suatu report yang dibutuhkan oleh management.


Puji(MCI)
085695118667


Pada Senin, 16 Desember 2013 20:33, Heru Wibowo <heru.wibowo4456@gmail.com> menulis:
 
Salam sejahtera,

Dear All,

Adakah yang punya tutorial yang bisa disharingkan mengenai cara import data Ms Access ke Ms Excel (menggunakan metode ADO/DAO), memanipulasi dati MS Access ( Create, Read, Add, Edit ) dari MS Excel ?

Pendek kata saya ingin belajar menggunakan MS Excel sebagai interface dan Ms Access sebagai databasenya.


Salam,
Heru Wibowo


__._,_.___
Reply via web post Reply to sender Reply to group Start a New Topic Messages in this topic (2)
Recent Activity:
+-:: XL-mania ::::::::::::::::::::----------------------------------+
| Maaf moderasi terlambat karena yahoogroups sering error           |
+-------------------------------------------------------------------+
| DILARANG : MLM, money game, OOT, iklan tanpa izin, SARA, testing, |
| pembicaraan pribadi, one line message,  melecehkan,  tidak sopan. |
+-------------------------------------------------------------------+
| Buat subjek yang kreatif, jangan : "tanya", "help", "mohon bantu" |
| Usahakan besar attachment < 200 kb. Gunakan  winzip  jika  perlu. |
+-------------------------------------------------------------------+
| Ajak teman-teman Anda bergabung dengan mengirim e-mail kosong ke  |
| XL-mania-subscribe@yahoogroups.com atau kirimkan mereka file dari |
| http://groups.yahoo.com/group/XL-mania/files/Promotion/           |
+-------------------------------------------------------------------+
| Berikan testimoni di :                                            |
| http://www.xl-mania.com/2008/06/testimoni-xl-mania.html           |
+-------------------------------------------------------------------+
| Message lama ada di :                                             |
| http://groups.yahoo.com/group/XL-mania/messages [perlu yahoo id]  |
| http://www.mail-archive.com/xl-mania@yahoogroups.com              |
+-------------------------------------------------------------------+
.

__,_._,___

Re: [usuarios_fox] INFORMES DE VFP A LA NUBE

 

Pues mira.... Si bien entendí tu pregunta me suena a un simple copy, yo subo así los archivos a un ftp, espero te siga saludos.

Copy miarchivo.xml ftp://dominio.com

Obvio logueandome antes al ftp, saludos

Enviado desde mi iPhone

El 27/01/2014, a las 17:38, <alejandroosoriod@yahoo.com.mx> escribió:

 

ESTIMADOS, ALGUNO DE USTEDES HA ENVIADO INFORMES DE VFP A UNA NUBE?, FORMATO EXCEL O TEXTO.


SALUDOS

__._,_.___
Actividad reciente:
Comentarios, agregar archivos en el foro, observaciones o si deseas darte de baja avísame a: jamorquecho@hotmail.com

.

__,_._,___

[usuarios_fox] Vacantes

 

Hola 

Aqui el amigo Julio me manda estas vacantes. Saludos

DENOMINACIÓN DEL PUESTO: Programador Junior (.NET)
Ingeniero En Sistemas Computacionales, Informática o carrera afín (Pasante o Titulado)
FUNCIONES:
  • Desarrollo de software en plataformas Cliente Servidor y Web
  • Planeación Y Definición De Bases De Datos
  • Documentación De Sistemas
 
ACTIVIDADES A REALIZAR:
  • Diseñar y elaborar estructuras de bases de datos.
  • Realizar diseño, desarrollo y documentación de aplicaciones
  • Elaborar documentación de proyectos y aplicaciones existentes.
  • Implementar sistemas dentro de ambientes productivos y configurar de ambientes de trabajo
COMPETENCIA NECESARIA PARA EL PUESTO DE TRABAJO
FORMACIÓN
  • Conocimiento sólidos de desarrollo en las siguientes plataformas: VB.Net 2008 o superior, HTML, AJAX, SQL SERVER
  • Opcional conocimientos en Lenguaje C o Java básicos
  • Manejo de paquetería de Microsoft Office (Word, Excel, Outlook, Project, etc.).
  • Conocimientos de análisis, diseño de sistemas y bases de datos
EXPERIENCIA
No necesaria de manera formal en otras empresas pero si importante el conocimiento de las herramientas mencionadas con buen nivel de dominio
APTITUDES
Responsabilidad, Creatividad e Innovación, facilidad de palabra, facilidad para integración a grupos de trabajo
OFERTA
Proceso de Capacitación Continua en temas de TI y en áreas de Calidad y Desarrollo Organizacional, integración en equipos de trabajo, facilidades para el aprendizaje y desarrollo personal, prestaciones de Ley, horario fijo de lunes a viernes de 9.00 a 18.00, sueldo base
CONTACTO
B. Julio Fagoaga
Gestión de Proyectos
jfagoaga@exti.com.mx
Dirección: Mariano Matamoros No. 2ª Int 7, Tlalnepantla Centro, Estado de México, C.P. 54000
Teléfono: 5012 5601 y 5347 6184
Favor de enviar currículo por correo electrónico.
 

__._,_.___
Actividad reciente:
Comentarios, agregar archivos en el foro, observaciones o si deseas darte de baja avísame a: jamorquecho@hotmail.com

.

__,_._,___

[usuarios_fox] INFORMES DE VFP A LA NUBE

 

ESTIMADOS, ALGUNO DE USTEDES HA ENVIADO INFORMES DE VFP A UNA NUBE?, FORMATO EXCEL O TEXTO.


SALUDOS

__._,_.___
Actividad reciente:
Comentarios, agregar archivos en el foro, observaciones o si deseas darte de baja avísame a: jamorquecho@hotmail.com

.

__,_._,___

]] XL-mania [[ Menentukan Jumlah Perkalian 3 Jenis Barang dari 2 Jenis Satuan Yang Berbeda [1 Attachment]

 

XL Lovers ...


Mohon petunjuknya om dan tante bagaimana ya untuk menjumlah secara otomomatis

dengan 3 jenis item yang berbeda diantara 2 jenis satuan yang berbeda. ketika saya 

mengisi kolom Item di kolom jumlah lansung terjumlah secara otomatis 

kira menggunakan function apa ya om dan tan ... harus kah ? pakai multiple function

mohon petunjuknya om dan tante .. terima kasih 

__._,_.___
View attachments on the web
Reply via web post Reply to sender Reply to group Start a New Topic Messages in this topic (1)
Recent Activity:
+-:: XL-mania ::::::::::::::::::::----------------------------------+
| Maaf moderasi terlambat karena yahoogroups sering error           |
+-------------------------------------------------------------------+
| DILARANG : MLM, money game, OOT, iklan tanpa izin, SARA, testing, |
| pembicaraan pribadi, one line message,  melecehkan,  tidak sopan. |
+-------------------------------------------------------------------+
| Buat subjek yang kreatif, jangan : "tanya", "help", "mohon bantu" |
| Usahakan besar attachment < 200 kb. Gunakan  winzip  jika  perlu. |
+-------------------------------------------------------------------+
| Ajak teman-teman Anda bergabung dengan mengirim e-mail kosong ke  |
| XL-mania-subscribe@yahoogroups.com atau kirimkan mereka file dari |
| http://groups.yahoo.com/group/XL-mania/files/Promotion/           |
+-------------------------------------------------------------------+
| Berikan testimoni di :                                            |
| http://www.xl-mania.com/2008/06/testimoni-xl-mania.html           |
+-------------------------------------------------------------------+
| Message lama ada di :                                             |
| http://groups.yahoo.com/group/XL-mania/messages [perlu yahoo id]  |
| http://www.mail-archive.com/xl-mania@yahoogroups.com              |
+-------------------------------------------------------------------+
.

__,_._,___

sexta-feira, 24 de janeiro de 2014

Re: ]] XL-mania [[ menentukan harga unit yang berbeda [1 Attachment]

 

Begini Sdr. Lukman ...


On Thursday, January 23, 2014 9:16 PM, "jalanmawar2_blok3@yahoo.com" <jalanmawar2_blok3@yahoo.com> wrote:
 
dear Para Master Excel

mohon pemecahannya untuk menentukan rumus harga unit yang berbeda.


Best regard

Lukman Setiawan


__._,_.___
View attachments on the web
Reply via web post Reply to sender Reply to group Start a New Topic Messages in this topic (3)
Recent Activity:
+-:: XL-mania ::::::::::::::::::::----------------------------------+
| Maaf moderasi terlambat karena yahoogroups sering error           |
+-------------------------------------------------------------------+
| DILARANG : MLM, money game, OOT, iklan tanpa izin, SARA, testing, |
| pembicaraan pribadi, one line message,  melecehkan,  tidak sopan. |
+-------------------------------------------------------------------+
| Buat subjek yang kreatif, jangan : "tanya", "help", "mohon bantu" |
| Usahakan besar attachment < 200 kb. Gunakan  winzip  jika  perlu. |
+-------------------------------------------------------------------+
| Ajak teman-teman Anda bergabung dengan mengirim e-mail kosong ke  |
| XL-mania-subscribe@yahoogroups.com atau kirimkan mereka file dari |
| http://groups.yahoo.com/group/XL-mania/files/Promotion/           |
+-------------------------------------------------------------------+
| Berikan testimoni di :                                            |
| http://www.xl-mania.com/2008/06/testimoni-xl-mania.html           |
+-------------------------------------------------------------------+
| Message lama ada di :                                             |
| http://groups.yahoo.com/group/XL-mania/messages [perlu yahoo id]  |
| http://www.mail-archive.com/xl-mania@yahoogroups.com              |
+-------------------------------------------------------------------+
.

__,_._,___

Arquivo do blog