Search found 115 matches

by T4r4ntul4
Sun May 12, 2024 1:47 pm
Forum: Feature Requests and Wishlists
Topic: In PdfVectorOutput: have NewVectorPage(842, 595) for landscape and other custom page sizes
Replies: 1
Views: 578

In PdfVectorOutput: have NewVectorPage(842, 595) for landscape and other custom page sizes

The new PdfVectorOutput() opens alot of possibilities.

It would be very handy to have NewVectorPage(842, 595) (with the X and Y parameters) for specifying custom sizes for new pages in a PDF.

So that you can mix portrait and landscape pages (and other sizes) together in the same PDF.
by T4r4ntul4
Sun Mar 10, 2024 5:41 pm
Forum: Coding Questions
Topic: CreateImage() for using in VectorSourceImage() doesnt work
Replies: 2
Views: 452

CreateImage() for using in VectorSourceImage() doesnt work

I fail to understand why this isnt working:

I make a CreateImage() in procedure: MaakPolygonTexturesInAlleKleuren(), in StartVectorDrawing() i try to use that image in VectorSourceImage()
but nothing is there. if i load a image (see comments in code) then it works perfectly.

What do i miss here ...
by T4r4ntul4
Sun Mar 10, 2024 11:33 am
Forum: Coding Questions
Topic: How to read a point() from catchimage (from datasection) in startdrawing?
Replies: 3
Views: 426

How to read a point() from catchimage (from datasection) in startdrawing?

I probably miss something crucial here, but i cant see what. Iam trying now for hours, with no progress.

I make a image: #test_image1 and try to draw a image from datasection in it. Then i try to debug the color from a chosen point, for some reason i dont understand, gives it 0 back. While the ...
by T4r4ntul4
Thu Oct 08, 2020 9:04 pm
Forum: General Discussion
Topic: Which BASICs have been you using in your life?
Replies: 61
Views: 29541

Re: Which BASICs have been you using in your life?

QBasic
Visual Basic 6.0
DarkBasic Pro
NuclearBasic
B4A (Basic for Android)
AGK (AppGameKit)
PureBasic
SpiderBasic
by T4r4ntul4
Wed May 20, 2020 12:28 pm
Forum: 3D Programming
Topic: Is PB still actively supporting Ogre?
Replies: 11
Views: 15529

Re: Is PB still actively supporting Ogre?

And a few days later Version 2.2.1

https://www.ogre3d.org/2020/04/30/ogre- ... s-released

It would be really nice (understatement) to have all those new features in PureBasic.
by T4r4ntul4
Wed May 20, 2020 12:19 pm
Forum: 3D Programming
Topic: Problem with TransformMesh using Physics
Replies: 9
Views: 9578

Re: Problem with TransformMesh using Physics

I want to share my 2 cents here, and maybe iam toally wrong:

I dont think theres a bug at all, what i see is that youre the first time rotate the entity, and the second time only the mesh.
With both times you use the command: UpdateMeshBoundingBox, but thats doing nothing, even with the first time ...
by T4r4ntul4
Wed Nov 06, 2019 11:55 am
Forum: Announcement
Topic: PurePDF Version 2.0
Replies: 473
Views: 281594

Re: PurePDF Version 2.0

Hi all,

What is the future of PurePDF? i wanted to update my software with latest version of PurePDF but the website is down?
http://www.purebasicpower.de/downloads/PurePDF/Index.html

Is there an updated version somewhere what works with the latest PB, or is there a better alternative?

Any ...
by T4r4ntul4
Sat Jul 06, 2019 12:00 pm
Forum: Coding Questions
Topic: How to proper organize 28K lines of code?
Replies: 2
Views: 1240

How to proper organize 28K lines of code?

Hey all,

So i made administration software with PB with at least 28.000 code lines. I did make new features/bugfixes to it the last 3 years, but its getting harder everytime when i maintenance the code.
Now my plan is to make a version 2.0. To fix all my mistakes i did with version 1.

i already ...
by T4r4ntul4
Wed Jan 02, 2019 12:09 am
Forum: Coding Questions
Topic: How to send a string to online *.php?test=SomeString ?
Replies: 2
Views: 855

Re: How to send a string to online *.php?test=SomeString ?

That works, i just didnt think to need that command because i dont need to receive anything... oh well.
Its working now, Thanks!
by T4r4ntul4
Tue Jan 01, 2019 11:47 pm
Forum: Coding Questions
Topic: How to send a string to online *.php?test=SomeString ?
Replies: 2
Views: 855

How to send a string to online *.php?test=SomeString ?

Hi all,

Iam trying to solve this now for the past hour or so, but for some reason i cant get it to work:

Iam trying simply to send some string to: for example: http://www.yourdomain.nl/some/someother/index.php?test=SomeTextHereToSendFromPB

i have a php script to receive the string and save it in ...
by T4r4ntul4
Thu Dec 06, 2018 2:05 pm
Forum: Coding Questions
Topic: How to maximize a child window of a non-PB program?
Replies: 3
Views: 1309

Re: How to maximize a child window of a non-PB program?

Thanks that works, now i try to get the child window up, iam trying something like this:


EnableExplicit

Define Handle

Delay(1000)
Handle = FindWindowEx_("ApplicationFrameWindow", 0, "MAKEINTATOM(0x8000)", "")


If Handle
ShowWindow_(Handle, #SW_MAXIMIZE) ; #SW_MINIMIZE ; #SW_MAXIMIZE
EndIf ...
by T4r4ntul4
Wed Dec 05, 2018 10:42 pm
Forum: Coding Questions
Topic: How to maximize a child window of a non-PB program?
Replies: 3
Views: 1309

How to maximize a child window of a non-PB program?

Hi all,

The program i try to maximize is not from PB, its a program that already started on windows when i execute my software.

How to maximize a child window of that program?

I can however maximize all windows with:
SendMessage_(FindWindow_("Shell_TrayWnd",""), #WM_COMMAND, #MIN_ALL_UNDO, 0 ...
by T4r4ntul4
Wed Dec 05, 2018 3:43 pm
Forum: Coding Questions
Topic: How to send keystroke: 'Windows key + M' to Windows?
Replies: 3
Views: 1021

Re: How to send keystroke: 'Windows key + M' to Windows?

Just tested your snippet in my code and works perfect, thanks!!