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

  • Users: mishbaker
  • Content: Threads
  • Order by date
  1. 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...
  2. 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...
  3. 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)...
  4. 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.
  5. mishbaker

    SQL Server 2005 DB Replication

    I am currently trying to setup Replication between two Servers. I completed the Wizard for my Publication and my Subscription. The Publication Type: Transactional (w/ Updateable Subscriptions) So I make a change to the publication server and sure enough it propagated to the subscribing...
  6. mishbaker

    Running out of IP Addresses

    I have begun to receive the Event Log Warning that my current Subnet is running low on IP Addresses to hand out. I've looked at SuperScoping and Supernetting. I think Superscope looks like what I want so I've tried to set it up. I created a superscope and put my 192.168.2.0 and 192.168.3.0...
  7. mishbaker

    DB Info displays as Text in ASP not Hyperlink

    My HTML stored in a SQL database is coming out text. Here is what I have on my index.asp response.write "<p><table align='center' width='100%' cellspacing='0' cellpadding='0' border='0' class='box'><tr><td width='125' align='center' class='box_top'>" + rs.fields("Header") + "</td></tr><tr><td...
  8. mishbaker

    Using Access (VBA) to connect to an SQL Server 2005 DB

    I'm trying to connect to an SQL table on my SQL Server 2005. My connection string is creating a valid connection and I can read the data on the table. Unfortunately I can't write/edit data on the SQL table. Am I not doing something right? Sub getSQL() Dim conn As ADODB.Connection Dim fld As...
  9. mishbaker

    Cannot Create or Attach DB in SQLSEXPRESS

    Using the SQL XM to create a new database, I connect remotely to my server (Ok), then I try to create a new database. Nothing fancy just the default. It gives me the following error: TITLE: Microsoft SQL Server Management Studio Express ------------------------------ Create failed for...
  10. mishbaker

    Import/Export Tables

    Using my front-end, I need to export tables to an export.mdb that can be sent via email. The back-end is secure and presenting problems for me. I'm trying to transferdatabase from the back-end into my front-end then transferdatabase to the export.mdb. After that is done it is set to delete...
  11. mishbaker

    Copy Tables from two different databases

    Ok, I've been trying to implement a sort of "import/export" featre into a database. I would like to take the tables from a database and import them into my current DB's backend. (that just sounds dirty). Maybe open a workspace and then open the two databases? I need to keep the "autonumber"...
  12. mishbaker

    Insert Excel to Powerpoint....sounds easy....

    I would like to have a power point slideshow based on one of my excel worksheets. My goal is to have each page (defined by pagebreaks) of my worksheet dynamically update a slide in the powerpoint presentation. Sure I can insert a worksheet onto a slide but the worksheet is so long that I would...
  13. mishbaker

    FileSearch a different domain on network

    Within our WAN we have several domains, how can I specify my filesearch.lookin to search in a different domain? Also, it searches fine through c:\Folder1 and \\Server1\Folder1, but .lookin = "\\server1" doesnt work, and neither does .lookin = "\\server2" or .lookin = "c:\" The help file in...
  14. mishbaker

    On Application Exit or On Print

    I'd like to have Access execute code before the database closes or when a user clicks the print menu bar button. I'm not sure how to go about doing this though. All lessons learned from the School of Hard Knocks........at least tuition is cheap.
  15. mishbaker

    Tricky Error: -2147417848

    The Setup: I have a main form with a listbox to the left and a subform with a listbox on the right. As the user selects an item from the main listbox the listbox on the subform(to the right) should update to reflect such. When the rowsource to the subform contains a query with: right([NSN]...
  16. mishbaker

    Invalid Use of Null ??

    I have this code in my form to check and see if a DOC# has already been used and return the ITEM# of the item it was assigned to if it has been used. Otherwise it should return a NULL value. stDOCUsed = DLookup("[Item]", "PartsRequestData", "[DOC] = '" &...
  17. mishbaker

    Longer Pause On Startup &quot;Splash&quot;

    I created a little BMP image to show when Access is starting up my database. But you only see this quick "subliminal" flash of that splash screen then the database opens. I was wondering if there is some way to delay on that splash screen just a second or so. :) All lessons learned from...
  18. mishbaker

    Export to a Web Page

    Hello all, I was wondering if this was at all possible. At my company we use a database I designed to order our parts and print out the official requests which are then sent to out supply managers to be purchased. Now our supply managers have their "order form" on a website. Problem is you...
  19. mishbaker

    Detect State of a Form

    What command/code could I use to detect the state of a form? For instance, if it is open or not. I'm pretty sure there has to be a command for this already and I'm just missing it in the help file. Currently I have the form setting a global boolean onload and onunload. If the form is open...
  20. mishbaker

    Retrieving Log-in Information in a Secure DB

    If I secure a database and a user does his login, how can I retrieve his User Level (i.e. Admin, Guest, SuperUser, Chump, etc) to restrict the viewing of certain controls on my Main Menu? All lessons learned from the School of Hard Knocks........at least tuition is cheap.

Part and Inventory Search

Back
Top