vb.net撥號 vbnet dispose

我想用vb.net獲得電話交換機(jī)的來電顯示,可是卻不知道從何下手,網(wǎng)上所說的MSComm1控件該如何用呢?

MSCOMM是VB6.0和VC6.0中的串口控件,VB.NET中是SerialPort。MSDN上可以找到相關(guān)的資料,網(wǎng)上也有很多例程

作為一家“創(chuàng)意+整合+營銷”的成都網(wǎng)站建設(shè)機(jī)構(gòu),我們在業(yè)內(nèi)良好的客戶口碑。成都創(chuàng)新互聯(lián)公司提供從前期的網(wǎng)站品牌分析策劃、網(wǎng)站設(shè)計(jì)、網(wǎng)站建設(shè)、成都做網(wǎng)站、創(chuàng)意表現(xiàn)、網(wǎng)頁制作、系統(tǒng)開發(fā)以及后續(xù)網(wǎng)站營銷運(yùn)營等一系列服務(wù),幫助企業(yè)打造創(chuàng)新的互聯(lián)網(wǎng)品牌經(jīng)營模式與有效的網(wǎng)絡(luò)營銷方法,創(chuàng)造更大的價值。

VB.NET怎樣做撥號連接?

Imports System.Drawing.Imaging.ImageFormat

Public Class Form1

Inherits System.Windows.Forms.Form

#Region " Windows 窗體設(shè)計(jì)器生成的代碼 "

Public Sub New()

MyBase.New()

'該調(diào)用是 Windows 窗體設(shè)計(jì)器所必需的。

InitializeComponent()

'在 InitializeComponent() 調(diào)用之后添加任何初始化

End Sub

'窗體重寫 dispose 以清理組件列表。

Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)

If disposing Then

If Not (components Is Nothing) Then

components.Dispose()

End If

End If

MyBase.Dispose(disposing)

End Sub

'Windows 窗體設(shè)計(jì)器所必需的

Private components As System.ComponentModel.IContainer

'注意: 以下過程是 Windows 窗體設(shè)計(jì)器所必需的

'可以使用 Windows 窗體設(shè)計(jì)器修改此過程。

'不要使用代碼編輯器修改它。

Friend WithEvents MainMenu1 As System.Windows.Forms.MainMenu

Friend WithEvents MenuItem1 As System.Windows.Forms.MenuItem

Friend WithEvents MenuItem2 As System.Windows.Forms.MenuItem

Friend WithEvents MenuItem3 As System.Windows.Forms.MenuItem

Friend WithEvents MenuItem5 As System.Windows.Forms.MenuItem

Friend WithEvents MenuItem6 As System.Windows.Forms.MenuItem

Friend WithEvents MenuItem4 As System.Windows.Forms.MenuItem

Friend WithEvents MenuItem7 As System.Windows.Forms.MenuItem

Friend WithEvents MenuItem8 As System.Windows.Forms.MenuItem

Friend WithEvents MenuItem9 As System.Windows.Forms.MenuItem

Friend WithEvents MenuItem10 As System.Windows.Forms.MenuItem

Friend WithEvents MenuItem11 As System.Windows.Forms.MenuItem

Friend WithEvents MenuItem12 As System.Windows.Forms.MenuItem

Friend WithEvents MenuItem13 As System.Windows.Forms.MenuItem

Friend WithEvents PictureBox1 As System.Windows.Forms.PictureBox

Friend WithEvents OpenFileDialog1 As System.Windows.Forms.OpenFileDialog

Friend WithEvents Button1 As System.Windows.Forms.Button

Friend WithEvents Button2 As System.Windows.Forms.Button

Friend WithEvents GroupBox1 As System.Windows.Forms.GroupBox

Friend WithEvents Button3 As System.Windows.Forms.Button

Friend WithEvents Button4 As System.Windows.Forms.Button

System.Diagnostics.DebuggerStepThrough() Private Sub InitializeComponent()

Me.MainMenu1 = New System.Windows.Forms.MainMenu

Me.MenuItem1 = New System.Windows.Forms.MenuItem

Me.MenuItem2 = New System.Windows.Forms.MenuItem

