How about FWH - xHarbour applications on Windows 64-bits ? Are there any know problems ?
I experienced a problem.
I use this code to open files :
- Code: Select all Expand view
- STATIC FUNCTION NetUseJuda(cFileName,lExclusief,nWaitSeconds,cAlias,cTaal,cOH)
LOCAL lForever
LOCAL lRedo :=.T.
LOCAL nWait
DEFAULT(nWaitSeconds,0.1)
DEFAULT(cTAAL,"N")
DEFAULT(cOH,0)
lForever=(nWaitSeconds==0)
DO WHILE lRedo
nWait := nWaitSeconds*2
DO WHILE lForever .OR. nWait>0
IF cAlias = NIL
IF lExclusief
USE (cFileName) EXCLUSIVE NEW
ELSE
USE (cFileName) SHARED NEW
ENDIF
ELSE
IF lExclusief
USE (cFileName) EXCLUSIVE ALIAS (cAlias) NEW
ELSE
USE (cFileName) SHARED ALIAS (cAlias) NEW
ENDIF
ENDIF
IF !NETERR() .AND. USED()
RETURN .T.
ENDIF
INKEY(.5)
nWait--
ENDDO
IF cOH <> 1
MsgAlert("The file "+cFileName+" cannot be opened !!!","Be careful")
ENDIF
lRedo := .F.
ENDDO
USE
RETURN .F.
Does anyone have any idea why this problem occurs ?
Thanks a lot in advance.