Search found 2 matches

by 0x90
Thu Jan 10, 2019 2:26 am
Forum: Coding Questions
Topic: Hosting CLR...
Replies: 2
Views: 2321

Re: Hosting CLR...

please use better names for variables, not the same as
native PB commands.
And check if the file is already there and can be loaded.


NetFile.s = "n.exe"
FileSize1 =FileSize(NetFile)
If FileSize1<1
Debug "file not found !"
End
EndIf

pDataFile =AllocateMemory(FileSize1*100)
ReadFile(0,NetFile ...
by 0x90
Thu Mar 15, 2018 6:59 pm
Forum: Coding Questions
Topic: [Windows] How to list Running Processes/Problem with Func
Replies: 2
Views: 1432

[Windows] How to list Running Processes/Problem with Func

Hello guys, I'm having troubles following a code example I found at:
http://www.purebasic.fr/english/viewtopic.php?t=8086


https://i.imgur.com/FhC3Llf.png

So the thing is that as you can see in the picture, it seems that the returned names are not correctly displayed in the ascii format... maybe ...