Hello,
Windows Installers are not signed. :/
Working as expected, but WindowsDefender SmartScreen is nagging.
Thank you.
Link to Image
Search found 25 matches
- Fri Oct 13, 2023 7:53 am
- Forum: Announcement
- Topic: PureBasic 6.03 LTS is released !
- Replies: 184
- Views: 71894
- Tue Aug 08, 2006 8:50 pm
- Forum: Windows
- Topic: Proper Kill (Process) by ID or Name
- Replies: 0
- Views: 2775
Proper Kill (Process) by ID or Name
Proper Kill (Process) by ID or Name
#TH32CS_SNAPHEAPLIST = $1
#TH32CS_SNAPPROCESS = $2
#TH32CS_SNAPTHREAD = $4
#TH32CS_SNAPMODULE = $8
#TH32CS_SNAPALL = #TH32CS_SNAPHEAPLIST | #TH32CS_SNAPPROCESS | #TH32CS_SNAPTHREAD | #TH32CS_SNAPMODULE
#TH32CS_INHERIT = $80000000
#INVALID_HANDLE_VALUE = -1
#MAX ...
#TH32CS_SNAPHEAPLIST = $1
#TH32CS_SNAPPROCESS = $2
#TH32CS_SNAPTHREAD = $4
#TH32CS_SNAPMODULE = $8
#TH32CS_SNAPALL = #TH32CS_SNAPHEAPLIST | #TH32CS_SNAPPROCESS | #TH32CS_SNAPTHREAD | #TH32CS_SNAPMODULE
#TH32CS_INHERIT = $80000000
#INVALID_HANDLE_VALUE = -1
#MAX ...
- Sat Aug 05, 2006 3:53 pm
- Forum: Coding Questions
- Topic: Faster file handling
- Replies: 21
- Views: 4262
- Thu Aug 03, 2006 9:01 pm
- Forum: Coding Questions
- Topic: WriteByte until FreeDiskSpace = 0 byte
- Replies: 15
- Views: 2988
- Thu Aug 03, 2006 7:35 pm
- Forum: Coding Questions
- Topic: WriteByte until FreeDiskSpace = 0 byte
- Replies: 15
- Views: 2988
- Wed Aug 02, 2006 12:36 pm
- Forum: Coding Questions
- Topic: WriteByte until FreeDiskSpace = 0 byte
- Replies: 15
- Views: 2988
- Fri Jul 28, 2006 7:31 pm
- Forum: Coding Questions
- Topic: Midi Monitor
- Replies: 41
- Views: 31569
- Fri Jul 14, 2006 11:11 am
- Forum: Tricks 'n' Tips
- Topic: List of running processes...
- Replies: 29
- Views: 18148
- Mon Jul 10, 2006 11:20 am
- Forum: Tricks 'n' Tips
- Topic: List of running processes...
- Replies: 29
- Views: 18148
- Fri Jul 07, 2006 2:20 pm
- Forum: Coding Questions
- Topic: Round robin calculation for Float
- Replies: 13
- Views: 2071
i cant understand either .. but ... why poke?
Code: Select all
Repeat
y.f=x.l ;??
Debug y ; 0.0 0.0 0.0 0.0 0.0 0.0
; Calculation program
x+1
Until x=0you mean to transform a number from long (or any) to float?I want to output all numerical values to be able to imagine Float.
- Fri Jul 07, 2006 1:28 pm
- Forum: Tricks 'n' Tips
- Topic: CreateFilledFile (CreateSizedFile)
- Replies: 7
- Views: 3342
- Fri Jul 07, 2006 12:56 pm
- Forum: Tricks 'n' Tips
- Topic: CreateFilledFile (CreateSizedFile)
- Replies: 7
- Views: 3342
CreateFilledFile (CreateSizedFile)
Code updated For 5.20+
Procedure CreateFilledFile(Name.s,fsize.q)
CreateFile(0,Name)
FileSeek(0,fsize-1)
WriteByte(0,0)
CloseFile(0)
EndProcedure Test CreateFilledFile("Temp.temp",123) Should create "Temp.temp" with exact size of 123Bytes
dont know if was posted/or was in help ... but it's ...
Procedure CreateFilledFile(Name.s,fsize.q)
CreateFile(0,Name)
FileSeek(0,fsize-1)
WriteByte(0,0)
CloseFile(0)
EndProcedure Test CreateFilledFile("Temp.temp",123) Should create "Temp.temp" with exact size of 123Bytes
dont know if was posted/or was in help ... but it's ...
- Sun Mar 05, 2006 11:33 pm
- Forum: Coding Questions
- Topic: GetHostName - HELP! (Winsock problem)
- Replies: 6
- Views: 2582
- Sun Mar 05, 2006 2:33 pm
- Forum: Coding Questions
- Topic: GetHostName - HELP! (Winsock problem)
- Replies: 6
- Views: 2582
GetHostName - HELP! (Winsock problem)
WinsockFunctions.pb
Declare AcceptConnection(sck)
Declare AssignSocketIndex()
Declare CheckHostType(host$)
Declare CloseSocket(sck.l)
Declare ConnectTask(sck)
Declare ConnectTCP(host$,port.l,thrRes)
Declare CreateSocket(ProtocolType.l)
Declare FindSocketIndex(sck)
Declare.s GetHostName(h ...
Declare AcceptConnection(sck)
Declare AssignSocketIndex()
Declare CheckHostType(host$)
Declare CloseSocket(sck.l)
Declare ConnectTask(sck)
Declare ConnectTCP(host$,port.l,thrRes)
Declare CreateSocket(ProtocolType.l)
Declare FindSocketIndex(sck)
Declare.s GetHostName(h ...
- Wed Nov 02, 2005 1:56 pm
- Forum: Tricks 'n' Tips
- Topic: WebGadget: Directly insert code and catch link clicks.
- Replies: 79
- Views: 48092