Posted: Wed Feb 22, 2006 1:22 am
Um.... maybe in fairness to the developers, you should be testing this with NO third party libraries installed.dontmailme wrote:Mine is a fresh install too, just the PBOSL library added.
http://www.purebasic.com
https://www.purebasic.fr/english/
Um.... maybe in fairness to the developers, you should be testing this with NO third party libraries installed.dontmailme wrote:Mine is a fresh install too, just the PBOSL library added.
oryaaaaa wrote:Is there an example of using Unicode?
It crashes when specifying it with ProjectOptions. Is this normal?
Impressive!oakvalley wrote:Here's what I used PureBasic and the 3DEngine.dll to create:
http://www.stone-oakvalley-studios.com/ ... mac_sw.htm
(scroll to the bottom to see a earlier movie snapshot of the 3D Matrix Core menu workings:))
Code: Select all
Procedure.s PostRequest (TheHost.s,File.s,PostVars.s)
Protected header.s,HostID.l
HostID.l=OpenNetworkConnection(TheHost.s, 81) ; <<< Invalid memory access !
If HostID.l
header.s="POST "+File.s+" HTTP/1.0"
header.s+"From: hroudtwolf"
header.s+"User-Agent: HTTPTool/1.0"
header.s+"Content-Type: application/x-www-form-urlencoded"
header.s+"Content-Length: 32"
header.s+PostVars.s
SendNetworkString (HostID.l,header.s)
Repeat
If NetworkClientEvent(HostID.l) = 2
*buffer=AllocateMemory (1024)
ReceiveNetworkData (HostID.l,*buffer,1024)
retstring.s=Trim(PeekS (*buffer))
FreeMemory(*buffer)
TimeLeft.l=100
EndIf
TimeLeft.l+1
Delay (10)
Until TimeLeft.l>100
CloseNetworkConnection(HostID.l)
EndIf
ProcedureReturn retstring.s
EndProcedure
InitNetwork ()
Debug PostRequest ("http://forums.purebasic.com/english/","viewforum.php","f=13")