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!

Search results for query: *

  1. tswitz00

    php mechanize

    I have a php script modified from cgi-interactive that uses the COM InternetExplorer.Application to open up a browser log on to a form and submit it. It works great if its ran from the command line but I need it to be ran from a browser, any suggestions? //class class MechanizeIE { var...
  2. tswitz00

    opening new connection from page to page

    Here is my original post and problem: "I think this may be a session issue but not sure if it is or how to fix it. We have been experiencing a lot of lag in one of our sites so I took a look at all the open ports and it looks like every time someone clicks to go to a new page on our site it...
  3. tswitz00

    Opening new connection from page to page

    Thanks, I just posted it in the IIS section so hopefully I will have some luck there.
  4. tswitz00

    Opening new connection from page to page

    I thought this may be a php session issue and I posted it in the PHP forum and someone suggested that it is an IIS issue Here is my original post and problem: "I think this may be a session issue but not sure if it is or how to fix it. We have been experiencing a lot of lag in one of our...
  5. tswitz00

    Opening new connection from page to page

    I think this may be a session issue but not sure if it is or how to fix it. We have been experiencing a lot of lag in one of our sites so I took a look at all the open ports and it looks like every time someone clicks to go to a new page on our site it opens up another connection. So we will...
  6. tswitz00

    PDF blob

    is perl capable of decompressing any of those algorithms?
  7. tswitz00

    PDF blob

    I have a database where a pdf was encoded (possibly compressed) and stored in a blob field. What is the best method to decode that blob back into a pdf using perl? And what are some of the common methods of encoding a pdf for storage in a blob field?
  8. tswitz00

    Passing objects

    Ah guess it was it wasnt as complicated as I thought. got it, thanks.
  9. tswitz00

    Passing objects

    I need the syntax for the function to pass an object To just pass a string you can use Function Hello(ByVal Name) Hello = "Hello" & Name ... right? But what if I want to pass an object and use it like this Function object(object) object.sometask ...
  10. tswitz00

    Passing objects

    Keep in mind I am fairly new to vbs. What I am trying to pass an object to a function. So I have function1 () 'this function works ... create object ... return object function2 (object) 'need to be able to pass object to this function and use it object.sometask
  11. tswitz00

    vb to perl

    I have this vb code that works like it is supposed to but I would like to write it in perl but I am having a little trouble with the conversion. Here is the vb code Dim DB Set DB = WScript.CreateObject("object.Name") DB.Open "Param1", "Param2", "Param3", "Param4" DB.Login "Username"...
  12. tswitz00

    create new COM object

    I am not sure if you can do this in perl or not but I trying to access this API and you need to create a new COM object "object.name" that is associated with the programs API. I have the associated .dll and it appears to be registered correctly in my windows registry. How would I go about doing...
  13. tswitz00

    find date and time information for a folder

    use File::stat; use Time::localtime; $date_string = ctime(stat($file)->ctime);
  14. tswitz00

    find date and time information for a folder

    How can I use perl to find the creation date of a file or folder?
  15. tswitz00

    reinstall mssql ODBC drivers

    I actually got it figured out. It turned out to be a registry issue, for some reason the list of drivers was deleted from my registry so I just exported them from another station in my office and imported them into mine and it worked fine.
  16. tswitz00

    reinstall mssql ODBC drivers

    Tried new link and got this error: "Fatal Setup Error This setup does not support installing on this operating system
  17. tswitz00

    reinstall mssql ODBC drivers

    I downloaded and ran from link and I got this error "MDAC 2.8 RTM is incompatible with this version of Windows. All of its features are currently part of Windows." Currently I am running XP pro SP2
  18. tswitz00

    reinstall mssql ODBC drivers

    A while agao I had the blue screen of death and I am pretty sure it messed up some registry entries and now my ODBC admin cant find any drivers so I am trying to reinstall them but I cant seem to find them anywhere.
  19. tswitz00

    iframe

    I imagine you are talking about putting the ID on an element within the source file? I am not able to edit the source file.

Part and Inventory Search

Back
Top