Sample DataWindow

 

<< Click to Display Table of Contents >>

Navigation:  Samples >

 

Sample DataWindow

 

Previous pageReturn to chapter overviewNext page

 

Purpose

 

 

Datawindow sample

 

 

 

Description

 

 

This sample shows how you can use the BtDDFServer classes in combination with a datawindow

 

 

 

Example(s)

 

 

METHOD Start CLASS App

         LOCAL oDw AS DataWIndow

         LOCAL oShell AS Shellwindow

         LOCAL oSrv                AS BtDDFServer

         LOCAL cPath AS STRING

         cpath := "D:"

         Bt_Path(cPath)

         oShell := ShellWIndowSELF

         oShell:Show()

         oDw                := DataWindowoShell

         oSrv := BtDDFServercPath, "Student",cPath, BFM_NORMAL

   oDw:ViewTable()

         oDw:Show()

         SELF:Exec()