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 SkipVought 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. Snaggs

    Zip plug-in for Visual Basic

    Did you instantiate the object before using it? You need a line like this: Set m_cUnzip = New <class name> Where Class name is the name of the class that you want to create a new object of. You have to set a reference to the object first using the reference option on the menu in Visual...
  2. Snaggs

    Question about SQL Icon in system tray

    Thanks Jay, that's just the answer I was looking for. Snaggs tribesaddict@swbell.net Life can only be understood backwards; but it must be lived forwards.
  3. Snaggs

    Question about SQL Icon in system tray

    I noticed every once in a while that a red wiggily line appears under the SQL Server Icon in the system tray. What kind of significance does this have or what does it mean? This is the full version of SQL Server 2000. Thanks, Snaggs tribesaddict@swbell.net Life can only be understood...
  4. Snaggs

    CSS and SSI

    emblewembl, Thanks for looking at the files. For some reason my server was caching the pages so the changes to the CSS weren't taking effect. I rebooted the server and now all is fine. Thanks again, Snaggs tribesaddict@swbell.net Life can only be understood backwards; but it must be lived...
  5. Snaggs

    CSS and SSI

    emblewembl, Thanks for the response. I've tried moving it all different places in the table format. It just happened to be in that location when I made the post. Good observation though. I even tried putting Response.Buffer=True so it would build the page before sending it, but it didn't...
  6. Snaggs

    CSS and SSI

    jj26, Thanks for the response, can you give me a good example of the template you're talking about? If you have an existing one or you'd like to put one together as an example I'd very much appreaciate it. You can post it here or if it's too big you can send it to me at snaggs34@hotmail.com...
  7. Snaggs

    CSS and SSI

    OK, I have a header.asp, footer.asp and default.asp header looks like this: <head> <link href=&quot;style1.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot;> <title>Test Site</title> </head> <body> </table> <table border=&quot;1&quot; cellspacing=&quot;1&quot...
  8. Snaggs

    winsock client/server

    Opps, in lines 4 and 5, it should be that the SERVER is listening, not the client. Snaggs tribesaddict@swbell.net Life can only be understood backwards; but it must be lived forwards.
  9. Snaggs

    Incorrect record order in RDO Resultset

    Correct me if I'm wrong, but it sounds like the the stored proc is creating/adding records to a temp table, and then you're reading the records from the temp table. It's posible that you have an order by clause on your statement that creates the records in the temp table, but not an order by to...
  10. Snaggs

    winsock client/server

    Why not just try to connect to it? You could have a small routine on the server side that sends back a status. For exmaple, you could set the timeout on the client to be 2 secs (assuming you can get a connection in that time frame). Then issue a connect from the client. Then send a status...
  11. Snaggs

    winsock client/server

    If you want to see if the server is up, just ping it. If you want to see if the listener on the server is listening, that's a different story. Snaggs tribesaddict@swbell.net Life can only be understood backwards; but it must be lived forwards.
  12. Snaggs

    HTML Editing and Viewing

    Try this link: http://www.aspalliance.com/Yusuf/Article10.asp and then this one will save the data: http://www.aspalliance.com/Yusuf/Article12.asp Snaggs tribesaddict@swbell.net Life can only be understood backwards; but it must be lived forwards.
  13. Snaggs

    A question about Combobox ! ****** Urgent ******

    I have an FAQ that answers your question: faq222-315 It shows how to populate the combobox with the ID and the text. Snaggs tribesaddict@swbell.net Life can only be understood backwards; but it must be lived forwards.
  14. Snaggs

    on error resume next

    Well, you could do something like this, since it's not built into VBScript. On Error Resume Next InResume = True <Do some code> If InResume Then On Error Goto 0 InResume = False End If Snaggs tribesaddict@swbell.net Life can only be understood backwards; but it must be lived forwards.
  15. Snaggs

    file to mysql db via ASP

    So I guess in the statement select * from population where talent > 'average' ...that 'below average' would really be above average? Snaggs tribesaddict@swbell.net Life can only be understood backwards; but it must be lived forwards.
  16. Snaggs

    on error resume next

    Check the Err.Number to be sure it's 0 (zero). If it is 0, then an error has not occurred. Snaggs tribesaddict@swbell.net Life can only be understood backwards; but it must be lived forwards.
  17. Snaggs

    Now you see it, now you don't

    You mssccprj.scc and/or vssver.scc file in your project directory could be corrupted or missing. If VB doesn't see that the project is connected to source safe anymore, click on Tools-->Source Safe-->Add Project to Source Safe. Give it the same directory and same project name as you did the...
  18. Snaggs

    Sql result set too big

    Julie, Go out to SAMS website at http://sams.informit.com In the search window type &quot;ASP&quot; without the quotes. Go to the second page and click on the white book with the title &quot;Sams Teach Yourself Active Server Pages in 24 Hours&quot;. Now Click on downloads below the book...
  19. Snaggs

    Y2K Difficulty (I know, I'm 3 years too late)

    Greg, It's your locale settings. Go into the control panel and open your &quot;Regional Options&quot;. Select the Date tab and change the short date format to mm/dd/yyyy. Then run the program again. Now you should have a 4 digit year. Those Microsoft guys are sneaky aren't they...
  20. Snaggs

    Need help with a transform...

    shona, You don't really have to specify that the elements are hyperlinks unless you're going to include other types of elements in your xml file. For example. <web> <link>www.tek-tips.com</link> <link>www.microsoft.com</link> <link>www.oracle.com</link> </web> ...if your xml file...

Part and Inventory Search

Back
Top