Hello,
We are trying to know info_dll and info_version with this code:
String plist[] = vensim.get_info(vensim.INFO_DLL) ;
String qlist[] = vensim.get_info(vensim.INFO_VERSION) ;
if(plist.length + qlist.length > 0) {
StringBuffer buf = new StringBuffer("") ;
buf.append("Vensim ") ;
for(int j=0;j<plist.length;j++) {
buf.append(plist[j]) ;
}
buf.append(" DLL Version ") ;
for(int j=0;j<qlist.length;j++) {
buf.append(qlist[j]) ;
}
System.out.println(buf);
}
This returns: Vensim DLL Version , why does not it returns versions?
Thank you so much
INFO_DLL and INFO_VERSION
-
- Senior Member
- Posts: 1107
- Joined: Wed Mar 12, 2003 2:46 pm
-
- Senior Member
- Posts: 1107
- Joined: Wed Mar 12, 2003 2:46 pm