Me.MenuItem3 = New System.Windows.Forms.MenuItem

Me.MenuItem5 = New System.Windows.Forms.MenuItem

Me.MenuItem6 = New System.Windows.Forms.MenuItem

Me.MenuItem4 = New System.Windows.Forms.MenuItem

Me.MenuItem7 = New System.Windows.Forms.MenuItem

Me.MenuItem8 = New System.Windows.Forms.MenuItem

Me.MenuItem9 = New System.Windows.Forms.MenuItem

Me.MenuItem10 = New System.Windows.Forms.MenuItem

Me.MenuItem11 = New System.Windows.Forms.MenuItem

Me.MenuItem12 = New System.Windows.Forms.MenuItem

Me.MenuItem13 = New System.Windows.Forms.MenuItem

Me.PictureBox1 = New System.Windows.Forms.PictureBox

Me.OpenFileDialog1 = New System.Windows.Forms.OpenFileDialog

Me.Button1 = New System.Windows.Forms.Button

Me.Button2 = New System.Windows.Forms.Button

Me.GroupBox1 = New System.Windows.Forms.GroupBox

Me.Button4 = New System.Windows.Forms.Button

Me.Button3 = New System.Windows.Forms.Button

Me.GroupBox1.SuspendLayout()

Me.SuspendLayout()

'

'MainMenu1

'

Me.MainMenu1.MenuItems.AddRange(New System.Windows.Forms.MenuItem() {Me.MenuItem1, Me.MenuItem4, Me.MenuItem9, Me.MenuItem12})

'

'MenuItem1

'

Me.MenuItem1.Index = 0

Me.MenuItem1.MenuItems.AddRange(New System.Windows.Forms.MenuItem() {Me.MenuItem2, Me.MenuItem3, Me.MenuItem5, Me.MenuItem6})

Me.MenuItem1.Text = "文件"

'

'MenuItem2

'

Me.MenuItem2.Index = 0

Me.MenuItem2.Text = "打開"

'

'MenuItem3

'

Me.MenuItem3.Index = 1

Me.MenuItem3.Text = "關(guān)閉"

'

'MenuItem5

'

Me.MenuItem5.Index = 2

Me.MenuItem5.Text = "保存"

'

'MenuItem6

'

Me.MenuItem6.Index = 3

Me.MenuItem6.Text = "退出"

'

'MenuItem4

'

Me.MenuItem4.Index = 1

Me.MenuItem4.MenuItems.AddRange(New System.Windows.Forms.MenuItem() {Me.MenuItem7, Me.MenuItem8})

Me.MenuItem4.Text = "窗口"

'

'MenuItem7

'

Me.MenuItem7.Index = 0

Me.MenuItem7.MdiList = True

Me.MenuItem7.Text = "屬性"

'

'MenuItem8

'

Me.MenuItem8.Index = 1

Me.MenuItem8.Text = "工具"

'

'MenuItem9

'

Me.MenuItem9.Index = 2

Me.MenuItem9.MenuItems.AddRange(New System.Windows.Forms.MenuItem() {Me.MenuItem10, Me.MenuItem11})

Me.MenuItem9.Text = "工具"

'

'MenuItem10

'

Me.MenuItem10.Index = 0

Me.MenuItem10.Text = "中心定位"

'

'MenuItem11

'

Me.MenuItem11.Index = 1

Me.MenuItem11.Text = "選項(xiàng)"

'

'MenuItem12

'

Me.MenuItem12.Index = 3

Me.MenuItem12.MenuItems.AddRange(New System.Windows.Forms.MenuItem() {Me.MenuItem13})

Me.MenuItem12.Text = "幫助"

'

'MenuItem13

'

Me.MenuItem13.Index = 0

Me.MenuItem13.Text = "關(guān)于"

'

'PictureBox1

'

Me.PictureBox1.BackColor = System.Drawing.SystemColors.Control

Me.PictureBox1.Enabled = False

Me.PictureBox1.Location = New System.Drawing.Point(88, 8)

Me.PictureBox1.Name = "PictureBox1"

Me.PictureBox1.Size = New System.Drawing.Size(256, 168)

Me.PictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize

Me.PictureBox1.TabIndex = 1

