Search found 13 matches

by r7mk4
Mon Mar 28, 2022 7:50 pm
Forum: General Discussion
Topic: [Solved] [SQLite] DatabaseUpdate ultra slow
Replies: 3
Views: 1779

Re: [Solved] [SQLite] DatabaseUpdate ultra slow

Ten years later....

Same thing here!
You solved it!

Thank's a lot :lol:
by r7mk4
Thu Nov 11, 2021 8:34 am
Forum: General Discussion
Topic: ESCAPI problems
Replies: 19
Views: 14897

Re: ESCAPI problems



I get strange characters for

getCaptureDeviceName(#DEVICE, @name$, 255)

单⁂楖敤敄楶散

any idea how change that?

Cheers


the name will be an ascii or utf8 string, so like this

*name= AllocateMemory(255)
getCaptureDeviceName(#DEVICE,*name, 255)
Debug PeekS(*name,-1,#PB_Ascii)



Wow!
Quite ...
by r7mk4
Wed Nov 10, 2021 10:56 pm
Forum: General Discussion
Topic: ESCAPI problems
Replies: 19
Views: 14897

Re: ESCAPI problems

I get strange characters for

getCaptureDeviceName(#DEVICE, @name$, 255)

单⁂楖敤敄楶散

any idea how change that?

Cheers
by r7mk4
Sun Sep 08, 2013 3:48 pm
Forum: Coding Questions
Topic: get live film from a camera by ported usb or other
Replies: 60
Views: 28909

Re: get live film from a camera by ported usb or other

Anyone has done the update of the escapi files to Purebasic 5.1 and higher...
I get the error: Native types can't be used with pointers

BTW: Has anyone recorded a movie file (not only pictures) with escapi?


Cheers
by r7mk4
Sun Mar 31, 2013 1:24 pm
Forum: Coding Questions
Topic: UseJCALG1Packer() - UncompressMemory to zip converter??
Replies: 1
Views: 889

UseJCALG1Packer() - UncompressMemory to zip converter??

Hi,

everytime when there are some bank holidays I try to code a little bit. So sorry for my stupid question here,but I'm not doing that every day.
I want to convert an old program from PB 5.0 to PB 5.11 but the JCALG1 support is only for "unpacking".
Well, that would be okay, but it seems that I ...
by r7mk4
Sun Mar 31, 2013 10:56 am
Forum: Coding Questions
Topic: [5.10] Native types can't be used with pointers
Replies: 54
Views: 14030

Re: [5.10] Native types can't be used with pointers

Sorry for reopening this thread, but I have two files using with XIncludeFile:

XIncludeFile "escapi.pbi"

;/* Extremely Simple Capture API */

Structure SimpleCapParams
;*mTargetBuf.l ; Must be at least mWidth * mHeight * SizeOf(int) of size!
*mTargetBuf.l ; Must be at least mWidth * mHeight ...
by r7mk4
Fri Jan 04, 2013 1:14 am
Forum: Coding Questions
Topic: Fillarea and alpha channel
Replies: 1
Views: 1127

Fillarea and alpha channel

Hi,

I'm getting really messed up... :?

I found the code to transform an image with new coordinates for the corners.
Actually the picture is transformed, showed on the windows, grabed into a new image and then I want to make the outline area (grey) transparent.
I tried to use the FillArea-Command ...
by r7mk4
Mon Dec 31, 2012 12:59 pm
Forum: Coding Questions
Topic: Automated creating executables with parameters (licencing)
Replies: 6
Views: 1641

Re: Automated creating executables with parameters (licencin

Thanks helpy and Josh!

Very usefull!
by r7mk4
Mon Dec 10, 2012 5:38 pm
Forum: 3D Programming
Topic: How do you save your 3D models?
Replies: 7
Views: 3028

Re: How do you save your 3D models?


Extract

Quote:
The best thing to do would to simply put stuff in a ZIP archive with a different extension. That'll keep out most of the newbies. Even Crysis did this, they just used a renamed ZIP archive.



That's funny. This is the way I did, but I thought it's a really bad idea.
I thought ...
by r7mk4
Mon Dec 10, 2012 2:32 pm
Forum: 3D Programming
Topic: How do you save your 3D models?
Replies: 7
Views: 3028

How do you save your 3D models?

Hi,

It's really easy with

Add3DArchive("Data/Packs/Desert.zip", #PB_3DArchive_Zip)
Add3DArchive("Data/BIN", #PB_3DArchive_FileSystem)

to access to mesh-files etc.

But how to restrict the access to the costumers who use the distributed software to access to the raw model data?
It's quite easy ...
by r7mk4
Sun Oct 21, 2012 11:57 am
Forum: Coding Questions
Topic: get live film from a camera by ported usb or other
Replies: 60
Views: 28909

Re: get live film from a camera by ported usb or other

chris319 wrote:10/9/12: Source code updated with faster pixel plotting.
Thanks a lot!!! Great work. :!:
by r7mk4
Mon Sep 05, 2011 2:45 pm
Forum: Tricks 'n' Tips
Topic: SerialPort Demo (PB4.5)
Replies: 14
Views: 16801

Re: SerialPort Demo (PB4.5)

Really great work :!: :!:

Is it possible to get the text from the comport

Image

Uploaded with ImageShack.us

In this case "HUWAI Mobile Connect - 3G PC UI Interface"

Thanks in advance
by r7mk4
Tue Aug 02, 2005 2:40 pm
Forum: Coding Questions
Topic: creating and displaying a isobar sprite of a data array
Replies: 0
Views: 757

creating and displaying a isobar sprite of a data array

Hi,

my first topic, so don't be too cruel to me if I'am asking trash!!!!

I'm recieving data from a controller via RS232.
The controller sends me temperature data from a sensor array.
The sensor array consists of 16x16 sensors.

At this time I display each sensor data with a coloured box, what I ...