O correto é DBDROP("mem:tabla") e não DBDROP("mem:prod") .
Search found 8 matches
- Mon Jan 31, 2011 8:01 pm
- Forum: FiveWin para Pocket PC
- Topic: FWPPC and HP IPAQ 114
- Replies: 33
- Views: 12137
- Mon Jan 31, 2011 7:58 pm
- Forum: FiveWin para Pocket PC
- Topic: FWPPC and HP IPAQ 114
- Replies: 33
- Views: 12137
Re: FWPPC and HP IPAQ 114
Decidí usar una solución temporal. Puedo crear una tabla em la memoria utilizando HBMEMIO. Codigo Abaixo: REQUEST HBMEMIO (...) DbCreate("mem:TABLA", TABLADBF->( DbStruct() ),,.T., "TABLADBF") TABLADBF->( DbGotop() ) While !TABLADBF->( Eof() ) TABLA->( DbAppend() ) TABLA-...
- Fri Jan 28, 2011 11:37 am
- Forum: FiveWin para Pocket PC
- Topic: FWPPC and HP IPAQ 114
- Replies: 33
- Views: 12137
Re: FWPPC and HP IPAQ 114
También estoy teniendo problemas con el uso DBFCDX en un IPAQ 116. Tengo un DBF con 2 mb (3000 registros). El DBSEEK a veces no funciona o no está correctamente indexada resultados (uso DbSetOrder (1 o 2)). En He instalado el emulador se ejecuta sin problemas. ¿Qué puede ser esto? Saludos, Fabio Souza
- Wed Sep 08, 2010 12:56 pm
- Forum: FiveWin for Pocket PC
- Topic: Help using Sockets
- Replies: 17
- Views: 4750
Help using Sockets
I'm using Sockets to connect in a remote server. But I can not determine when the connection is successfully established. Remote server returns that connected and works normally. See the code below: (...) FUNCTION ConnectSocket() LOCAL oSocket, lSuccess lSuccess := .F. oSocket := TSocket():New(1200)...
- Fri May 14, 2010 1:24 pm
- Forum: FiveWin for Pocket PC
- Topic: Combobox not change
- Replies: 3
- Views: 822
Re: Combobox not change
I'm using Dialog.
I use TSBUTTON, but it does not work with Window.
Thanks,
Fabio Souza
I use TSBUTTON, but it does not work with Window.
Thanks,
Fabio Souza
- Mon May 10, 2010 4:24 pm
- Forum: FiveWin for Pocket PC
- Topic: Button without focus
- Replies: 3
- Views: 953
Re: Button without focus
After searching the forum I found two solutions The first is using a fake __keyboard and the other is manipulating the data with a function. See below: First Solution with a "fake" __keyboard(): STATIC oFocusGet (...) @ 14,02 Say "Prod:" OF oWndProdutos SIZE 15,7.5 PIXEL @ 13,17 ...
- Mon May 10, 2010 3:43 pm
- Forum: FiveWin for Pocket PC
- Topic: Combobox not change
- Replies: 3
- Views: 822
Combobox not change
The code below does not work: STATIC aQtdes, cQtde (...) aQtdes := { "1", "2", "3", "4", "5", "6" } cQtde := "1" @ 13,98.5 COMBOBOX oCmbnQtde VAR cQtde OF oWndProdutos ITEMS aQtdes SIZE 20,75 PIXEL (...) MudarQtde() (...) STATIC F...
- Thu Apr 22, 2010 7:37 pm
- Forum: FiveWin for Pocket PC
- Topic: Button without focus
- Replies: 3
- Views: 953
Button without focus
I need to create a button that appears the number in the Edit / Combo active (focus) and the focus remains on the Edit / As. For example button "1", When I click on this button will display the number 1 in the Edit / Combo active (Just like when using the keyboard Windows Mobile). thanks, ...