リファレンス 9 ドキュメント 3 サンプル 15
basic 38 comobj 9 demo 1 game 12 hgimg 12 hgimg3 10 hspcl 9 hspda 7 hspdb 3 hspdx 6 hspext 16 hspinet 5 hspsock 5 new 22 ssaver 1

hspinet

Path : sample\hspinet
test1.hsp
#include "hspinet.as" 単純なファイルのダウンロード netinit if stat : dialog "ネット接続できません。" : end neturl "http: www.onionsoft.net/hsp/" mes "DOWNLOAD 開始" netload "index.html" mes "DOWNLOAD 完了" mes "index.htmlを保存しました。
sample\hspinet\test1.hsp - 2005/08/01
test2.hsp
#include "hspinet.as" ファイルの取得(ループあり) netinit if stat : dialog "ネット接続できません。
sample\hspinet\test2.hsp - 2005/08/01
test3.hsp
#include "hspinet.as" サーバー上のファイル情報を得る netinit if stat : dialog "ネット接続できません。" : end neturl "http: www.onionsoft.net/hsp/" netfileinfo info,"index.html" if stat : dialog "情報の取得に失敗しました。
sample\hspinet\test3.hsp - 2005/08/01
test4.hsp
#include "hspinet.as" ファイルのCRC32、MD5を得る dialog "",16 fname = refstr mes "FILE="+fname filecrc a,fname mes "CRC="+a mes "SIZE="+strsize filemd5 md5,fname mes "MD5="+md5 stop
sample\hspinet\test4.hsp - 2005/08/01
test5.hsp
title "ftp接続サンプル" netinit if stat : dialog "ネット接続できません。
sample\hspinet\test5.hsp - 2005/08/01