More info on Edb problem
- Posted by "Ron Austin" <ronaustin at alltel.net> Oct 19, 2003
- 408 views
It appears I am getting a divide by zero error because bar_max was not initialized. I downloaded the latest edb file and not only can I not creat= e a eusql data base, non of the programs in th eusql demo will work either.= =20 Is this project not far enough along to use? Should I just stick with eds until more progress is made?=0D =0D It also seems that some of the commands are different for eusql. One being= open_db vs db_open. Is there a list available so I know what to change on my code?=0D =0D bar =3D create( ProgressBar, "", progress, 10, 60, 380, 15, 0 )=0D atom bar_max, bar_val=0D global procedure open_progress( sequence task, sequence title, atom max, atom start )=0D bar_max =3D max=0D bar_val =3D start=0D setScrollPos( bar, floor( bar_val / bar_max ) ) -- <=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=0D setText( progress, title )=0D setText( caption, task )=0D openWindow( progress, Modal )=0D end procedure=0D =20