狠狠色噜噜狠狠狠777米奇小说,精品久久久久精品亚洲av,丰满的少妇邻居中文bd,疯狂做受xxxx,中文天堂最新版在线www,国内精品综合久久久40p,亚洲另类欧美综合久久图片区,小荡货你夹的老师好紧
廣州高深商電子技術(shù)有限公司 用戶登錄
用戶注冊(cè) ......
首頁 公告 收款機(jī) 抽獎(jiǎng)機(jī) 來電管理 數(shù)據(jù)采集 臺(tái)球燈控 軟件開發(fā) 綜合 會(huì)員下載 發(fā)貨查詢
公司首頁
當(dāng)前位置:首頁>> 來電管理>> 二次開發(fā) >>正文
使用PB開發(fā)網(wǎng)絡(luò)版的來電管理軟件
chen在2007/8/5發(fā)表,被瀏覽6245
適合對(duì)象:記得來電顯示管理器的網(wǎng)絡(luò)版
開發(fā)環(huán)境:PowerBuilder
下載范例:JDDemo2.pbl.zip
使用環(huán)境:需要來電監(jiān)聽服務(wù)程序TeleListen.exe(點(diǎn)擊下載)
相關(guān)連接:來電管理器服務(wù)程序



注意:采用Socket網(wǎng)絡(luò)技術(shù),需要使用ActiveX控件MSWINSCK.OCX
方法:選擇“Insert”-〉“Control”-〉“OLE...”-〉“Insert Object”-〉“Insert Control”-〉“Microsoft WinSock Control”


?Generated Application Objectforward
global type jddemo2 from application
end type
global transaction sqlca
global dynamicdescriptionarea sqlda
global dynamicstagingarea sqlsa
global error error
global message message
end forward

global type jddemo2 from application
string appname = "jddemo2"
string displayname = "來電顯示客戶端"
end type
global jddemo2 jddemo2

on jddemo2.create
appname="jddemo2"
message=create message
sqlca=create transaction
sqlda=create dynamicdescriptionarea
sqlsa=create dynamicstagingarea
error=create error
end on

on jddemo2.destroy
destroy(sqlca)
destroy(sqlda)
destroy(sqlsa)
destroy(error)
destroy(message)
end on

event open;Open(Form2)
end event


?來電顯示客戶端
forward
global type form2 from window
end type
type cb_2 from commandbutton within form2
end type
type cb_1 from commandbutton within form2
end type
type sle_2 from singlelineedit within form2
end type
type st_2 from statictext within form2
end type
type st_1 from statictext within form2
end type
type sle_1 from singlelineedit within form2
end type
type lb_1 from listbox within form2
end type
type ole_1 from olecustomcontrol within form2
end type
end forward

global type form2 from window
integer width = 1609
integer height = 1048
boolean titlebar = true
string title = "來電顯示客戶端"
boolean controlmenu = true
boolean minbox = true
boolean maxbox = true
boolean resizable = true
long backcolor = 67108864
cb_2 cb_2
cb_1 cb_1
sle_2 sle_2
st_2 st_2
st_1 st_1
sle_1 sle_1
lb_1 lb_1
ole_1 ole_1
end type
global form2 form2

on form2.create
this.cb_2=create cb_2
this.cb_1=create cb_1
this.sle_2=create sle_2
this.st_2=create st_2
this.st_1=create st_1
this.sle_1=create sle_1
this.lb_1=create lb_1
this.ole_1=create ole_1
this.Control[]={this.cb_2,&
this.cb_1,&
this.sle_2,&
this.st_2,&
this.st_1,&
this.sle_1,&
this.lb_1,&
this.ole_1}
end on

on form2.destroy
destroy(this.cb_2)
destroy(this.cb_1)
destroy(this.sle_2)
destroy(this.st_2)
destroy(this.st_1)
destroy(this.sle_1)
destroy(this.lb_1)
destroy(this.ole_1)
end on

type cb_2 from commandbutton within form2
integer x = 1125
integer y = 708
integer width = 402
integer height = 112
integer taborder = 30
integer textsize = -10
integer weight = 400
fontcharset fontcharset = ansi!
fontpitch fontpitch = variable!
fontfamily fontfamily = swiss!
string facename = "Arial"
string text = "關(guān)閉"
end type

event clicked;
ole_1.Object.Close()
lb_1.AddItem("已關(guān)閉連接")
end event

type cb_1 from commandbutton within form2
integer x = 1125
integer y = 556
integer width = 402
integer height = 112
integer taborder = 20
integer textsize = -10
integer weight = 400
fontcharset fontcharset = ansi!
fontpitch fontpitch = variable!
fontfamily fontfamily = swiss!
string facename = "Arial"
string text = "連接"
end type

event clicked;
ole_1.Object.RemoteHost = sle_1.Text
ole_1.Object.RemotePort = Integer(sle_2.Text)
ole_1.Object.Connect()
end event

type sle_2 from singlelineedit within form2
integer x = 1129
integer y = 376
integer width = 402
integer height = 112
integer taborder = 30
integer textsize = -10
integer weight = 400
fontcharset fontcharset = ansi!
fontpitch fontpitch = variable!
fontfamily fontfamily = swiss!
string facename = "Arial"
long textcolor = 33554432
string text = "3825"
borderstyle borderstyle = stylelowered!
end type

