Re: EditText Bug?
- Posted by DerekParnell (admin) Feb 14, 2009
- 1290 views
AndyDrummond said...
Win32LibVersionEx() seems to have disappeared ...
Yes it has. I got rid of it as it was redundant and should never have been there. All it did was add a 4th 'revision' identifier to the three already there, and it did it in an inefficient manner.
In the IDE file "includes\IDE_about.ew", replace line 108 from
setText(LText8,sprintf(MsgNos[10][3] ,{Win32LibVersionEx[1],Win32LibVersionEx[2],Win32LibVersionEx[3],Win32LibVersionEx[4]} ) & " " & Win32LibVersionEx[5])
to
setText(LText8,sprintf(MsgNos[10][3] ,{Win32LibVersion[1],Win32LibVersion[2],Win32LibVersion[3],""} ) & " " & Win32LibVersion[4])
I'll get on to updating the IDE code, once I convert the repository over to SVN too.