Search found 188 matches

by Otrebor
Thu Mar 28, 2024 10:40 pm
Forum: Announcement
Topic: PureBasic 6.10 LTS is out !
Replies: 292
Views: 36501

Re: PureBasic 6.10 LTS is out !

Thank you!
by Otrebor
Sat Mar 23, 2024 4:53 pm
Forum: Announcement
Topic: PureBasic 6.10 LTS is out !
Replies: 292
Views: 36501

Re: PureBasic 6.10 beta 9 is out !

PB 6.0 x86 C optimized : 3270
PB 6.1 B9 x86 C optimized : 3420

My emulator at full speed with PB 6.0 runs about +20 frames/sec compared with PB 6.1
by Otrebor
Sat Mar 23, 2024 12:04 am
Forum: Coding Questions
Topic: [6.10 b1] OpenLibrary() problem
Replies: 11
Views: 1808

Re: [6.10 b1] OpenLibrary() problem

Hi
Just to report that with beta 9 OpenLibrary() works again with wd1793.dll (both files).
The initial problem with beta 1 was solved.
by Otrebor
Thu Mar 07, 2024 5:18 pm
Forum: Coding Questions
Topic: ReDim : Array not initialized
Replies: 5
Views: 159

Re: ReDim : Array not initialized

Thanks, NicTheQuick and STARGÅTE for the explanation!
by Otrebor
Thu Mar 07, 2024 4:36 pm
Forum: Coding Questions
Topic: ReDim : Array not initialized
Replies: 5
Views: 159

Re: ReDim : Array not initialized

Thanks, RASHAD!
by Otrebor
Thu Mar 07, 2024 4:03 pm
Forum: Coding Questions
Topic: ReDim : Array not initialized
Replies: 5
Views: 159

ReDim : Array not initialized

Hi I do not know if this is related with my PC or... Dim frameInValues.u (250000,0) ReDim frameInValues.u (250000,1949) ReDim frameInValues.u (250000,1950);----> Variable Viewer: The Array is not initialized Dim frameInValues.u (250000,0) ReDim frameInValues.u (250000,10) ReDim frameInValues.u (2500...
by Otrebor
Tue Feb 13, 2024 9:15 pm
Forum: Coding Questions
Topic: Converting array C# to PB
Replies: 8
Views: 403

Re: Converting array C# to PB

HI Sorry, but i can not follow how ReDim can be used in my case. Some values will be lost in this example: _numberOfInReads=3 Dim _frameInValues.a(500, _numberOfInReads) _frameInValues=0 _frameInValues.A(_frameInValues,0)=255 _frameInValues.A(_frameInValues,1)=3 _frameInValues.A(_frameInValues,2)=12...
by Otrebor
Mon Feb 12, 2024 7:39 pm
Forum: Coding Questions
Topic: Converting array C# to PB
Replies: 8
Views: 403

Re: Converting array C# to PB

At the beginning of C# code it is defined with 2 elements: private byte[][] _frameInValues; While debugging i see that the range of first element is from 0 to 65535. The range of second element is from 0 to 255, but not constant. The second element is defined before loop. But with new interaction it...
by Otrebor
Mon Feb 12, 2024 4:22 pm
Forum: Coding Questions
Topic: Converting array C# to PB
Replies: 8
Views: 403

Converting array C# to PB

Hi I'm having difficulty adapting to PureBasic. This array: _frameInValues = new byte[_numberOfFrames][]; _numberOfFrames is defined at the beginning and not change, but the second element is variable. _frameInValues[i] = new byte[_numberOfInReads[i]]; for (int j = 0; j < _numberOfInReads[i]; j++) {...
by Otrebor
Sat Jan 20, 2024 9:14 pm
Forum: Coding Questions
Topic: [6.10 b1] OpenLibrary() problem
Replies: 11
Views: 1808

Re: [6.10 b1] OpenLibrary() problem

HI
The dll that was using is 41kb. After a search i found another with 64kb (link bellow). I don't know which one is older. Most important, works with PB 6.1!
https://drive.google.com/file/d/1qxgUa ... p=sharing
Well, this solve the problem.
Thank you!
by Otrebor
Tue Jan 16, 2024 3:06 pm
Forum: Coding Questions
Topic: [6.10 b1] OpenLibrary() problem
Replies: 11
Views: 1808

Re: [6.10 b1] OpenLibrary() problem

Yes. I uploaded the file to Google Drive. Thanks!

https://drive.google.com/file/d/17ujZX ... p=sharing
by Otrebor
Sat Dec 23, 2023 5:34 pm
Forum: Coding Questions
Topic: [6.10 b1] OpenLibrary() problem
Replies: 11
Views: 1808

[6.10 b1] OpenLibrary() problem

Using Win10 Pro
PureBasic 6.10 b1 - x86

OpenLibrary() fail with wd1793.dll (32 bit dll).
Works with version 6.0x.


// Moved from "Bugs - Windows" to "Coding Questions" (Kiffi)
by Otrebor
Sat Dec 23, 2023 5:20 pm
Forum: Announcement
Topic: PureBasic 6.10 LTS is out !
Replies: 292
Views: 36501

Re: PureBasic 6.10 beta 1 - Xmas Release - is out !

Thanks PureBasic team!
by Otrebor
Tue Dec 12, 2023 1:55 am
Forum: Applications - Feedback and Discussion
Topic: IconEditor
Replies: 7
Views: 1846

Re: IconEditor

Nice!
by Otrebor
Sat Oct 28, 2023 11:29 am
Forum: Coding Questions
Topic: Reconstructing original frames from interpolated movie
Replies: 28
Views: 2536

Re: Reconstructing original frames from interpolated movie

OT: Almost 20 years ago, i used to convert some of my super 8mm films. My first attempt: Projecting and filming direct from screen, which produced poor result. After i sent the reels for a guy that had an equipment which digitalized frame by frame (maybe what you did?), but i never saw the frames se...