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

    Variable's value instead of name

    How do you use the value of a variable in a statement instead of it's name? For example, you have a function Sub QueryDB(strRSName, strQuery) Set strRSName = Server.CreateObject("ADODB.Recordset") strRSName.Open strQuery, objConn, adOpenStatic, adLockReadOnly End...
  2. JimEkleberry

    Class problems

    Here is some additional information. The User class extends the Base class. When I change the Address class from extending the User class to extending the Base class it works. Any ideas why?
  3. JimEkleberry

    [PLEASE HELP] Passing variable to new page

    Have you tried passing the product_id as a parameter to the pop() function (i.e. pop(1))?
  4. JimEkleberry

    Class problems

    Okay, I have a very wierd problem that I am hoping you can help me out with. I have a user class and an address class that extends the user class. I have a classes.php file that loads all of the classes. When I attempt to add the address class everything stops. When the address class isn't...
  5. JimEkleberry

    Which Operating System would you prefer in connection with VFP?

    For development, either XP Pro or Win2K Pro. Win 98/ME are okay for testing but definitely not for development. Also be sure to have at least 128mb of RAM - it makes a big difference with VFP.
  6. JimEkleberry

    FoxISAPI

    Does anyone here have experience with using the FoxISAPI? I have 2 questions right now- 1. How do to get the running instance of the application to shutdown when Windows is restarted? I am currently having to execute a reset command on it manually before restarting Windows but that will not...
  7. JimEkleberry

    web-enabled Access db

    The “Access 2000 Developer's Handbook Set" is good but I found that working with ASP wasn’t covered very well and left a lot of questions. The book I recommended walks you through using Access and ASP together; such is the reason for the recommendation. :-) Your choice of editor is...
  8. JimEkleberry

    connection experiment: all non uk web users please help

    With my ISDN connection from Jamestown, TN: http://www.thekidswindow.com/html/index2.asp took 12 seconds to load and "seemed" slow. http://www.kidswindow.co.uk/html/index2.asp to 10 seconds to load but "seemed" much faster. I hope that helps!
  9. JimEkleberry

    web-enabled Access db

    Definitely use ASP over Access's DAPs. I great book that will get you started and make a very handy reference during your coding is “Web Database Development : Step by Step” by Jim Buyens (ISBN 0-7356-0966-7). Available at Amazon.com for $34.99...
  10. JimEkleberry

    Submitting a form containing only 2 hidden values (NO SUBMIT BUTTON!)

    Your suppliers might want to consider customizing their ASP pages. While the traffic that you are generating will not be the noticeable, if there are 10 other people doing the same thing that you are doing, their server is going to become overloaded pretty soon. Not to mention the speed...
  11. JimEkleberry

    Selecting/Deleting duplicates in a table?

    Check out this article: http://www.sqlteam.com/item.asp?ItemID=3331
  12. JimEkleberry

    OLE-DB provider string

    How do you find out the proper provider string for a particular ole-db driver? Where is this information located? This question pertains to VFP 6.0 right now but any general information would be greatly appreciated.
  13. JimEkleberry

    Resize Images(thumbnails) on the fly

    Just remember the PHP_GD library can only work with images with 256 colors or less. I use ImageMagick (http://www.imagemagick.org) myself and find that it works very quickly without using a lot of the servers resources.
  14. JimEkleberry

    PHP, Win2k Advanced server, IIS 5 no workey!

    Go into Internet Services Manager, right-click the Default Web Site, select properties, click the Home Directory tab, click the Configuration button, on the App Mappings tab scroll the list to the bottom to the entry for php, select the php entry, click the edit button, and check the Check That...
  15. JimEkleberry

    Problem with printing query result

    Thank you for the clarification and explanation.
  16. JimEkleberry

    Problem with printing query result

    Why do you think the for loop only reads every other record instead of each record? The counte is incrementng by one so it is grabbing each record as it loops.
  17. JimEkleberry

    Moving database

    No, it wont be difficult so long as you do as Anikin suggests and use relative pathing and definitely use include files for all of your connection processing. Moving a database is very easy, especially if you have phpMyAdmin. If not, you can execute: mysqldump --opt database > backup-file.sql...
  18. JimEkleberry

    MAX_FILE_SIZE, stop upload of files that are too big

    Here is a trick that can help, but it is most definitely not bulletproof. As Anikin suggested, set the proper parameter in your php.ini file. Create a form field as such: <input type=”hidden” name=MAX_FILE_SIZE” value=”1000”> value is the maximum size in bytes that you want to allow. Place...
  19. JimEkleberry

    MySQL and Php

    Are you sure that your webhost supports ASP? Usually when PHP files are provided the host is *nix based and doesn't support ASP. What type of database will you be connecting to? So long as you can create a DSN for it you will be able to create an ADO connection. From there you can do...
  20. JimEkleberry

    Migration from MS solution to *nix solution

    First I would like to say &quot;Welcome to the club&quot;. I switched from a Win2K host to a *nix host by choice. I am in the process of re-creating my site along with all of my customer sites to use PHP/MySQL instead of ASP/(Access or SQL Server). I can’t say that I haven’t been challenged...

Part and Inventory Search

Back
Top