type st_2 from statictext within form2
integer x = 1138
integer y = 300
integer width = 402
integer height = 64
integer textsize = -10
integer weight = 400
fontcharset fontcharset = ansi!
fontpitch fontpitch = variable!
fontfamily fontfamily = swiss!
string facename = "Arial"
long textcolor = 33554432
long backcolor = 67108864
string text = "Socket端口"
boolean focusrectangle = false
end type

type st_1 from statictext within form2
integer x = 1129
integer y = 44
integer width = 402
integer height = 64
integer textsize = -10
integer weight = 400
fontcharset fontcharset = ansi!
fontpitch fontpitch = variable!
fontfamily fontfamily = swiss!
string facename = "Arial"
long textcolor = 33554432
long backcolor = 67108864
string text = "服務(wù)器地址"
boolean focusrectangle = false
end type

type sle_1 from singlelineedit within form2
integer x = 1129
integer y = 124
integer width = 402
integer height = 112
integer taborder = 20
integer textsize = -10
integer weight = 400
fontcharset fontcharset = ansi!
fontpitch fontpitch = variable!
fontfamily fontfamily = swiss!
string facename = "Arial"
long textcolor = 33554432
string text = "127.0.0.1"
borderstyle borderstyle = stylelowered!
end type

type lb_1 from listbox within form2
integer x = 37
integer y = 44
integer width = 1019
integer height = 792
integer taborder = 10
integer textsize = -10
integer weight = 400
fontcharset fontcharset = ansi!
fontpitch fontpitch = variable!
fontfamily fontfamily = swiss!
string facename = "Arial"
long textcolor = 33554432
boolean sorted = false
borderstyle borderstyle = stylelowered!
end type

type ole_1 from olecustomcontrol within form2
event ocx_error ( integer number,  string description,  long scode, string source,  string helpfile,  long helpcontext,  boolean canceldisplay )
event dataarrival ( long bytestotal )
event ocx_connect ( )
event connectionrequest ( long requestid )
event ocx_close ( )
event sendprogress ( long bytessent,  long bytesremaining )
event sendcomplete ( )
integer x = 1408
integer y = 860
integer width = 128
integer height = 112
integer taborder = 10
borderstyle borderstyle = stylelowered!
boolean focusrectangle = false
string binarykey = "form2.win"
integer textsize = -10
integer weight = 400
fontcharset fontcharset = ansi!
fontpitch fontpitch = variable!
fontfamily fontfamily = swiss!
string facename = "Arial"
long textcolor = 33554432
end type

event dataarrival;
String s
Integer p
    
ole_1.Object.GetData(ref s)
If Left(s, 1) = "#" Then
   p = Pos(s, " ")
   lb_1.AddItem("來電號(hào)碼: " + Mid(s, 2, p - 2))
   lb_1.AddItem("來電時(shí)間: " + Mid(s, p + 1, 19))
else
   lb_1.AddItem(s)
End If
end event

event ocx_connect;
lb_1.Reset()
lb_1.AddItem("連接成功")
end event
【相關(guān)文章】
使用PB開發(fā)網(wǎng)絡(luò)版的來電管…
【同類文章】
高深商GSM無線固話盒OC…
WIFI接口來電顯示管理器…
新一代USB轉(zhuǎn)COM口來電…
來電管理器故障排除的方法
在WIN7或Win8中注冊(cè)…
計(jì)算機(jī)收發(fā)短信的OCX控件…
使用Java開發(fā)來電顯示管…
開發(fā)來電顯示及錄音程序的C…
C#來電顯示管理器開發(fā)示例…
使用C#的Socket開發(fā)…

廣州高深商電子技術(shù)有限公司

地址:天河北路908號(hào)、高科大廈B座2704
電話:020-38259081、38258857
電子郵箱:gaoykosen@foxmail.com

主站蜘蛛池模板: r级无码视频在线观看| 芳草地社区在线视频| 国产精品毛片a∨一区二区三区| _97夜夜澡人人爽人人喊_欧美| 十九岁在线观看免费高清完整| 国产精品久久久福利| 国产嫖妓一区二区三区无码| xxxxfree少妇过瘾| 亚洲熟妇丰满xxxxx国语| 亚洲卡1卡2卡三卡4卡5卡6卡| 欧美怡红院免费全部视频| 被绑在坐桩机上抹春药| 国产一区二区三区美女| 少妇被多人c夜夜爽爽av| 老太婆性杂交毛片| 在线视频免费观看| 久久精品国产清自在天天线| 精品久久久久久无码专区| 姑娘第5集在线观看免费| 国内精品久久久久久中文字幕 | 人妻中文字幕无码专区| 麻豆果冻传媒在线观看| 人妻中文无码久热丝袜| 青青青爽在线视频观看| 2019香蕉在线观看直播视频| 国产成人a亚洲精v品无码| 亚洲性久久久影院| 国产精品久久久久久亚洲| wwxx在线观看免费| 国产乱人伦精品一区二区| 97人伦色伦成人免费视频| 免费看黄软件| 亚洲人午夜射精精品视频| 亚洲欧美国产精品专区久久| jizzjizz少妇亚洲水多| 亚洲精品久久片久久久久| 艳妇乳肉豪妇荡乳| 少妇午夜啪爽嗷嗷叫视频| 国内精品卡一卡二卡三| 久久精品无码一区二区三区免费 | 真实国产乱子伦精品视频|