Re: Multitasking 2 Problem
- Posted by don cole <doncole at pacbell.net> Oct 20, 2005
- 611 views
Vincent wrote: > > > > Hi Don, > > You have to use the batch file: lw.bat. Just clicking on the lw.ex isnt going > to work because the file type is associated with ex.exe, which does not have > the multitasking API. > > In execute.e, you might want to change the constant TASK_ID_MAX from 1e14 to > 9e15 for 90x more IDs to use before recycling occurs and routines start back > to 1. You would think it would be ok to use the maximum atom value: 1e300, but > number accuracy in Euphoria is only good to about 15 digits, accuracy. > Obviously > accuracy is important for keeping track of ID numbers. > > > Regards, > Vincent Thank you Vince, I wrote a program with Win32lib that: Opens a window with a FIND EditText. OnOpen loads in six lengthy data bases. (a lot of time) SetHandle EditText to routine_id("search") I would like the EditText to start taking entries and searching before all the data bases are loaded. I only need the first three data basses to start searching. To make this a little clearer the databases are movies. OpenReg, OpenAdult, OpenDvd, SoldReg, SoldAdult, SoldDvd. I would normally start out looking for open movies first then sold movies if nothing found in open. Would this multitask make this go faster or at least appear to go faster? Don Cole SF ope