Search found 318 matches
- Wed May 21, 2025 9:06 pm
- Forum: Coding Questions
- Topic: Adding text and signature on down of PDF document [Resolved]
- Replies: 11
- Views: 659
Re: Adding text and signature on down of PDF document [Resolved]
On a side note, with LibreOffice sdraw (which is free) you can open PDF, add text, image, etc.... and export as PDF
- Mon Apr 28, 2025 9:51 am
- Forum: Coding Questions
- Topic: IMA in firebase example
- Replies: 2
- Views: 986
Re: IMA in firebase example
Yes I'll look there, Normally it's 30 day free trial
Thanks anyway
Thanks anyway
- Sat Apr 26, 2025 8:33 pm
- Forum: Coding Questions
- Topic: IMA in firebase example
- Replies: 2
- Views: 986
IMA in firebase example
Hello:
I've recently discovered that there's a Firebase library for Pb made by Chilkat, module here ( https://chilkatdownload.com/10.1.3/chilkatpb.zip ) and I tried the GET example, from https://www.example-code.com/purebasic/fireBase.asp
IncludeFile "CkStringBuilder.pb"
IncludeFile "CkAuthGoogle ...
I've recently discovered that there's a Firebase library for Pb made by Chilkat, module here ( https://chilkatdownload.com/10.1.3/chilkatpb.zip ) and I tried the GET example, from https://www.example-code.com/purebasic/fireBase.asp
IncludeFile "CkStringBuilder.pb"
IncludeFile "CkAuthGoogle ...
- Mon Mar 24, 2025 7:17 am
- Forum: Coding Questions
- Topic: Serial Communication locking up.
- Replies: 11
- Views: 1170
Re: Serial Communication locking up.
Working here, except that WriteSerialPortString take 2-3 sec each time, so after 30sec it exits normally. (I've added debug x).
I've used a virtual serial port.
I've used a virtual serial port.
- Fri Feb 14, 2025 5:23 pm
- Forum: Announcement
- Topic: PureBasic 6.20 is out !
- Replies: 148
- Views: 83156
Re: PureBasic 6.20 is out !
Many thanks Fred and Team!!
- Sat Feb 01, 2025 7:48 am
- Forum: Coding Questions
- Topic: Simulate button gadget is pressed
- Replies: 5
- Views: 1526
Re: Simulate button gadget is pressed
PB_Gadget_SendGadgetCommand still working here:
Import ""
PB_Gadget_SendGadgetCommand(hWnd, EventType)
EndImport
Procedure SetClick()
PB_Gadget_SendGadgetCommand(GadgetID(1), #PB_EventType_LeftClick)
EndProcedure
Procedure GotClick()
Debug "gotclick"
EndProcedure
If OpenWindow(0, 0, 0 ...
Import ""
PB_Gadget_SendGadgetCommand(hWnd, EventType)
EndImport
Procedure SetClick()
PB_Gadget_SendGadgetCommand(GadgetID(1), #PB_EventType_LeftClick)
EndProcedure
Procedure GotClick()
Debug "gotclick"
EndProcedure
If OpenWindow(0, 0, 0 ...
- Wed Jan 22, 2025 12:20 pm
- Forum: Coding Questions
- Topic: Newbie Question with MySQL
- Replies: 6
- Views: 1324
Re: Newbie Question with MySQL
I deleted my account
- Wed Jan 22, 2025 12:07 pm
- Forum: Coding Questions
- Topic: Newbie Question with MySQL
- Replies: 6
- Views: 1324
Re: Newbie Question with MySQL
Aha Thanks for the info Normeus
- Wed Jan 22, 2025 11:03 am
- Forum: Coding Questions
- Topic: Newbie Question with MySQL
- Replies: 6
- Views: 1324
Re: Newbie Question with MySQL
I tried and got:
Connection failed: Unknown MySQL server host 'morisaab.42web.io/sql205.infinityfree.com' (11001)
- Wed Jan 22, 2025 9:29 am
- Forum: Coding Questions
- Topic: Newbie Question with MySQL
- Replies: 6
- Views: 1324
Newbie Question with MySQL
Hello:
I've opened an account with "https://www.infinityfree.com/", and I created a MySQL database (just for test), then with phpMyAdmin I created a table
CREATE TABLE SensorData (
id INT(6) UNSIGNED AUTO_INCREMENT PRIMARY KEY,
sensor VARCHAR(30) NOT NULL,
location VARCHAR(30) NOT NULL ...
I've opened an account with "https://www.infinityfree.com/", and I created a MySQL database (just for test), then with phpMyAdmin I created a table
CREATE TABLE SensorData (
id INT(6) UNSIGNED AUTO_INCREMENT PRIMARY KEY,
sensor VARCHAR(30) NOT NULL,
location VARCHAR(30) NOT NULL ...
- Fri Dec 20, 2024 10:38 pm
- Forum: Coding Questions
- Topic: Replace text in .pdf file?
- Replies: 15
- Views: 4028
Re: Replace text in .pdf file?
May be this isn't what you search exactly, but you can fill fields in pdf programmatically:
using cpdf https://community.coherentpdf.com/ , which is free for personnal use, you can add comments programmatically.
with the help of Infratec, I tried the following and it works:
CompilerIf #PB_Compiler ...
using cpdf https://community.coherentpdf.com/ , which is free for personnal use, you can add comments programmatically.
with the help of Infratec, I tried the following and it works:
CompilerIf #PB_Compiler ...
- Fri Dec 20, 2024 10:13 pm
- Forum: Coding Questions
- Topic: background of panel gadget
- Replies: 0
- Views: 7348
background of panel gadget
Hello:
In the following snippet, if, in compiler options, I checked "Enable DPI aware...." or "Enable modern theme support....", the background of the panel gadget becomes white, otherwise (both unchecked) it's gray, which I prefer.
is this normal?
using PB6.20b1, W10
EnableExplicit
Define Event.i ...
In the following snippet, if, in compiler options, I checked "Enable DPI aware...." or "Enable modern theme support....", the background of the panel gadget becomes white, otherwise (both unchecked) it's gray, which I prefer.
is this normal?
using PB6.20b1, W10
EnableExplicit
Define Event.i ...
- Mon Dec 16, 2024 9:39 pm
- Forum: Tricks 'n' Tips
- Topic: PureLibrary Creator - PB 6.20
- Replies: 48
- Views: 20419
Re: Lib - PB 6.20
Trying your tool right now (creating Createlib.exe then testing it with your example), I got:
Error: Linker
Error at line 50: Can't create the library file:
c:\Program Files\PureBasic\purelibrairies/userlibrairies/Ext2D
with both \ and /
what it could be?
edit:
Trying also Fred example in a ...
Error: Linker
Error at line 50: Can't create the library file:
c:\Program Files\PureBasic\purelibrairies/userlibrairies/Ext2D
with both \ and /
what it could be?
edit:
Trying also Fred example in a ...
- Tue Dec 10, 2024 5:23 pm
- Forum: Coding Questions
- Topic: compiler hang in backend-C only
- Replies: 4
- Views: 852
Re: compiler hang in backend-C only
Thanks all, I'll stick to asm
- Mon Dec 09, 2024 9:23 pm
- Forum: Coding Questions
- Topic: compiler hang in backend-C only
- Replies: 4
- Views: 852
compiler hang in backend-C only
Hello:
when compiling the following program in C backend-x64, the compiler hang indefinitely till I kill it with the task manager. It compiles normally in asm, after killing it I got the following message:
the compiler appears to have crashed or quit unexpectedly. it will be restarted, Please ...
when compiling the following program in C backend-x64, the compiler hang indefinitely till I kill it with the task manager. It compiles normally in asm, after killing it I got the following message:
the compiler appears to have crashed or quit unexpectedly. it will be restarted, Please ...