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 Chriss Miller 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: *

  1. mishbaker

    Learning VB.NET Net.Sockets

    No :( I wasn't. It was a long night. Does that excuse fly here? All lessons learned from the School of Hard Knocks........at least tuition is cheap.
  2. mishbaker

    Learning VB.NET Net.Sockets

    There were so many things wrong here I can't begin to explain them all. First. You have to actually start the Server and Timer so it can check. Second. You have to close the StreamWriter on the Client end before the StreamReader on the Server end can finish up its job. Lessons learned...
  3. mishbaker

    Learning VB.NET Net.Sockets

    I put together a little app that runs a TCPListener and TCPClient class. I wanted to enable them to send little messages back and forth. I've disabled the firewall completely for testing purposes. Server Code Public Class ServerSide Private _TCPListener As New TcpListener(IPAddress.Any...
  4. mishbaker

    Access 2003 - Referencing Other Records in a Query

    SELECT ROW_NUMBER() OVER (PARTITION BY Field1 ORDER BY [index] )AS CreatedField,* FROM TestTable All lessons learned from the School of Hard Knocks........at least tuition is cheap.
  5. mishbaker

    replicate data based on record criteria

    Couple of ways depending on your setup. This article explains how to use CURSORS and SELECT statements to loop through your table and INSERT the necessary rows. It should flow something like this: UPDATE current cable_num fields to include the '_1' on the end since they probably will all...
  6. mishbaker

    3COM 5232 Router Configuration

    Ooops. Typo. The above should have been How would it know to get out to the *internet*. Also, NAT. How is this setup manually? All lessons learned from the School of Hard Knocks........at least tuition is cheap.
  7. mishbaker

    need sone help on how to assign prices to combo box list

    A few ways to do it. I guess the easiest is to set the bound column of the cboDoughnuts and cboBeverages to their prices, then in the onclick event of the cmdButton you have do the calculation. sub cmdTotal_Click() cboBeverages + cboDoughnuts = curTotal msgbox "Your total is: " & curTotal...
  8. mishbaker

    3COM 5232 Router Configuration

    This is the first time I've ever had to setup a *real* router. I've used some Linksys routers before but they all had a GUI and made things pretty easy. Now I have this 5232 and have no real clue how to set it up. I've been playing with it for a couple of days now and have figured a few...
  9. mishbaker

    How to tell if script ran successfully

    I assume this is a script that runs on the DC nightly? I would use one of two methods. For a general "this script ran un/successfully" message, you could go with an Event Log entry. This will tell you wether or not it ran and with what error it terminated with. Set oShell =...
  10. mishbaker

    dumb Question..What does a recruiter mean by ADO experiance?

    If you can create ADO objects and use them, you know ADO. From there it's just levels of proficiency. All lessons learned from the School of Hard Knocks........at least tuition is cheap.
  11. mishbaker

    Unable to browse web sites after server migration

    Had this problem when I upgraded to 2k3. I uninstalled and re-installed IIS then went back and configured my settings again. Everything started working after that. All lessons learned from the School of Hard Knocks........at least tuition is cheap.
  12. mishbaker

    Difficult trust problem between forests

    You have this posted in 2000 as well. Which OS is it? All lessons learned from the School of Hard Knocks........at least tuition is cheap.
  13. mishbaker

    Difficult Trust Problem between forests

    Sorry guy, but I'm pretty sure you're hosed. In order for a trust to work the NetBios names must be unique. If you abosolutely require this you could possibly upgrade to Win2k3 and rename your internal domain? Just a thought. All lessons learned from the School of Hard Knocks........at least...
  14. mishbaker

    network adapter which slot and port

    If you haven't found the answer yet, try Win32_SystemDevices. All lessons learned from the School of Hard Knocks........at least tuition is cheap.
  15. mishbaker

    Run from an HTA

    Thanks guys. Also, WMI Ping won't work since this is being run on some Pre-XP systems. But thanks for the response. ((Oh yes, bow down before the WMI)). All lessons learned from the School of Hard Knocks........at least tuition is cheap.
  16. mishbaker

    Run from an HTA

    Ok I've banging my head off the desk on this one... Why doesn't this work? I'm using it as the onclick event for a button in my HTA. <html> <head> <script type="text/vbscript"> sub mit() set oShell = CreateObject("WScript.Shell") iRes = oShell.run("ping 192.168.2.1 > pingres.txt", 0)...
  17. mishbaker

    References

    Ugh... Thanks, All lessons learned from the School of Hard Knocks........at least tuition is cheap.
  18. mishbaker

    References

    How do you programmatically add references to Outlook at runtime? (outlook 2003) Thanks, All lessons learned from the School of Hard Knocks........at least tuition is cheap.
  19. mishbaker

    SQL Server 2005 DB Replication

    Ok, so my subscriber now has the database tables. It even added a rowguid to the table. But now I cant add data to those tables on the subscriber. Am I missing something? All lessons learned from the School of Hard Knocks........at least tuition is cheap.
  20. mishbaker

    SQL Server 2005 DB Replication

    I'm using merge and it works well. So far... Thank you. All lessons learned from the School of Hard Knocks........at least tuition is cheap.

Part and Inventory Search

Back
Top