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 Mike Lewis 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. nkrst1

    Application using port 80

    I have an application that requires to telnet over port 80. It seems to hang on the connection state forever. I can access the same ip in a browser and I can ping it, so the port must be open. What am I missing? Thanks in advance... .n
  2. nkrst1

    Telnet port 80

    Seems like a lot of posts go unreplied in this forum, but I'll take a shot. I'm trying to install an application that requires to telnet to a server through port 80 (not sure why someone would do this, but whatever...). It will never connect. Port 80 is open for http and I can ping the domain...
  3. nkrst1

    Event ID's 4093 and 4128

    I am having the same issue; however, if I stop my NAV Real Time Scan (which fills the quarantine and causes the error above) from scanning imcdata, dsadata, & mdbdata, viruses get through, especially MyDoom attachments. Any other thoughts/suggestions?
  4. nkrst1

    read other page source as a text stream

    thanks for the response... The link above looks like I would have to load software onto the server. I don't have a dedicated host, so I'm pretty sure I can't load my own software onto it. Looks like they did this through VB somehow. I've done this through VB and Access by linking to a...
  5. nkrst1

    ' symbol problem

    Should be noted that '' above is two instances of the single quote ('), not the double quote(")
  6. nkrst1

    ' symbol problem

    Replace the ' with '' so it flows in the SQL statement. strName = Replace(strName,"'","''") rsCheckMet.Open "SELECT * FROM Cat WHERE NAME='"& strName &"'", adoCon HTH
  7. nkrst1

    read other page source as a text stream

    I would like to parse another web page as if I'm reading it in like a text stream. How would I go about doing this using ASP. I can't use ASP.Net... so, basically, I want to do something like the following Set objTextStream = objFSO.OpenTextFile ("C:\autoexec.bat", fsoForReading)...
  8. nkrst1

    CSS div not formatting correctly

    Thanks! I think that worked (though IE seems to do some weird stuff with the box model anyway)... anyway, I had height: 100%. I thought that would take care of the alignment.
  9. nkrst1

    CSS Book

    Jeffrey Zeldman has a great book: Designing With Web Standards HTH
  10. nkrst1

    CSS div not formatting correctly

    Been working on my personal website www.planet-thung.com When viewing this website in IE, the submenu on the right sometimes gets shifted down below the main content. Keep hitting Ctrl-R to reload the page until it happens. How do I make it stop? Mozilla and Opera have no problems. Thanks...
  11. nkrst1

    Supply VB Password in VB??

    Anybody know how to run code that will supply the password for the VB editor (not the Database) so that I can make updates to modules through code? If I try to run code that changes other lines of code, it won't let me until the password is given. I will eventually have other users run these...
  12. nkrst1

    change curdir to network dir

    I'm trying to get the CurDir variable to be a directory on the network (which is actually my documents mapped to '\\SERVER\USER_MYDOCUMENTS')... i know i need to change the drive before i can change the path, but chdrive doesn't like anything but a letter: chdrive "\\SERVER" will not...
  13. nkrst1

    Table locked when not being accessed

    Thanks. I did look for the .ldb files earlier, but to no avail. I eventually figured it out. I was running the code to update the table in the On_Open section of a form which was being called by the switchboard. Even though the On_Open event closed the switchboard, Access still thought it...
  14. nkrst1

    Table locked when not being accessed

    I set up some code to append a field to a table in a different .mdb file (opened up a new workspace, etc.). It worked the first few times, but now, after a corrupt compact/repair of the other file that has the table, I'm no longer allowed to do this from the file with the code. It keeps saying...
  15. nkrst1

    Change Page Setup for a Report On Open?

    Thanks but, Me.Printer is not recognized Me.Print prints the report. -n-
  16. nkrst1

    Change Page Setup for a Report On Open?

    I would like to check and conditionally change the Page Setup of a report when it opens. How would I do this in the On Open Event? I basically want to change these settings: Left, Right, Top, Bottom Margins Orientation of Page Basically all Column Data, Number, Row/Col spacing, Column Size...
  17. nkrst1

    Change Report Page Settings On Open?

    I would like to check and conditionally change the Page Setup of a report when it opens. How would I do this in the On Open Event? I basically want to change these settings: Left, Right, Top, Bottom Margins Orientation of Page Basically all Column Data, Number, Row/Col spacing, Column Size...
  18. nkrst1

    Report says I have 2048+ chars when I don't

    The result will be fine... it won't be too long, but it says that the expression is too long, but I cut and pasted it into word and did a character count which said that it was under 2,048 chars (can't remember now, but it was about 1,050 or so). Why does it say that there are too many chars...
  19. nkrst1

    background color on continuous forms

    I have a continuous form with fields: Employee ID, Name, Title, In/Out (dropdown box), and comments. This is for a headcount tracker that tracks when people leave or enter departments based on transfer, new hire, terminations, etc. I want to color code them so that at a glance you can see who...
  20. nkrst1

    Access says I have +2,048 chars when I don't.

    I'm simply adding a little bit of code to a control source in a report, but once I'm done, it keeps saying that I can't have an expression longer than 2,048 characters in control source, which it isn't. You don't have to read this, but if you do a cut and paste, i'm pretty sure that you'll find...

Part and Inventory Search

Back
Top