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 Wanet Telecoms Ltd 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: IDTstudios1
  • Content: Threads
  • Order by date
  1. IDTstudios1

    streaming video?

    Here's my situation. I have forty to fifty IP cameras. I need to be able to have a program sitting on a server that will pull feeds off of the cameras and distribute the feeds to client programs throughout the building. What are my options for the streaming video? Any ideas would be...
  2. IDTstudios1

    VB6 question

    I'm about to start a new project and I don't know whether to do it in VB6 or .NET. I love VB6 and have used it for years but I don't want to code a project in VB6 and have it become obsolete in the next few years. The project will be dealing with IP cameras and many picture boxes if that...
  3. IDTstudios1

    add break after every line?

    i'm using this link service that formats it's linke like so: link1 link2 link3 The only thing they allow me to configure is the name of the div the links are in. So basically I need to turn the above example into this: link1 link2 link3 Any ideas, thanks
  4. IDTstudios1

    save webpage to text file

    I need to be able to save a webpage on another server to a text file on my server. I know how to save the data to a text file but I am drawing a complete blank on which function to use in order to get the data from the other server. Any thoughts? thanks
  5. IDTstudios1

    file last modified

    Could someone please tell me how to check if a file was modified less than X number minutes ago. I can get dates to work but not minutes. basically I need this: if (string.txt = modified < 30 minutes ago) { } else { } Any input would be great, thanks.
  6. IDTstudios1

    div help

    I have this gallery page that shows some of my pictures. now, my problem is that the picture appear in one long column. I would really like them to appear in two columns if possible. Could someone show me how to do this? here's the page (just click on something in the sidebar and you'll see...
  7. IDTstudios1

    parse error. quick question

    It's been a while since i've worked with html or javascript like this so I know i'm doing something wrong. The following code keeps giving me a parse error. could someone help me out here. thanks echo '<a href="javascript://"...
  8. IDTstudios1

    directory script problem

    The following script keeps puting dots before the actual directory. Basically it outputs: <a>.</a><br><a>..</a><br><a>testone</a><br><a>testtwo</a> when it should output: <a>testone</a><br><a>testtwo</a> Script: $dir = "albums/"; if (is_dir($dir)) { if ($dh = opendir($dir))...
  9. IDTstudios1

    firefox javascript problem

    the followign script works just fine in IE but doesn't do squat in FF: <script language="javascript"> <!-- function changeDivHeight() { var h =document.getElementById('main').style.height; document.getElementById('sidebar').style.height = h + 200; } onload = changeDivHeight; --> </script>...
  10. IDTstudios1

    redirect question

    Ok, this might be a little hard to grasp unless you are a php programmer or similar. I have a domain called somebiz.com and somebiz.org they reside on the same virtual hosting account and have a script that sits in the root WWW folder that redirects to subdomains based on the domain used to...
  11. IDTstudios1

    redirect question

    Ok, I have a domain called somebiz.com and somebiz.org they reside on the same virtual hosting account and have a script that sits in the root WWW folder that redirects to subdomains based on the domain used to arrive at the site. In other words: If person A types in somebiz.com the script will...
  12. IDTstudios1

    google maps question

    can anyone explain how google pulled off the scrolling map and how the images are loaded as tiles. I need something similar for a college campus map. If someone could just point me in the right direction that would be great. Thanks, Andrew
  13. IDTstudios1

    GD help with tricky situation

    the following fuction draws lines onto an image. The data comes from an e00 geographic vector file. Is there anyways that I could modify the following code to "fill in" everything in the middle of the lines? class e00 extends map { /** * draws a datafile into the image * *...
  14. IDTstudios1

    Image_GIS

    I know this is a long shot because very few people use Image_GIS. I'm refering to the PEAR package. Anyways, can anyone tell me which projection the data needs to be in for Image_gis to correctly render it? Thanks
  15. IDTstudios1

    can this be done?

    Is there anyway that the following java code can be pulled off by javascript? I know the two languages are very different so i'm asking before I dive into trying to figure it out myself. This will be for a firefox extension so that may clear up a few questions. File f = new...
  16. IDTstudios1

    Java novice needs a little help

    I'm primarily a PHP and programmer, however a recent need to pull off a certain function has tossed me into the Java world. I found the snippet of code below on another thread. It does exactly what I need, I just have no clue on how to compile it. I know enough to have download the Java SDK...
  17. IDTstudios1

    upload file to server

    I need to be able to upload a file from a java app to a web server. The scripting language on the server to handle to handle the upload could be either javascript or php. Any ideas on how to do this?
  18. IDTstudios1

    java and php

    what would be the best way for a java app to communicate with a php script? is there anyway this can be done. Thanks, Andrew
  19. IDTstudios1

    mass file storage question

    Here's the situation: There will be about 25,000 xml files that will range in size from 100kb to 5mb. Around 600 to 1,000 of these files will need to be accessed every minute. Now, I have two options as far as storing these files: 1) MySQL for authentication and just save the files as...
  20. IDTstudios1

    tricky file upload situation

    I've been trying to figure this out for three days now and have had no luck so far. This is what i need the script to be able to do: I need to be able to call a script like this: upload.php?file=c:\test.xml and have that script upload the file. You would think this would be easy but I just...

Part and Inventory Search

Back
Top