Search found 4 matches

by computermouth
Monday 28th May 2018 7:10pm
Forum: General
Topic: Loading an Image/Picture from memory
Replies: 3
Views: 5762

Re: Loading an Image/Picture from memory

Base64 because I want it to save all contents of the layered image out to a human-readable file. Switching from b64 to bytes is a function call away, so if it's easier to think about, I suppose I should have posed the question like: I have read in a PNG as a string of bytes, and I am looking for a w...
by computermouth
Monday 28th May 2018 5:26am
Forum: General
Topic: Loading an Image/Picture from memory
Replies: 3
Views: 5762

Loading an Image/Picture from memory

Hi folks, I'm working on an image/animation editor. My editor needs to be able to import multiple images, stored as separate layers, which are eventually saved out in a custom file format. Currently I have images being loaded in from their location on the filesystem: newLayer.B64Image = Base64$(File...
by computermouth
Saturday 12th May 2018 10:11pm
Forum: General
Topic: ListView.Editable, how does it work?
Replies: 2
Views: 4283

Re: ListView.Editable, how does it work?

Oh, awesome. Thanks cogier!

That's certainly much less to upkeep over the modal dialog change I had been writing.
by computermouth
Wednesday 9th May 2018 5:39am
Forum: General
Topic: ListView.Editable, how does it work?
Replies: 2
Views: 4283

ListView.Editable, how does it work?

Hi folks, I have a ListView, on which the Editable property is set to True. I had read this old forum post: http://gambas.8142.n7.nabble.com/ColumnView-Editable-True-td51747.html#a51776 Granted it's ColumnView, but I had hoped it would function similarly. I was hoping that I would be able to double-...