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. markhkram

    VB 2005 Connection to MS SQL 2008 Server

    Thanks! I appreciate it. Do I need a .Close() on that? Or does it automatically close? Thanks again!
  2. markhkram

    VB 2005 Connection to MS SQL 2008 Server

    I have a newbie question, that I have been trying to find, but cannot find anything. Not sure if it too simple to find, but here it is... I have a vb 2005 app, and a database with 1 table in MS SQL 2008. All I want to do is a simple SELECT query on the 1 table. Can someone give me a quick...
  3. markhkram

    Problem with uploading a picture to my website when the www. is infron

    Hi, I'm not sure if it is setup to accept wildcards, I will try to find that out. It resolves the same for both addresses. It doesn't throw an error, it just says "sending files to server..." It should say that for a few seconds and then should say "finished". But it just never finishes when...
  4. markhkram

    Problem with uploading a picture to my website when the www. is infron

    Hi, good question. It uses .php to send to the flash file, and then a .php file to receive the output of the flash file. As far as I can tell, I think the problem is in the coding that receives the output, as it works perfectly when not using the www in the address bar. Here is the code that...
  5. markhkram

    Problem with uploading a picture to my website when the www. is infron

    I have a website that I have used the following on: http://www.adylevy.com/index.php/2009/07/22/multiple-files-uploader-with-preview-on-client-side/ Well I had to set the uploads directory to 777 in order for it to work... It works great! HOWEVER, it only works when I don't have the...
  6. markhkram

    Resize an existing image on my server

    Thanks that worked fine... :)
  7. markhkram

    Resize an existing image on my server

    I tried that, but couldn't get it to work on already existing images... :S
  8. markhkram

    Resize an existing image on my server

    I have a bunch of images on my server that I'd like to write a php file that will grab the existing file in a directory, and scale it down to thumbnail size, and place the new file in the same directory under a different name. So basically make the existing /folder/1.jpg (which is 640x480) into...
  9. markhkram

    Session Problem

    So I have a problem with a Session. I have 2 sessions set on separate pages, but both post to index.php. Both work perfectly well on my machine I setup with php & MySQL. However when uploading to my 1&1 webhost, only the ResultsToDisplay will stay in session while I am logged in. The...
  10. markhkram

    MySQL Connector for VB 2005 is taking a long time

    I figured it out, just a weird problem with my mysql server...
  11. markhkram

    MySQL Connector for VB 2005 is taking a long time

    I have a vb app which connects to a mysql database using the latest MySQL connector for .net. I just have very simple code which opens and closes the connection. It takes 3 seconds. Using the same MySQL database, I have a php webpage from the same computer as the .net application, connect in...
  12. markhkram

    vb .net 2005 connecting to MySQL database - Wont drop connection

    Ok, so I found out I need to connect to the database again while logged in. However with Pooling turned off, the connect time takes about 5 seconds to re-connect, and pooling turned on was less than a second. This is just awful, since I have thousands of users that will connect, but the 5...
  13. markhkram

    vb .net 2005 connecting to MySQL database - Wont drop connection

    You are a genius! Thanks it worked! What benefit does Pooling have?
  14. markhkram

    vb .net 2005 connecting to MySQL database - Wont drop connection

    I've created a simple MySQL database with the MySQL connector connecting in my vb .net 2005 project. Everything works & connects great. However, when using the command "show processlist;" in mysql command prompt, I see the open connection from my vb project, even after a "connection.close"...
  15. markhkram

    Displaying multiple lines from field

    Figured it out, had to use the following: echo str_replace("\n", "<br>", $Comment);
  16. markhkram

    Displaying multiple lines from field

    I have a basic MySql database, and am trying to display a field with multiple lines entered. Only 1 line displays. For example, the following text entered: Line 1 Line 2 Will display the following when retrieved: Line 1 Line 2 However in PHP My Admin when displaying the record, it displays it...
  17. markhkram

    Best database to use for lots of connections

    Thanks! I was thinking about MySQL since I have used it a lot more than SQL and MSDE. I'll probably just stick with it... I appreciate your input. :)
  18. markhkram

    Best database to use for lots of connections

    I have an application that uses a file system (text files), and want to start using a database to retrieve information. I have an increasing number of clients who will be accessing this information constantly (will be about 60,000+ computers eventually). What would be the best database to use...
  19. markhkram

    Help switching tabs using javascript

    I have used the following code to setup a tab system on my website: http://www.barelyfitz.com/projects/tabber It works great, but I'd like to have a text link at the top of the page that will automatically turn to the 2nd tab. I can't seem to figure it out or find any solutions. Is there...
  20. markhkram

    Running my vb 2005 app from another computer

    Ok, so I used CasPol.exe to edit the security policy on the local machine, and it works great. However, since I will be deploying this to a lot of people, I don't want to mess with CasPol.exe if possible. Is there a way to turn off security of the application when I compile it so that it...

Part and Inventory Search

Back
Top