-
Re: LINQPadChart does not contain a defintion for 'ToWindowsChart'
Try the latest beta - it should now reference the LINQPad.Runtime.UI assembly.1 · -
Re: Data grid cell 10k maximum character length
Possibly, if there's enough demand. It's not just a question of increasing a number, however. It would require patching a new editor into to the data grid (and possibly even using a new grid).1 · -
Re: Data grid cell 10k maximum character length
It was increased to 60,000 in LINQPad 7 in line with performance improvements. LINQPad 6 still has the 10k limit.1 · -
Re: async Task Main() + GUI
If you need a UI, you must stick with STA threads. Keep in mind that your choice of STA/MTA for queries applies only to the main query thread. Worker threads and pooled threads will still be MTA. In …1 · -
Re: LINQPad raw html script works in LINQPad 5 but not working in LINQPad 7
You're trying to dump a complete HTML document inside another HTML document. Have you considered an iFrame? var iframe = new LINQPad.Controls.Control ("iframe");iframe.Styles ["width&q…2 ·