Me.PictureBox1.TabStop = False

'

'Button1

'

Me.Button1.Location = New System.Drawing.Point(8, 16)

Me.Button1.Name = "Button1"

Me.Button1.Size = New System.Drawing.Size(64, 56)

Me.Button1.TabIndex = 2

Me.Button1.Text = "中心定位"

'

'Button2

'

Me.Button2.Location = New System.Drawing.Point(8, 80)

Me.Button2.Name = "Button2"

Me.Button2.Size = New System.Drawing.Size(64, 56)

Me.Button2.TabIndex = 3

Me.Button2.Text = "容錯值:0"

'

'GroupBox1

'

Me.GroupBox1.Controls.Add(Me.Button4)

Me.GroupBox1.Controls.Add(Me.Button3)

Me.GroupBox1.Controls.Add(Me.Button2)

Me.GroupBox1.Controls.Add(Me.Button1)

Me.GroupBox1.Cursor = System.Windows.Forms.Cursors.Hand

Me.GroupBox1.Dock = System.Windows.Forms.DockStyle.Left

Me.GroupBox1.Location = New System.Drawing.Point(0, 0)

Me.GroupBox1.Name = "GroupBox1"

Me.GroupBox1.Size = New System.Drawing.Size(80, 473)

Me.GroupBox1.TabIndex = 4

Me.GroupBox1.TabStop = False

Me.GroupBox1.Text = "功能"

'

'Button4

'

Me.Button4.Location = New System.Drawing.Point(8, 208)

Me.Button4.Name = "Button4"

Me.Button4.TabIndex = 5

Me.Button4.Text = "Button4"

'

'Button3

'

Me.Button3.Location = New System.Drawing.Point(8, 144)

Me.Button3.Name = "Button3"

Me.Button3.Size = New System.Drawing.Size(64, 56)

Me.Button3.TabIndex = 4

Me.Button3.Text = "顯示過渡"

'

'Form1

'

Me.AutoScaleBaseSize = New System.Drawing.Size(6, 14)

Me.ClientSize = New System.Drawing.Size(800, 473)

Me.Controls.Add(Me.GroupBox1)

Me.Controls.Add(Me.PictureBox1)

Me.Menu = Me.MainMenu1

Me.Name = "Form1"

Me.Text = "Form1"

Me.WindowState = System.Windows.Forms.FormWindowState.Maximized

Me.GroupBox1.ResumeLayout(False)

Me.ResumeLayout(False)

End Sub

#End Region

Dim PropertyWindows As New 屬性窗口

Private Sub MenuItem7_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MenuItem7.Click

'PropertyWindows.Parent = Me

'PropertyWindows.MdiParent = Me

PropertyWindows.Show()

End Sub

Private Sub MenuItem2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MenuItem2.Click

Dim Open As New OpenFileDialog

Open.Title = "選擇圖片"

Open.Filter = "全部|*.*|JPG(*.jpg)|*.jpg|BMP(*.bmp)|*.bmp|TIFF(*.Tiff)|*.Tiff|PNG(*.png)|*.png|ICO(*.ico)|*.ico"

If Open.ShowDialog = DialogResult.OK Then

Try

PictureBox1.Image = Image.FromStream(Open.OpenFile, True)

'確定類型

If PictureBox1.Image.RawFormat.Equals(System.Drawing.Imaging.ImageFormat.Bmp) Then

PropertyWindows.P1.Text = "Bmp"

ElseIf PictureBox1.Image.RawFormat.Equals(System.Drawing.Imaging.ImageFormat.Gif) Then

PropertyWindows.P1.Text = "Gif"

ElseIf PictureBox1.Image.RawFormat.Equals(System.Drawing.Imaging.ImageFormat.Icon) Then

PropertyWindows.P1.Text = "Ico"

ElseIf PictureBox1.Image.RawFormat.Equals(System.Drawing.Imaging.ImageFormat.Jpeg) Then

PropertyWindows.P1.Text = "Jpg"

ElseIf PictureBox1.Image.RawFormat.Equals(System.Drawing.Imaging.ImageFormat.Png) Then

PropertyWindows.P1.Text = "Png"

End If

