[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Warning message problem.



"Hans J. Johnson" <hjohnson@engineering.uiowa.edu> writes:
> How do I avoid the following error message?
> 
> *** Maxium number of events for view ( 100000 ) exceeded Close the EnvEditor to prevent seeing this message again!
> 
> I have tried the following for reading in 1.5million vectors:  
> 
> .projects[0].environments[0].CloseEdit();
> fstream myfs;
> myfs.open("bintraining.pat",ios::in|ios::binary);
> .projects[0].environments[0].ReadBinary(myfs, .projects[0].environments[0].event_specs[0]);

The EnvEditor is actually the view for the environment object (sorry
about that terminology there..).  start with:

.environments[0].views.Reset();

and your error message worries should be over (and it should load
faster too I hope).

				- Randy