Re: [Gambas-user] MP3 Tags

2011-11-20 Thread Johny Provoost
Op 20-11-11 03:15, Boyd, Craig schreef: > id3info is VERY helpful! Thanks everyone for your input/reply! > > Craig > > On 11/19/2011 06:37 PM, Jesus wrote: >> El 20/11/11 01:17, Benoît Minisini escribió: >>> Le 19/11/2011 22:50, Boyd, Craig a écrit : Hello All, I am not new to prog

Re: [Gambas-user] Memory Stream Help

2011-11-20 Thread Randall Morgan
Thanks, I worked out my issue was I was passing a null pointer to the memory function and then calling my external function. The error I kept getting was a type mismatch and did not make sense to me as the docs led me to believe that the Memory steam was a declaration, not a function on an actual p

Re: [Gambas-user] Memory Stream Help

2011-11-20 Thread Jussi Lahtinen
Sorry, hStream = Memory pPointer For Read Jussi On Sun, Nov 20, 2011 at 16:17, Jussi Lahtinen wrote: > I don't have any simple runnable example right now, so I hope this helps: > > Dim pPointer As Pointer > Dim hStream As Stream > Dim iYourData As Integer > Dim ii As Integer > Dim iNumberOfDat

Re: [Gambas-user] Memory Stream Help

2011-11-20 Thread Jussi Lahtinen
I don't have any simple runnable example right now, so I hope this helps: Dim pPointer As Pointer Dim hStream As Stream Dim iYourData As Integer Dim ii As Integer Dim iNumberOfDataPoints As Integer = x Dim itmp As Integer pPointer = Alloc(SizeOf(gb.Integer), iNumberOfDataPoints) ExternalFunction