'確定黑白

'其它

PropertyWindows.P3.Text = PictureBox1.Image.PhysicalDimension.Width

PropertyWindows.P4.Text = PictureBox1.Image.PhysicalDimension.Height

PropertyWindows.P5.Text = PictureBox1.Image.HorizontalResolution

PropertyWindows.P6.Text = PictureBox1.Image.VerticalResolution

PictureBox1.Enabled = True '激活

Catch ex As Exception

MessageBox.Show("你打開的文件為無法識別的圖像格式")

End Try

End If

End Sub

Private Sub MenuItem5_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MenuItem5.Click

Dim Save As New SaveFileDialog

Save.Title = "保存圖片"

Save.Filter = "全部|*.*| JPG(*.jpg)|*.jpg|BMP(*.bmp)|*.bmp _|TIFF(*.Tiff)|*.Tiff|PNG(*.png)|*.png|ICO(*.ico)|*.ico"

If Save.ShowDialog = DialogResult.OK Then

Dim PicFormat As System.Drawing.Imaging.ImageFormat

Select Case Save.FilterIndex

Case 1

PicFormat = Jpeg

Case 2

PicFormat = Jpeg

Case 3

PicFormat = Bmp

Case 4

PicFormat = Tiff

Case 5

PicFormat = Png

Case 6

PicFormat = System.Drawing.Imaging.ImageFormat.Icon

End Select

PictureBox1.Image.Save(Save.FileName, PicFormat)

End If

End Sub

Private Sub MenuItem6_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MenuItem6.Click

End

End Sub

Private Sub MenuItem3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MenuItem3.Click

PictureBox1.Image = Nothing

'PictureBox1.Image.Dispose()

PropertyWindows.P1.Text = " "

PropertyWindows.P2.Text = " "

PropertyWindows.P3.Text = " "

PropertyWindows.P4.Text = " "

PropertyWindows.P5.Text = " "

PropertyWindows.P6.Text = " "

PictureBox1.Enabled = False '關(guān)閉激活

End Sub

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

PropertyWindows.Show()

Dim path As New System.IO.FileInfo("圖像處理")

Me.Text = path.FullName

End Sub

