digitalmars.D.dwt - TableColumn DWT.LEFT causes seg fault
- Barry Denton (8/8) Mar 24 2008 for (int i=0; i<5; i++) {
- Frank Benoit (2/11) Mar 25 2008 Ooops, you encountered the crash-at-tytowers-machine feature.
- Ty Tower (3/16) Mar 25 2008 Whats this about then FrenchieFrank ? Whats it got to do with me
- BCS (4/26) Mar 26 2008 It sounds to me (and I haven't read it in any detail) like he's saying
- Barry Denton (3/12) Mar 27 2008 Correction NONE LEFT & LEAD work
for (int i=0; i<5; i++) { TableColumn column = new TableColumn (table, DWT.NONE);/ /NONE,LEFT,RIGHT.CENTER,LEAD.TRAIL column.setText (titles [i]); } If you use anything but NONE it causes a seg fault Docs say LEFT RIGHT CENTER Addressbook uses NONE which works DWT.d says LEAD and TRAIL also
Mar 24 2008
Barry Denton schrieb:for (int i=0; i<5; i++) { TableColumn column = new TableColumn (table, DWT.NONE);/ /NONE,LEFT,RIGHT.CENTER,LEAD.TRAIL column.setText (titles [i]); } If you use anything but NONE it causes a seg fault Docs say LEFT RIGHT CENTER Addressbook uses NONE which works DWT.d says LEAD and TRAIL alsoOoops, you encountered the crash-at-tytowers-machine feature.
Mar 25 2008
Frank Benoit wrote:Barry Denton schrieb:Whats this about then FrenchieFrank ? Whats it got to do with me Been on the Metho again?for (int i=0; i<5; i++) { TableColumn column = new TableColumn (table, DWT.NONE);/ /NONE,LEFT,RIGHT.CENTER,LEAD.TRAIL column.setText (titles [i]); } If you use anything but NONE it causes a seg fault Docs say LEFT RIGHT CENTER Addressbook uses NONE which works DWT.d says LEAD and TRAIL alsoOoops, you encountered the crash-at-tytowers-machine feature.
Mar 25 2008
Ty Tower wrote:Frank Benoit wrote:It sounds to me (and I haven't read it in any detail) like he's saying someone reproed one of the errors you have been having. But I could be totally off base.Barry Denton schrieb:Whats this about then FrenchieFrank ? Whats it got to do with me Been on the Metho again?for (int i=0; i<5; i++) { TableColumn column = new TableColumn (table, DWT.NONE);/ /NONE,LEFT,RIGHT.CENTER,LEAD.TRAIL column.setText (titles [i]); } If you use anything but NONE it causes a seg fault Docs say LEFT RIGHT CENTER Addressbook uses NONE which works DWT.d says LEAD and TRAIL alsoOoops, you encountered the crash-at-tytowers-machine feature.
Mar 26 2008
Barry Denton Wrote:for (int i=0; i<5; i++) { TableColumn column = new TableColumn (table, DWT.NONE);/ /NONE,LEFT,RIGHT.CENTER,LEAD.TRAIL column.setText (titles [i]); } If you use anything but NONE it causes a seg fault Docs say LEFT RIGHT CENTER Addressbook uses NONE which works DWT.d says LEAD and TRAIL alsoCorrection NONE LEFT & LEAD work RIGHT TRAIL & CENTER do not !
Mar 27 2008