Search found 2 matches

by AnSt
Thu Nov 29, 2018 3:41 am
Forum: Zee Language
Topic: Reading from a .csv and .xls file via ODBC
Replies: 2
Views: 21054

Reading from a .csv and .xls file via ODBC

Example: class ReadFromFile : Test Main() Database csv csv.Connect("Driver="{Microsoft Text Driver (*.txt; *.csv)};Dbq=C:\Temp\;") csv.Execute("select * from Report.csv") List<List<Object>> readLines List<Object> readLine Boolean end = false while(!end) readLine = {} csv.Fet...
by AnSt
Wed Sep 19, 2018 1:32 am
Forum: Zee Language
Topic: Tab states
Replies: 0
Views: 33195

Tab states

According to Zeenyx support you can not tell whether a tab is enabled/present or not because there is no attribute available to tell that. The concept of enabled vs. disabled only exists for application controls. As a workaround I click on every tab and check the IsSelected attribute. So I can deter...