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: mpopnoe
  • Content: Threads
  • Order by date
  1. mpopnoe

    Timing out - is this code to cumbersome?

    I thought this was a slick approach but now that I've loaded alot more data into MySQL the same PHP code I was using to render the page is now failing. I'll give a brief description of what I am doing and then put some code in for you to see. The basic approach I'm using is on the load event...
  2. mpopnoe

    Setting the selectedIndex of <select> in FireFox

    I have 5 dependent drop-downs (<select> objects) that after I submit the form to complete the search I want to display the drop-down lists to their previous selections. This works flawlessly in IE but fails to fire in FireFox. To keep the code simple to view since there is lots of it, I'll...
  3. mpopnoe

    Advanced &lt;img&gt; src change

    I've found a lot of useful code but just can't seem to get this to work. Ok, the software shows images of real estate that a user searches for in a search results page. now, my databases image fields will always be populated since I auto-generate the photo filenames based on the MLS # of the...
  4. mpopnoe

    select unique records based on multiple columns

    What I'm trying to do is find unique records based on a compound unique key, that being 5 columns for this example. In order to do the filter, I place the columns in columns 1-5, hide the remaining columns and filter. That part works fine, the only problem is when I try to select just the...
  5. mpopnoe

    Create an XML document from data in a CSV file

    I read the first half of &quot;Beginning XML 2nd edition&quot; by wrox, and that was about 6 months ago....so I am not even to the status of newbie yet. Anyway, I believe I understand the concepts of creating xml documents based on dtds, and using DOM, etc. to access/manipulate the data within...
  6. mpopnoe

    Excel 2000 error: &quot;Compile Error, Automation Error, Unspecified error

    One user of the Excel macros I make is having tyrouble with 1 xls file only, getting the error message thrown by VB stating &quot;Compile Error, Automation Error, Unspecified Error&quot;. The code in this workbook is no different then the hundreds of other ones she runs. The VBE opens and has...
  7. mpopnoe

    Sharing code between projects

    I referenced workbook &quot;B&quot; from workbook &quot;A&quot; so I could use the code (in standard modules) from &quot;B&quot; in &quot;A&quot;. However, I don't know how to call these subs/functions that reside in &quot;B&quot;. I also tried placing some code in &quot;B&quot; in a class...
  8. mpopnoe

    Gather multiple values from scrolling menu

    I'm trying to get all the values from a scrolling menu but only retrieve the last item selected by the user. Does anyone know how to get all the items selected in a multi select menu?
  9. mpopnoe

    MS online knowledge base

    I'm wanting to create a setup similar to the MS knowledge base, but don't know how to set up my database to make it work.....does anyone know who they structured the database to hold the data for each page? The rest of my site is database driven but the pages I'm trying to display/enter now...
  10. mpopnoe

    Give users an MS Word &quot;look and feel&quot; on the web

    My users want all the data (plus the look) from their Word docs placed on the web. I originally simply converted them to HTML and placed them on the web server. The users want to be able to edit and create this info on the web. I can see how to build a table to hold the HTML and the data that...
  11. mpopnoe

    databasetype parameter in TransferDatabase method

    Trying to export table from Access 2000 to a Access 2 db. I think the problem is in the databasetype parameter, I've tried using &quot;Jet 2.0&quot; and &quot;Jet 2.x&quot; and it doesn't work. I know Access 2000 is 4.0 and 97 is 3.51, but I need the one for Access 2. Here is the call...
  12. mpopnoe

    Excel 95/2000 Protect worksheet fails

    When trying to unprotect a file that was protected in Excel 95 in Excel 2000 I get an error 1004 &quot;Password supplied is incorrect, check CAPS lock .....&quot;. I know Excel 95 is 16 bit and 2000 is 32, so are they reading the same password differently?? I made a macro in 95 that seemed...
  13. mpopnoe

    Problem with mysql_select_db

    In MySQL I set up some users who have SELECT privileges on 4 out of 5 tables in a db. They do not have access to one table at all. In DOS I can issue &quot;use dbname&quot; as one of these users and the database is selected but in php the mysql_select_db fails because my users don't have...
  14. mpopnoe

    Unlocking a worksheet locked in Excel 5 with Excel 2000

    When trying to unprotect a worksheet locked in Excel 5 with Excel 2000 it fails because the password used is not recognized as the password that locked the file in Excel 5. I assumed the problem is due to the 16 bit Excel 5 vs the 32 bit Excel 2000. At one time I had found a function that was...
  15. mpopnoe

    Package and Deploy: Run time error '68' on users machine

    I used the Package and Deployment wizard with VB 6.0 to make a setup program to be distributed through our network. I checked the dependency file to make sure all dlls, ocx, etc were included in the package. When I do the setup on a clients machine to test the install, everything installs fine...
  16. mpopnoe

    Getting HTML form keys

    In ASP the request object has the key function allowing you to locate a value by location rather than name (handy on a dynamic form). I know about the $_REQUEST variable in PHP4 which I'm guessing I am to use. The php manual didn't make it clear for me so I was hoping someone could help me...
  17. mpopnoe

    INI settings regarding sessions

    Could somebody please tell me all the recommended settings for sessions in the INI file? I believe my code is correct and the problem lies in the way I set up the INI file. I'm using Windows 2000 with IIS 5 and the latest version of PHP4. Please include all session settings because I may have...
  18. mpopnoe

    Can't access my session variables

    First off, I have tried registering variables using session_register and $HTTP_SESSION_VARS and have only been able to use session_register (eventhough I've been changing the INI parameters as instructed in the php manual at php.net). I have been able to register variables and can see the file...
  19. mpopnoe

    session variable getting registered twice

    I'm registering a variable on my login page and redirecting the browser to a new page. On that new page I placed session_start() before any HTML. I then check the value of my session variable and the value I set is gone. When I check the temp folder to look at the session files, two files...
  20. mpopnoe

    Yet another PHP beginner that can't use the header function

    I've read all the suggestions on this site for using the header function properly and I'm still having trouble. I know that the header function must be called before any output is sent but I should be able to set session variables before calling the header function right? What I am trying to...

Part and Inventory Search

Back
Top