Page 1 of 1

DBGrid?

Posted: Sat Jan 23, 2010 3:46 pm
by Pirr
Prompt as to display the tables (database) in GUI the interface?

Re: DBGrid?

Posted: Sat Jan 23, 2010 5:50 pm
by cormullion
HI there! Not sure what you're asking here. If you're asking " How do I display a grid or table in the newLISP-GS GUI", then it's quite simple. You draw a grid, then put things in each grid cell. Here, I'm adding a text string to each cell:

Code: Select all

(load "/usr/share/newlisp/guiserver.lsp")

(set 'grid-rows 10 'grid-columns 10)

(gs:init)
(gs:frame 'Grid 100 100 900 900 "Grid")
(gs:set-grid-layout 'Grid grid-rows grid-columns 2 2)

(dotimes (row grid-rows)
   (dotimes (column grid-columns)
      (gs:label  (sym (string "label" row column)) (string "R" row " C" column))
      (gs:add-to 'Grid (sym (string "label" row column)))))
      
(gs:set-visible 'Grid true)
(gs:listen)

Re: DBGrid?

Posted: Sun Jan 24, 2010 6:44 am
by Pirr
Excuse for my English, I write through the interpreter.
I need the following: