Mari Belajar ...!
Mari Belajar ...!

Visual FoxPro adalah bahasa pemrograman berorientasi objek dan prosedural dari Microsoft. Awalnya bahasa pemrograman ini dikenal dengan nama FoxBASE yang diluncurkan oleh Fox Software pada awal 1984. Fox Technologies kemudian bergabung dengan Microsoft pada 1992 sehingga di depan nama FoxBASE ditambahkan awalan "Visual".

Versi terakhir FoxPro (9.0) dapat berjalan pada sistem operasi Mac OS, DOS, Windows, dan Unix. Visual FoxPro 3.0, versi "Visual" pertama, akhirnya tersingkir karena hanya mendukung Mac OS dan Windows, dan versi berikutnya hanya mendukung Windows saja. Versi terkini Visual FoxPro adalah berdasarkan teknologi COM dan Microsoft telah menyatakan bahawa mereka tidak berniat untuk mencipta versi Microsoft .NET menurut (http://id.wikipedia.org/wiki/Visual_FoxPro)

Tutorial Microsof Visual FoxPro Dasar, menengah, mahir bisa di download disini, untuk memper luas pengetahuan tentang membuat program membuat program menggunakan microsoft visual foxpro anda bisa mendownload tutorial membuat stopwatch, tutorial membuat array, tutorial membuat check menu, tutorial membuat check dalam tabel, tutorial membuat menampilkan kalender, tutorial mewarnai tabel, tutorial membuat password form, tutorial membuat transparan form, tutorial membuat transparan form, tutorial membuat membuat menu program, tutorial membuat membuar database, tutorial membuat tabel, membuat virus, tutorial membuat, tutorial tentang regedit/registri, dan banyak jagi tutorial lainnya yang bisa membuat kita menjadi lebih mahir dalam membuat program menggunakan microsoft visual foxpro.

Check Menu



s.Solution.init
-------------------------------------------------------------------------
#define POINT_LOC "."
#define SEP_LOC ","
#define DATE_LOC "AMERICAN"
#define CURRENCY_LOC "$"
*----------------------< c_solutions >-----------------------*
* This class is added to all forms in the Solutions
* sample suite.
*---------------------------------------------------------*
LOCAL lcDir, lcSamplePaths, lcHome

IF ATC("SOLUTIONS.",PROG(PROG(-1)-1))#0
THIS.lCalledBySolution = .T.
ENDIF

THISFORM.ShowTips = .T.
THISFORM.AutoCenter = This.CenterForm
IF THIS.FixedFormBorder
THISFORM.BorderStyle = 2 && Fixed Dialog
ENDIF

THIS.cOldPath = SET("PATH")
SET PATH TO
lcDir= THIS.GetDirectory() &&directory of sample

IF !EMPTY(HOME(2))
lcHome = HOME(2)
ELSE
lcHome = HOME()+"Samples\"
ENDIF

THIS.AddToPath(lcHome+"CLASSES")
THIS.AddToPath(lcHome+"SOLUTION")
THIS.AddToPath(lcDir)

THIS.cDirectory = SET("DEFAULT") + CURDIR()
IF THIS.AutoSETDEFAULT
SET DEFAULT TO (lcDir)
ENDIF

* Save old settings to be restored.
THIS.cPoint = SET("POINT")
THIS.cSep = SET("SEPARATOR")
THIS.cDate = SET("DATE")
THIS.cCurrency = SET("CURRENCY", 1)
THIS.cTalk = SET("TALK")
THIS.cDeleted = SET("DELETED")

SET POINT TO POINT_LOC
SET SEPARATOR TO SEP_LOC
SET DATE TO DATE_LOC
SET CURRENCY TO CURRENCY_LOC
SET DELETED ON && ignore records marked for deletion
SET TALK OFF
-------------------------------------------------------------------------
Download Program klik disini