Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
I can´t comment and uncomment ok !
Message
From
29/05/2003 12:52:02
 
 
To
29/05/2003 12:33:18
General information
Forum:
Visual FoxPro
Category:
Installation, Setup and Configuration
Miscellaneous
Thread ID:
00793839
Message ID:
00794014
Views:
13
Like Gunnar, I get the same problem using VFP6 SP5. So obviously reinstalling is NOT going to help.

However, it works properly on VFP8.

Solution: upgrade to VFP8 < s > or use your hands.


>I try with -A , but still don´t work .
>
>See , for example i have this code commented
>
>
>
>*!*	IF Empty(FactDoc.NomeClient)
>
>*!*		cMessageTitle = 'Atenção'
>*!*		cMessageText = "Preencha o nome do cliente !"
>*!*			
>*!*		nDialogType = 0 + 16 + 0
>
>*!*		nAnswer = MESSAGEBOX(cMessageText, nDialogType, cMessageTitle)
>*!*			
>*!*		ThisForm.PageFrame1.Page1.TxNomCli.SetFocus
>
>*!*		RETURN
>*!*			
>*!*	ENDIF
>
>
>
>if i uncomment , happen this :
>
>
>
>IF Empty(FactDoc.NomeClient)
>
>*!*		cMessageTitle = 'Atenção'
>	cMessageText = "Preencha o nome do cliente !"
>		
>	nDialogType = 0 + 16 + 0
>
>*!*		nAnswer = MESSAGEBOX(cMessageText, nDialogType, cMessageTitle)
>		
>	ThisForm.PageFrame1.Page1.TxNomCli.SetFocus
>
>*!*		RETURN
>		
>ENDIF
>
>
>
>But the right is :
>
>
>
>IF Empty(FactDoc.NomeClient)
>
>        cMessageTitle = 'Atenção'
>	cMessageText = "Preencha o nome do cliente !"
>		
>	nDialogType = 0 + 16 + 0
>
>        nAnswer = MESSAGEBOX(cMessageText, nDialogType, cMessageTitle)
>		
>	ThisForm.PageFrame1.Page1.TxNomCli.SetFocus
>
>        RETURN
>		
>ENDIF
>
>
>
>
>Thanks
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform