New to VB 
Author Message
 New to VB

I would like to create a small program to run winipcfg, ipconfig both with
the switches, tracert, ping ip and hostname and have a place to display the
information.  It would also be nice to be able to save the info as a txt or
something.

I have Visual Studio 6 Ent Edt.  Anyhelp would be a great start!

thanks you in advance
sjl



Wed, 07 Dec 2005 05:16:43 GMT  
 New to VB
well first you need to figure out the difference between vb and VBScript

--

need to e-mail me off list just get rid of "your fears" and
drop me a line.



Quote:
> I would like to create a small program to run winipcfg, ipconfig both with
> the switches, tracert, ping ip and hostname and have a place to display
the
> information.  It would also be nice to be able to save the info as a txt
or
> something.

> I have Visual Studio 6 Ent Edt.  Anyhelp would be a great start!

> thanks you in advance
> sjl



Wed, 07 Dec 2005 05:21:54 GMT  
 New to VB
Hey I already mentioned that I was new to VB in the subject line.  Besides I
asked around for a
good newsgroup for VB and this is where they sent me.


Quote:
> well first you need to figure out the difference between vb and vbscript

> --

> need to e-mail me off list just get rid of "your fears" and
> drop me a line.



> > I would like to create a small program to run winipcfg, ipconfig both
with
> > the switches, tracert, ping ip and hostname and have a place to display
> the
> > information.  It would also be nice to be able to save the info as a txt
> or
> > something.

> > I have Visual Studio 6 Ent Edt.  Anyhelp would be a great start!

> > thanks you in advance
> > sjl



Wed, 07 Dec 2005 06:11:11 GMT  
 New to VB

Quote:
> ipconfig both with the switches, tracert, ping ip and hostname
> and have a place to display the information.

First thing that comes to mind for all that... is a DOS batch program...
that runs the series of commands and sends the information to a text file.

If you really need a program to do that, you can use VB or VC++ or Pascal or
whatnot, even VBScript.

Create a DOS text file with the DOS edit command.

C:\>Edit DoInfo.bat

You'll get a blue screen and type the following information into it:

ipconfig /all > info.txt
tracert %1 >> info.txt
ping %1 >> info.txt

To use VB you'll have to use a Winsock control.

Go to http://www.mvps.org/vbnet and use the search engine to search ping and
you'll come up with a variety of things. The information is excellent
information and the code and explanations there are the best you'll be able
to find anywhere.

--
Jim Carlock
http://www.microcosmotalk.com
Feel free to post back to the newsgroup for all to witness!



Wed, 07 Dec 2005 06:38:47 GMT  
 New to VB
I wasn't being sarcastic.  YOu mentioned both vb and vb script and was
trying to figure out which you wanted to use.

--

need to e-mail me off list just get rid of "your fears" and
drop me a line.



Quote:
> Hey I already mentioned that I was new to VB in the subject line.  Besides
I
> asked around for a
> good newsgroup for VB and this is where they sent me.



> > well first you need to figure out the difference between vb and vbscript

> > --

> > need to e-mail me off list just get rid of "your fears" and
> > drop me a line.



> > > I would like to create a small program to run winipcfg, ipconfig both
> with
> > > the switches, tracert, ping ip and hostname and have a place to
display
> > the
> > > information.  It would also be nice to be able to save the info as a
txt
> > or
> > > something.

> > > I have Visual Studio 6 Ent Edt.  Anyhelp would be a great start!

> > > thanks you in advance
> > > sjl



Wed, 07 Dec 2005 06:51:26 GMT  
 New to VB
Sorry about that.  I do appologise Robert

Quote:
> I wasn't being sarcastic.  YOu mentioned both vb and vb script and was
> trying to figure out which you wanted to use.

> --

> need to e-mail me off list just get rid of "your fears" and
> drop me a line.



> > Hey I already mentioned that I was new to VB in the subject line.
Besides
> I
> > asked around for a
> > good newsgroup for VB and this is where they sent me.



> > > well first you need to figure out the difference between vb and
vbscript

> > > --

> > > need to e-mail me off list just get rid of "your fears" and
> > > drop me a line.



> > > > I would like to create a small program to run winipcfg, ipconfig
both
> > with
> > > > the switches, tracert, ping ip and hostname and have a place to
> display
> > > the
> > > > information.  It would also be nice to be able to save the info as a
> txt
> > > or
> > > > something.

> > > > I have Visual Studio 6 Ent Edt.  Anyhelp would be a great start!

> > > > thanks you in advance
> > > > sjl



Wed, 07 Dec 2005 07:18:06 GMT  
 New to VB
thank you Jim I will definately check the website you suggested.


Quote:
> > ipconfig both with the switches, tracert, ping ip and hostname
> > and have a place to display the information.

> First thing that comes to mind for all that... is a DOS batch program...
> that runs the series of commands and sends the information to a text file.

> If you really need a program to do that, you can use VB or VC++ or Pascal
or
> whatnot, even VBScript.

> Create a DOS text file with the DOS edit command.

> C:\>Edit DoInfo.bat

> You'll get a blue screen and type the following information into it:

> ipconfig /all > info.txt
> tracert %1 >> info.txt
> ping %1 >> info.txt

> To use VB you'll have to use a Winsock control.

> Go to http://www.mvps.org/vbnet and use the search engine to search ping
and
> you'll come up with a variety of things. The information is excellent
> information and the code and explanations there are the best you'll be
able
> to find anywhere.

> --
> Jim Carlock
> http://www.microcosmotalk.com
> Feel free to post back to the newsgroup for all to witness!



Wed, 07 Dec 2005 07:21:57 GMT  
 
 [ 7 post ] 

 Relevant Pages 

1. New to VB new example,,,Please

2. New to CR 8 and quiet new to VB I have got some problems

3. New to VB - converting a db from access to VB

4. New to VB: Best Database for VB app?

5. New Project: VB or VB.NET

6. New Project: VB or VB.NET

7. I'm New to VB, I wish to Pass 2 strs to a VB Function

8. VB project, iam new to vb

9. New to VB 6.0

10. New to vb.net, index question

11. New to vb.net - questions

12. New in vb.net 200?

 

 
Powered by phpBB® Forum Software