Overview
Examples
Screenshots
Comparisons
Applications
Download
Documentation
Tutorials
Bazaar
Status & Roadmap
FAQ
Authors & License
Forums
Funding Ultimate++
Search on this site
Search in forums












SourceForge.net Logo
Home » U++ Library support » FileSel&FileList, Path » Problem with FileSel called from menu
Re: Problem with FileSel called from menu [message #19780 is a reply to message #19779] Sat, 17 January 2009 10:01 Go to previous message
mirek is currently offline  mirek
Messages: 14267
Registered: November 2005
Ultimate Member
BTW, for parsing texts, you can use CParser:

while (!myfile.IsEof()) {
     String l = myfile.GetLine();
     CParser p(l);
     while(!p.IsEof()) {
        double val;
        if(!p.IsNumber()) {
            PromptOK("Field containing non-valid number found");
            return;
        }
        double val = p.ReadDouble();
        vals.AddTail(val);
        wavelet.Add(val);
        p.Char(',');
     }
}

 
Read Message
Read Message
Read Message
Previous Topic: FileSel and international files problem when getting icon image
Next Topic: FileSel.Type Problem
Goto Forum:
  


Current Time: Mon Aug 25 14:02:04 CEST 2025

Total time taken to generate the page: 0.08990 seconds