This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Die Linux-Kompatibilität ist momentan noch in Bearbeitung. | |
Da ich auf meinem PC nur Linux in einer äußerst langsamen VM habe, konnte ich das Programm nur bedingt testen. | |
(Bis zur kompletten ausführung bin ich jedoch immer gescheitert, da die VM schlicht zu langsam ist und firefox sich aufhängt) | |
Folgendes muss auf dem System bereits installiert sein: | |
*mono | |
*libodbc | |
*libsqliteodbc | |
Folgendes muss vorher gemacht werden: | |
*/usr/lib/libodbc.so muss existieren ... ansonsten "ln -s /usr/lib/libodbc.so.1 /usr/lib/libodbc.so" versuchen |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Option Explicit | |
Private Function GetRow(name As String) | |
Select Case name | |
Case "Forester": GetRow = 22: Exit Function | |
Case "WoodCutter": GetRow = 25: Exit Function | |
Case "Sawmill": GetRow = 28: Exit Function | |
Case "Mason": GetRow = 31: Exit Function | |
Case "Fisher": GetRow = 34: Exit Function | |
Case "CoalMine": GetRow = 37: Exit Function | |
Case "CokingPlant": GetRow = 40: Exit Function |
NewerOlder