I'm having some problems with an app that I'm recoding for windows. Although I'm using the right commands I cant seem to open a DBF file that is needed for my app.
The code snip that hase the problem is
- Code: Select all Expand view
DEFINE WINDOW oBrwsWin MDICHILD TITLE OemToAnsi("Εξερευνηση");
OF oMainWin NOICONIZE NOZOOM NOCAPTION NOSYSMENU MENU BuildMenu()
SELECT 1
//SX_SETPASS( cIFTPwd, 1)
USE FOLDERS VIA "SIXCDX" ALIAS FOLDER PASSWORD (cIFTPwd)
MSGInfo(ALIAS())
@0,0 LISTBOX oLstBx1;
FIELDS PADL(ALLTRIM(FOLDER->SIDE_A),4)+"/"+FOLDER->SIDE
PADL(ALLTRIM(FOLDER->RED_A),4)+"/"+SUBSTR(FOLDER
FOLDER->NAME,;
FOLDER->ADDRESS,;
FOLDER->TYPE;
FIELDSIZES 20, 20, 150, 150, 80;
HEADERS OemToAnsi("Πλαϊνο"), OemToAnsi("Αρ. Πρωτ"),;
OemToAnsi("Ιδιοκτητης"), OemToAnsi("Ειδος");
SIZE (oBrwsWin:nBottom-oBrwsWin:nTop),;
(oBrwsWin:nRight - oBrwsWin:nLeft);
OF oBrwsWin
The ALIAS function returns nothing. When I try to make a browse listbox the app crashes with to base/1002 Alias dose not exist FOLDER. In the error log there are no DBFs in use
I'm using
Clipper 5.2e, Blinker 6, Six 3.02, and fivewin 1.92 demo.
What am I doing wrong?
Thanks