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!

Recent content by czbear

  1. czbear

    Network Interrupting Disconnecting

    Running wondows 2000 any version. In the past 60 days I've noticed that the network connection intermittently disconnects. goes Network Cable Unplugged for a few seconds and then comes back in.
  2. czbear

    Basic ASP programming Error

    aint gone work, Its a nice solution but I have an include File which is outside of the page code. It's global code and operates independent of the page code. Technically I could use what you have but the question is still there... What do I need to do to write functions and subs between <% ...
  3. czbear

    Basic ASP programming Error

    I'm trying to migrate to .NET it would seem that the books I have have left out some of the fundamental structures. I have the traditional .NET event driven <scipt> blocks and the page load event. What I have done is write some global security proceedures in an .NET include file using <% ...
  4. czbear

    Win2000 server and win XP problem

    DNS - DNS. I just completed months of troubleshooting. I set the LAN DHCP to point to an outside DNS. Because Win2K Servers have NetBios Helper it worked but then we added an XP Laptop and no connecto. The resoution was to revert to Domain Controller DNS for DHCP. WinXP pro >requires< DNS...
  5. czbear

    IIS's SMTP server can't send out email

    This may sound rudimentary but.... Make sure the SMTP service is running in the services under adminitrative tools advanced in the control panel. In addition to that make sure the SMTP server is running and properly configured under the IIS MMC.
  6. czbear

    XP Wireless LapTop Can See Host then Network Connection Is Lost

    We had this same problem. We're running a Win2K domain and LAN/DMZ/WAN Firewall with private & public servers. Read this: http://support.microsoft.com/default.aspx?scid=kb;en-us;315978 It's CRAZY to think WIN XP can have it's netbios packets blocked on it's own segment but... Enabling NetBios...
  7. czbear

    FSO Methods Nurfed by Microsoft ? ?

    Its not an error per se, just functionality that no longer works. Lets say there are 30 files in the directory. The for next would loop 3 times and fcount would end up with a value of 30. Now it ends up with a value of 1 and the code didn't change. Some different behavior in VBScript I suppose.
  8. czbear

    FSO Methods Nurfed by Microsoft ? ?

    Had a line running for better than a year. It loops though the files collection and sets a counter to the number of files it finds: Set fsf = fs.GetFolder(thstring) For each file in fsf.files fcount = fcount + 1 next Then I come into work today and find it doesn't work. Noone changed the...
  9. czbear

    Remove Carriage Return

    > var address1 = &quot;<%=Trim(l_objQuoteSummary.Address1)%>&quot;; Problem is that l_objQuoteSummary.Address1 probably has the carriage return but you can apply the solution to any of the three. I use replace to strip out unwanted characters: var address1 =...
  10. czbear

    DTS Truncating Huge Varchars

    I've got a table that holds paragraphs of a master document. The column graph_text varchar(8000) gets truncated to NULL when doing 100% object/data DTS. I've tried MDAC 2.7 and it didn't help. I know it's a bad datatype design but redesignating it will be a killer. Anyone have any ideas on...
  11. czbear

    Print Table(s)

    Well I'd go into Query Analyzer(MS SQL program) which is where I've done my printing. Open Query Analyzer, then connect using the same settings you would in EntManager. Select the correct database in the dropdown. Type: SELECT * FROM [tablename] You can view result in text or grid (toolbar)...

Part and Inventory Search

Back
Top