Click here to Skip to main content
15,915,163 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: navnohistory Pin
Anonymous26-Jul-05 7:38
Anonymous26-Jul-05 7:38 
GeneralRe: navnohistory Pin
sal2126-Jul-05 7:41
sal2126-Jul-05 7:41 
GeneralRe: navnohistory Pin
Dave Kreskowiak26-Jul-05 10:09
mveDave Kreskowiak26-Jul-05 10:09 
GeneralRe: navnohistory Pin
sal2126-Jul-05 22:43
sal2126-Jul-05 22:43 
GeneralRe: navnohistory Pin
Dave Kreskowiak27-Jul-05 1:19
mveDave Kreskowiak27-Jul-05 1:19 
GeneralPageSetupDialog Control Pin
rushing25-Jul-05 22:59
rushing25-Jul-05 22:59 
GeneralRe: PageSetupDialog Control Pin
Dave Kreskowiak26-Jul-05 4:35
mveDave Kreskowiak26-Jul-05 4:35 
GeneralProgrammatically Converting Paradox to Access Tables Pin
JJRW25-Jul-05 22:57
JJRW25-Jul-05 22:57 
GeneralRe: Programmatically Converting Paradox to Access Tables Pin
Dave Kreskowiak26-Jul-05 4:31
mveDave Kreskowiak26-Jul-05 4:31 
GeneralRTL Enabling Problem Pin
justzain25-Jul-05 22:39
justzain25-Jul-05 22:39 
GeneralValues from one form into another form Pin
directred25-Jul-05 22:16
directred25-Jul-05 22:16 
GeneralRe: Values from one form into another form Pin
Anonymous26-Jul-05 3:58
Anonymous26-Jul-05 3:58 
GeneralRe: Values from one form into another form Pin
Dave Kreskowiak26-Jul-05 4:27
mveDave Kreskowiak26-Jul-05 4:27 
Generalpuuting in system menu Pin
Anonymous25-Jul-05 21:19
Anonymous25-Jul-05 21:19 
GeneralRe: puuting in system menu Pin
Dave Kreskowiak26-Jul-05 4:25
mveDave Kreskowiak26-Jul-05 4:25 
Generaldisallowing to delete folder programmatically Pin
Anonymous25-Jul-05 21:16
Anonymous25-Jul-05 21:16 
GeneralRe: disallowing to delete folder programmatically Pin
Dave Kreskowiak26-Jul-05 4:11
mveDave Kreskowiak26-Jul-05 4:11 
GeneralDisallowing to uninstall Pin
Anonymous25-Jul-05 21:12
Anonymous25-Jul-05 21:12 
GeneralRe: Disallowing to uninstall Pin
Dave Kreskowiak26-Jul-05 4:07
mveDave Kreskowiak26-Jul-05 4:07 
GeneralNewbie!! Pin
Nguyen Dinh Quy25-Jul-05 20:45
Nguyen Dinh Quy25-Jul-05 20:45 
GeneralRe: Newbie!! Pin
MohammadAmiry25-Jul-05 21:26
MohammadAmiry25-Jul-05 21:26 
GeneralRe: Newbie!! Pin
Dave Kreskowiak26-Jul-05 4:05
mveDave Kreskowiak26-Jul-05 4:05 
Generallibrary not registered Error Pin
abhinish25-Jul-05 20:43
abhinish25-Jul-05 20:43 
hi friends ,
i having a problem in creating a object to ping ip addresses. my application works fine on my comuter but gives an error on other computer:
Library not registered:


i m creating the following object through my application:
===========================================================

Sub Scan(ByVal IP)

Dim status As String
Dim strComputer As String = IP
Dim objShell = CreateObject("WScript.Shell")
'Dim objScriptExec = objShell.Exec("ping " & strComputer & "t")
Dim objScriptExec = objShell.Exec("ping -n 3 -w 1000 " & strComputer)
Dim strPingResults = LCase(objScriptExec.StdOut.ReadAll)

If InStr(strPingResults, "reply from") Then
status = "OK"
MsgBox(strPingResults, MsgBoxStyle.Information)
Else
status = "Not Working"
MsgBox(strPingResults, MsgBoxStyle.Critical)
End If
End Sub
============================================================
can any one help me out to find a way out fo this!

abhinav
GeneralRe: library not registered Error Pin
Dave Kreskowiak26-Jul-05 3:55
mveDave Kreskowiak26-Jul-05 3:55 
GeneralRe: library not registered Error Pin
abhinish26-Jul-05 23:59
abhinish26-Jul-05 23:59 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.