There follows the code i wrote in VFP:
SET PROCEDURE TO c:\procloud\lanweb\myprog additive
ofo = CREATEOBJECT("oform")
ofo.show()
READ events
***********************
Define Class OFORM As myxfrm
Width = 400
Height = 400
Add Object label1 As myxlbl With ;
FontBold = .T., ;
FontName = "Verdana", ;
FontSize = 10, ;
Height = 17, ;
Left = 10, ;
Top = 0, ;
Width = 170, ;
Name = "eti1"
Add Object command1 As myxcmd With ;
FontBold = .F., ;
FontName = "Verdana", ;
FontSize = 10, ;
Caption = "Clients", ;
Height = 17, ;
Left = 0, ;
Top = 150, ;
Width = 100, ;
Name = "cmdok"
Add Object command2 As myxcmd With ;
FontBold = .F., ;
FontName = "Verdana", ;
FontSize = 10, ;
Caption = "Chiudi", ;
Height = 17, ;
Left = 105, ;
Top = 150, ;
Width = 100, ;
Name = "cmdend"
Procedure cmdok.Click()
Thisform.eti1.Caption = "PIppo"
Thisform.eti1.Visible = !Thisform.eti1.Visible
Endif
Endproc
Procedure cmdend.Click()
Thisform.Release()
Quit
Endif
Endproc
Enddefine
In foxincloud adaption assistant 1.26 (Trial version)
Step 1) analyze and step 2) adapt dont give errors , but on step 3) publish i get the error i wrote before
Thanks
Giorgio