Gamestudio Links
Zorro Links
Newest Posts
New FXCM FIX Plugin
by flink. 06/04/24 07:30
AlpacaZorroPlugin v1.3.0 Released
by kzhao. 05/22/24 13:41
Free Live Data for Zorro with Paper Trading?
by AbrahamR. 05/18/24 13:28
Change chart colours
by 7th_zorro. 05/11/24 09:25
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
3 registered members (Ayumi, Akow, AndrewAMD), 1,505 guests, and 9 spiders.
Key: Admin, Global Mod, Mod
Newest Members
AemStones, LucasJoshua, Baklazhan, Hanky27, firatv
19058 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
inet connection #243574
12/30/08 20:43
12/30/08 20:43
Joined: Aug 2008
Posts: 153
Germany,Stuttgart
kwpsp Offline OP
Member
kwpsp  Offline OP
Member

Joined: Aug 2008
Posts: 153
Germany,Stuttgart
Hey guys,
I'm using A6.
I have a panel for offline and online.
And now I want to test the internet connection.

And then only a function
if(inet_connection==1)
{
mypanel.visible=on;
}


My system:
- Core 2 Quad 6600(4x 2,4GhZ)
- 2GB Ram
- GeForce 7050(:-))
- Windows seven
Re: inet connection [Re: kwpsp] #243590
12/30/08 21:22
12/30/08 21:22
Joined: Aug 2008
Posts: 153
Germany,Stuttgart
kwpsp Offline OP
Member
kwpsp  Offline OP
Member

Joined: Aug 2008
Posts: 153
Germany,Stuttgart
I found the gshttp,
but acknex.exe makes a crash after closing my programm
my code:

function net()
{
// Create the HTTP Client
if (HTTP_Create(0)==0)
{

// Set the data to be posted to PostString
PostString="a=b
b=c
d=e";

// HTTP Post the URL with the PostString data
HTTP_Post(0,"http://www.yahoo.com/",PostString);

// Wait until the HTTP POST is complete
while(HTTP_IsWorking(0)==1)
{
wait(16);
}

// Initialize ResultString. Make sure you have enough characters for your result.
ResultString=" ";

// Put the results in ResultString.
HTTP_Results(0,ResultString);

// Show the results
shown();
HTTP_Free(0);
}
}


My system:
- Core 2 Quad 6600(4x 2,4GhZ)
- 2GB Ram
- GeForce 7050(:-))
- Windows seven
Re: inet connection [Re: kwpsp] #243591
12/30/08 21:27
12/30/08 21:27
Joined: Aug 2008
Posts: 153
Germany,Stuttgart
kwpsp Offline OP
Member
kwpsp  Offline OP
Member

Joined: Aug 2008
Posts: 153
Germany,Stuttgart
ok sry I solved my problem, this plugin is normally for A5.5
but when you delete these 3 things
// Initialize ResultString. Make sure you have enough characters for your result.
ResultString=" ";

// Put the results in ResultString.
HTTP_Results(0,ResultString);

HTTP_Free(0);

then it works fine
lol three posts in a thread by me
kwpsp


My system:
- Core 2 Quad 6600(4x 2,4GhZ)
- 2GB Ram
- GeForce 7050(:-))
- Windows seven
Re: inet connection [Re: kwpsp] #244653
01/06/09 01:36
01/06/09 01:36
Joined: Jul 2004
Posts: 1,710
MMike Offline
Serious User
MMike  Offline
Serious User

Joined: Jul 2004
Posts: 1,710
hum but there must be a reason!??

Re: inet connection [Re: kwpsp] #274241
06/26/09 08:32
06/26/09 08:32
Joined: Jun 2009
Posts: 1
Osaka, Japan
B
BryanKim Offline
Guest
BryanKim  Offline
Guest
B

Joined: Jun 2009
Posts: 1
Osaka, Japan
I tried it at A7. I could try get, post but I can't read data(ResultString) How can i read data?


Gamestudio download | chip programmers | Zorro platform | shop | Data Protection Policy

oP group Germany GmbH | Birkenstr. 25-27 | 63549 Ronneburg / Germany | info (at) opgroup.de

Powered by UBB.threads™ PHP Forum Software 7.7.1