Private Sub PictureBox1_MouseMove(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles PictureBox1.MouseMove

Dim a As Bitmap = PictureBox1.Image

PropertyWindows.P7.Text = a.GetPixel(e.X, e.Y).R

PropertyWindows.P8.Text = a.GetPixel(e.X, e.Y).G

PropertyWindows.P9.Text = a.GetPixel(e.X, e.Y).B

PropertyWindows.P10.Text = e.X

PropertyWindows.P11.Text = e.Y

End Sub

Private Sub MenuItem10_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MenuItem10.Click

End Sub

Private Sub PictureBox1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles PictureBox1.Click

Data.X1 = Data.X2 : Data.Y1 = Data.Y2

Data.X2 = PropertyWindows.P10.Text : Data.Y2 = PropertyWindows.P11.Text

End Sub

Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click

Dim RCoperation As New 容錯值設(shè)置

If RCoperation.ShowDialog = DialogResult.OK Then

Button2.Text = "容錯值:" Data.容錯值

End If

End Sub

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

Dim 定位 As New 中心定位(PictureBox1.Image)

定位.MyPic = PictureBox1.Image

PictureBox1.Image = 定位.Enter()

定位 = Nothing

End Sub

Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click

Data.Pic = PictureBox1.Image

Dim ShowTool As New 顯示過渡工具

ShowTool.ShowDialog()

End Sub

Private Sub PictureBox1_DoubleClick(ByVal sender As Object, ByVal e As System.EventArgs) Handles PictureBox1.DoubleClick

Data.Pic = PictureBox1.Image

Dim ShowTool As New 顯示過渡工具

ShowTool.Show()

End Sub

Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click

MessageBox.Show(Int(3 / 2))

End Sub

End Class

請問下在vb,vb.net或c#中添加系統(tǒng)服務(wù)時怎樣設(shè)置在服務(wù)啟動失敗后重啟服務(wù)!找了好久都不知道怎么設(shè)置

個人意見,希望采納:

:你先了解一下:

啟動項(xiàng)英文msconfig

alerter -錯誤警報(bào)器,垃圾,關(guān)閉。

application layer gateway service -給與第三者網(wǎng)絡(luò)共享/防火墻支持的服務(wù),有些防火墻/網(wǎng)絡(luò)共享軟件需要。占用1。5mb內(nèi)存。

application management-用于設(shè)定,發(fā)布和刪除軟件服務(wù)。

automatic 更新s -windows自動更新,K,滾!

background intelligent transfer service -這個服務(wù)原是用來實(shí)現(xiàn)http1.1服務(wù)器之間的信息傳輸,微軟稱支持windows更新時斷點(diǎn)續(xù)傳

clipbook - 用與局域網(wǎng)電腦來共享 粘貼/剪貼的內(nèi)容。(K,想得出?。?/p>

com+Event system -一些 COM+ 軟件需要,檢查你的 c:\program files\ComPlus Applications 目錄,沒東西可以把這個服務(wù)關(guān)閉.

COM+Event system application -同上

COmputer browser - 用來瀏覽局域網(wǎng)電腦的服務(wù),但關(guān)了也不影響瀏覽!垃圾

cryptographic services -windows更新時用來確認(rèn)windows 文件指紋的,我更新時才開啟一下。

DHCP client-靜態(tài)IP者需要(xDSL 等)小貓就不用了??!

Distributed link tracking client-用于局域網(wǎng)更新連接信息,比如在電腦A有個文件,在B做了個連接,如果文件移動了,這個服務(wù)將會更 新信息。占用4兆內(nèi)存。

Distributed Transaction coordinator-無聊的東西。

DNS Client-DNS解析服務(wù)。。無聊~~

Error reporting service -錯誤報(bào)告器,把windows中錯誤報(bào)告給微軟,無聊~~~~~

*Event Log- 系統(tǒng)日志紀(jì)錄服務(wù),很有用于查找系統(tǒng)毛?。?/p>

Fast user switching compatibility-多用戶快速切換服務(wù)..無聊

help and support -幫助,無聊,還是無聊幫助..哈哈

Human interface device access-支持”弱智“電腦配件的。。比如鍵盤上調(diào)音量的按鈕等等。。

IMAPI CD-burning COM service -xp刻牒服務(wù),用軟件就不用了占用1。6兆內(nèi)存

Indexing service -恐怖的xp減速的東東?。。£P(guān)關(guān)關(guān)?。?!

Internet Connection Firewall(ICF).........-xp防火墻。。不用就關(guān)。

IPSEC Services-大眾用戶連邊都沾不上。

Logical Disk manager -磁盤管理服務(wù)。。需要時它會通知你,所以一般關(guān)。

Logical Disk manager administrative service-同上。

messenger -不是msn,不想被騷擾的話就關(guān)。注:妖刺就是利用這個。

MS software shadow copy provider-無用,據(jù)說是備份用的。。我看什么用都沒。

Net Logon-登陸 Domain Controller 用的,大眾用戶快關(guān)!

Netmeeting remote desktop sharing-用netmeeting 實(shí)現(xiàn)電腦共享。。暈!關(guān)!!

Network Connections - 上網(wǎng)/局域網(wǎng)要用的東東!

Network DDE -和clipbook一起用的,無聊~~~~

Network DDE DSDM -同上

Network 本地 Awareness-如有網(wǎng)絡(luò)共享或ICS/ICF可能需要.(服務(wù)器端)

NT LM Security support provider-telnet 服務(wù)用的東東,關(guān)?。?/p>

NVIDIA Driver Helper service -nvidia 顯卡幫助,關(guān)!

PDEngine - perfectdisk 引擎

PDScheduler -perfectdisk 計(jì)劃服務(wù)

PerFORMance logs and alerts-記錄機(jī)器運(yùn)行狀況而且定時寫入日志或發(fā)警告,內(nèi)容可能過于專業(yè),所以。。自己決定。

*Plug and Play- 自動查測新裝硬件,即插即用,開著吧~~~

Portable media serial number-絕對無用,無聊之及。

Print Spooler -打印機(jī)用的,我打印時才開一下。

Protected Storage-儲存本地密碼和網(wǎng)上服務(wù)密碼的服務(wù),包括填表時的“自動完成”功能。

QoS RSVP -關(guān)!就是那個20%的 QoS

Remote access auto connection manager-寬帶者/網(wǎng)絡(luò)共享可能需要?。?/p>

Remote desktop help session manager-遠(yuǎn)程幫助服務(wù),傻透,占用4兆內(nèi)存。

*Remote Procedure Call (RPC) -系統(tǒng)核心服務(wù)!

Remote Procedure Call LOCATOR-這個倒沒什么用,管理 RPC 數(shù)據(jù)庫服務(wù),占用1兆內(nèi)存。

remote registry -遠(yuǎn)程注冊表運(yùn)行/修改。大漏洞,還不快關(guān)!!

removable storage -一般情況下不用,磁帶備份用的。

routing and remote access-哈哈。。不知者關(guān)!

secondary logon-給與administrator 以外的用戶分配指定操作權(quán).暈~~~

security accounts manager-像 Protected Storage, IIS Admin 才需要。

server -局域網(wǎng)文件/打印共享需要的。

shell hardware detection-給有些配置自動啟動,像內(nèi)存棒,和有些cd驅(qū)動等

smart card -關(guān)!1。4兆內(nèi)存

smart card helper -關(guān)!

SSDP Discovery service-沒有什么硬件利用這個服務(wù)。。

system event notification-記錄用戶登錄/注銷/重起/關(guān)機(jī)信息。。誰管這些。。

system restore service -系統(tǒng)還原服務(wù),吃資源和內(nèi)存的怪獸。。雖然有時用到,自己決定。

task scheduler-windows 計(jì)劃服務(wù)啦,垃圾.

TCP/IP NetBIOS helper-如果你的網(wǎng)絡(luò)不用 Netbios 或WINS,關(guān)了.

Telephony - 撥號服務(wù),如果你的寬帶不用撥號,那么關(guān)了它。

telnet -大漏洞,我第一個關(guān)的就是這個.這根dos中 telnet 命令沒關(guān)系。2兆內(nèi)存。

terminal services-實(shí)現(xiàn)遠(yuǎn)程登錄本地電腦,快速用戶切換和遠(yuǎn)程桌面功能需要,

不用這些功能就關(guān)了吧。

themes -給xp打扮的東東,不要太花鍬的就關(guān)了。

uninterruptible power supply-停電保護(hù)設(shè)備用的。。。沒有的就關(guān)。

universal plug and play device host-同SSDP Discovery Service ,沒用.

upload manager-用來實(shí)現(xiàn)服務(wù)器和客戶端輸送文件的服務(wù),簡單文件傳輸不需要這個!

volume shadow copy-同MS Software Shadow Copy Provider,無用.

webclient-可能和以后的.net技術(shù)有聯(lián)系,安全起見,我關(guān)得實(shí)實(shí)的!

Windows Audio - 控制著你聽到的聲音。關(guān)了就沒聲音了?。?/p>

Windows Installer -windows的MSI安裝服務(wù),建議設(shè)成手動。

windows image acquisition (WIA) -有些數(shù)碼相機(jī)和掃描器用的,我的掃描器覺得它沒用。

Windows Management Instrumentation - 滿重要的服務(wù),是管”服務(wù)依K”的,但關(guān)

了會出現(xiàn)奇怪的問題.

windows management 包含umentat

另外,團(tuán)IDC網(wǎng)上有許多產(chǎn)品團(tuán)購,便宜有口碑

求大神指點(diǎn)vb.net 怎么取寬帶連接的賬號呀

.net 取寬帶賬號和密碼的我沒,如果你想實(shí)現(xiàn)撥號和斷網(wǎng)的話 ,我有現(xiàn)成的模塊

當(dāng)前名稱:vb.net撥號 vbnet dispose
標(biāo)題鏈接:http://muchs.cn/article10/doeoego.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供ChatGPT、外貿(mào)網(wǎng)站建設(shè)App開發(fā)、微信小程序網(wǎng)站營銷、網(wǎng)站設(shè)計(jì)公司

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

手機(jī)網(wǎng)站建設(shè)