Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: bmdb
  • Order by date
  1. bmdb

    VPN connection trouble...

    Check out www.softwarepatch.com and read about the loopback patch. This may or may not help.
  2. bmdb

    Close a shelled batchfile

    In the last line of the batch file place the word "EXIT" without the quotes. That should do it for you.
  3. bmdb

    If Date Greater than -

    ZOR, try here for information on retrieving system date settings. http://vbnet.mvps.org/code/locale/localeenumdates.htm
  4. bmdb

    Can I shut down my PC usig vb code?

    Here you will find a good example of how to use it.... http://vbnet.mvps.org/code/system/exitwindowsex.htm
  5. bmdb

    Simple Ping

    If you go to the following link you will find an app that does exactly what you want and it includes vb6 source code as well. http://www.karenware.com/powertools/ptnetmon.asp
  6. bmdb

    An error I have not yet seen!

    It may just be a simple Time-Out issue. Try increasing your time-out setting.
  7. bmdb

    Simple Ping

    Place all the code from that thread in a module. Now on a for m put a command button and paste the following code. Private Sub Command1_Click() Call PingAddress("www.jeffmarler.com", "Echo This") End Sub This works for me. Your error just means that you either need to change the...
  8. bmdb

    FTP Program

    Can you be more specific about what part is not working and maybe post a bit of code showing that portion so we may better understand what is happening and maybe provide some help.
  9. bmdb

    I Can´t receive email!!!

    What exactly was the problem with the router? What did you do to fix it?
  10. bmdb

    I Can´t receive email!!!

    What is the Mfr./model of your router? Are you accessing the Internet through a proxy server as well as the router or just the router? Have you checked your GWPROB directory for messages there? If there are incoming messages here then they are making it past the router and the problem(s) at the...
  11. bmdb

    I Can´t receive email!!!

    bynico27, please disregard my posts. I had a brain fart. Sorry for any confusion on my part. It has been one of those weeks. :-)
  12. bmdb

    I Can´t receive email!!!

    I have ONLY GroupWise client here. The as well comment meant "as well as you". Sorry for the confusion. SMTP Port 25 is for OUTGOING mail. I would suggest that you try setting up port 110 in your router. It won't hurt anything to give it a shot. Routers and Server configurations can be...
  13. bmdb

    I Can´t receive email!!!

    I am using GroupWise client as well. I have my router set to forward to TCP & UDP ports 25 and 110. All is working fine for me.
  14. bmdb

    Net send chat program

    Do a keyword search on this forum and you will find info on how to do this as it has been covered several times I think.
  15. bmdb

    Network Card tcp/ip Settings

    Yes. Using API or through the Registry or by using Netsh with command line options called from VB. I am not 100% positive on the API though but am pretty sure.
  16. bmdb

    I Can´t receive email!!!

    Port 25 is your SMTP port for outgoing mail. Incoming mail should be going to port 110.
  17. bmdb

    Port 1030 open

    Port 1030 IS a valid port and as I said netstat will show any program that may be using that port. This link will explain port 1030 a little. http://grc.com/port_1030.htm
  18. bmdb

    Current Date and Time when option button is selected

    The code I supplied is the click event for both option buttons. Don't paste the code in the click event paste the code in the empty IDE as is. The only code you should see in the IDE is what I have above and maybe Option Explicit at the very top.
  19. bmdb

    Current Date and Time when option button is selected

    To test the code start a new project and add 2 option buttons and a textbox. Name the options InProgress and Completed. Leave textbox as text1. Copy this code and run it. Private Sub Completed_Click() Text1.Text = Now End Sub Private Sub InProgress_Click() Text1.Text = "" End Sub...
  20. bmdb

    Do Loop Until Minute = Value

    If you still have issues after trying the timer solution you could post part of the code in question so we could see how your doing this. Also, does the code do anything else besides the copy (backup)? Depending on what and when, this could be causing some problems too. I suspect adding the...

Part and Inventory Search

Back
Top