
techfreak
New User
Apr 15, 2005, 6:10 AM
Post #1 of 1
(962 views)
|
Hi... im developing an PDA application using .Net and Crossfire ( not SmartDevice App ) which basically extracts a data from a text file (delimeted). I have tried using a Split Function but it seems like Crossfire can't recognize it. For more details, here's an example: sDelimeter="," sLineIn = oFileText.ReadLine arrData = Split(sLineIn, sDelimeter) >> Error occurs here. sCode = arrData(0) sDesc = arrData(1) Error : "CROSSFIRE - Use of unsupported member 'string[] Microsoft.VisualBasic.Strings::Split(string, string, int32, valuetype Microsoft.VisualBasic.CompareMethod)'." The Split Function actually works if you just use .Net Application but if apply on Crossfire App it doesn't. Any way to go around this issue in Crossfire? Thanks alot!
|