Hello,
If I use the code below and the library creation tool of the IDE of 'PF Shadoko', this goes well with;
I use Purebasic 6.20.
-PureBasic X64, Lib_Forcedirectories ("C: \ dump \ 1 \ 2 \ 3 \ 4 \ 5 \") -> does not give Error.
and with the same tool but with Purebasic X86
-Purebasic X86, Lib ...
Search found 150 matches
- Thu May 01, 2025 5:09 pm
- Forum: Coding Questions
- Topic: Error Building a PureLibrary on x86 system
- Replies: 1
- Views: 945
- Sat Dec 21, 2024 11:13 am
- Forum: The PureBasic Editor
- Topic: A complete code browser for PureBasic [Windows]
- Replies: 81
- Views: 41668
Re: A complete code browser for PureBasic [Windows]
Version "Beta 0.28".
Thanks for centering secondary windows.
Little_man
Thanks for centering secondary windows.
Little_man
- Thu Dec 19, 2024 11:04 am
- Forum: The PureBasic Editor
- Topic: A complete code browser for PureBasic [Windows]
- Replies: 81
- Views: 41668
Re: A complete code browser for PureBasic [Windows]
Same problem with fonts on my Windows system !!...
It is also possible to center information windows (choose your language) on the main window
Little_man
It is also possible to center information windows (choose your language) on the main window
Little_man
- Mon Dec 16, 2024 7:32 pm
- Forum: The PureBasic Editor
- Topic: A complete code browser for PureBasic [Windows]
- Replies: 81
- Views: 41668
Re: A complete code browser for PureBasic [Windows]
Files that are read with the command "XIncludeFile" but have the characters "(" and ")" in the file name are seen as empty or not present !!...
Example:
XincludeFile "Includes\Parts_Split_Array().pbi"
Little_man
Example:
XincludeFile "Includes\Parts_Split_Array().pbi"
Little_man
- Fri Jul 12, 2024 9:27 pm
- Forum: Coding Questions
- Topic: SetDatabaseBlob with two Databases
- Replies: 12
- Views: 1455
Re: SetDatabaseBlob with two Databases
Mindphazer
Adjustment:
If Product_Image_Size <> #Null$ (Not always an Image present)
FreeMemory(*Buffer)
EndIf
Little_Man
Adjustment:
If Product_Image_Size <> #Null$ (Not always an Image present)
FreeMemory(*Buffer)
EndIf
Little_Man
- Fri Jul 12, 2024 2:23 pm
- Forum: Coding Questions
- Topic: SetDatabaseBlob with two Databases
- Replies: 12
- Views: 1455
Re: SetDatabaseBlob with two Databases
Got it working after some adjustments.
little_man
little_man
- Fri Jul 12, 2024 10:17 am
- Forum: Coding Questions
- Topic: SetDatabaseBlob with two Databases
- Replies: 12
- Views: 1455
Re: SetDatabaseBlob with two Databases
boddhi,
Yes, I made a test but it didn't work
Little_man
Yes, I made a test but it didn't work
Little_man
- Fri Jul 12, 2024 6:33 am
- Forum: Coding Questions
- Topic: SetDatabaseBlob with two Databases
- Replies: 12
- Views: 1455
Re: SetDatabaseBlob with two Databases
"boddhi": Your code doesn't work!!..
The information from:
;==================================================================
Re: Blob and variable
Post by infratec » Sun Nov 06, 2022 12:08 pm
Since a blob is binary, you need Base64Encoder() to get it into a string variable.
I showed this one ...
The information from:
;==================================================================
Re: Blob and variable
Post by infratec » Sun Nov 06, 2022 12:08 pm
Since a blob is binary, you need Base64Encoder() to get it into a string variable.
I showed this one ...
- Thu Jul 11, 2024 10:04 pm
- Forum: Coding Questions
- Topic: SetDatabaseBlob with two Databases
- Replies: 12
- Views: 1455
SetDatabaseBlob with two Databases
How to put back "DatabaseQuery" into a database (BLOB);
(DataBase out "SQL_OUD" and insterted into Database "SQL_TEST")
OpenDatabase(SQL__TEST, SQL__TEST__Path_File, #Null$, #Null$, #PB_Database_SQLite ...
(DataBase out "SQL_OUD" and insterted into Database "SQL_TEST")
OpenDatabase(SQL__TEST, SQL__TEST__Path_File, #Null$, #Null$, #PB_Database_SQLite ...
- Fri Aug 25, 2023 6:08 am
- Forum: Coding Questions
- Topic: "No Return value" and use of "PB_Any"
- Replies: 3
- Views: 917
Re: "No Return value" and use of "PB_Any"
"THANKS" Erlend for your info !!...
The solution you suggested was after the ";" character in the specified code
The solution you suggested was after the ";" character in the specified code
- Thu Aug 24, 2023 7:12 pm
- Forum: Coding Questions
- Topic: "No Return value" and use of "PB_Any"
- Replies: 3
- Views: 917
"No Return value" and use of "PB_Any"
How to do this without " Return value " and using " #PB_Any " ?
Select Event
Case ???
FreeGadget(???)
EnableExplicit
;Opsommingen.
Enumeration Window
#Window_0
EndEnumeration
Enumeration Gadgets
#ScrlArea_1
EndEnumeration
;Afbeeldingen laden.
UsePNGImageDecoder() ;Enables the PNG ...
Select Event
Case ???
FreeGadget(???)
EnableExplicit
;Opsommingen.
Enumeration Window
#Window_0
EndEnumeration
Enumeration Gadgets
#ScrlArea_1
EndEnumeration
;Afbeeldingen laden.
UsePNGImageDecoder() ;Enables the PNG ...
- Sun Aug 06, 2023 2:30 pm
- Forum: Coding Questions
- Topic: How to make Transparent Background?
- Replies: 3
- Views: 992
Re: How to make Transparent Background?
Thanks; STARGÅTE
Thanks for the info !!...
Little_man
Thanks for the info !!...
Little_man
- Sun Aug 06, 2023 2:10 pm
- Forum: Coding Questions
- Topic: How to make Transparent Background?
- Replies: 3
- Views: 992
How to make Transparent Background?
Hello,
How to make the background transparent?
Little_man
UsePNGImageDecoder()
UsePNGImageEncoder()
Global Dim File$(0), FileCount
Global.i Width = 370
Global.i Height = 376
Global.i Seoerator = 20
ExamineDirectory(0, "C:\Dump", "*.png")
While NextDirectoryEntry(0)
If DirectoryEntryType ...
How to make the background transparent?
Little_man
UsePNGImageDecoder()
UsePNGImageEncoder()
Global Dim File$(0), FileCount
Global.i Width = 370
Global.i Height = 376
Global.i Seoerator = 20
ExamineDirectory(0, "C:\Dump", "*.png")
While NextDirectoryEntry(0)
If DirectoryEntryType ...
- Mon Jul 24, 2023 10:04 am
- Forum: Coding Questions
- Topic: Twice click ComboBoxgadget
- Replies: 1
- Views: 370
Twice click ComboBoxgadget
Hi all,
When starting the program, the ComboBoxgadget is "unfolded".
The following problem with unfolded" ComboBox;
If I now want to close the program, I have to click twice on the Button "End Program".
How to adjust "unfolded" comboBox only clicking the Button "End Program" once?
With kind ...
When starting the program, the ComboBoxgadget is "unfolded".
The following problem with unfolded" ComboBox;
If I now want to close the program, I have to click twice on the Button "End Program".
How to adjust "unfolded" comboBox only clicking the Button "End Program" once?
With kind ...
- Sun Feb 26, 2023 5:03 pm
- Forum: Announcement
- Topic: PasswordCreator
- Replies: 17
- Views: 3538
Re: PasswordCreator
Little John,
In the german language, the length of "Length of password" is not enough (Textgadget) !!...
Little_man
In the german language, the length of "Length of password" is not enough (Textgadget) !!...
Little_man