Work in progress on my table/grid/spreadsheet control. Source & exe attached; run the exe and right-click inside the spreadsheet to see the options, in particular "Plot selection" and "Plot clipboard".
From a programmer's viewpoint, the interface is, ehm, rather
basic - here, four menu items are being added:
tcAddMenu "Show selection", ShowMySelection ; text, name of Proc(args)
tcAddMenu "Plot selection", PlotSelection
tcAddMenu "Plot clipboard", PlotClipboard
tcAddMenu "Show row, col", MySelByRC...
PlotSelection:
StringToArray tcSelection$(), plotarray(), staHasText
GuiRefresh Plot
ret
PlotClipboard:
StringToArray Clip$(), plotarray(), staHasText
GuiRefresh Plot
retI'm afraid you need
a recent MasmBasic installation to run it.