understandable. before I do though, here is a quick question that may solve my problem. My code is basically writing a couple thousand lines of javascript, using the DOM to create <option> for my 3 <select> on the page. I'm thinking this is a little out of hand - but maybe not. I don't do...
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...
There are none coming up - that is why I'm having so much trouble figuring this out. I've found plenty of codce examples online showing the use of selectedIndex in FireFox - and they are accessing it in the same manner I am. Thanks alot for your input though - if you have any other ideas for...
Thanks but I mentioned in my orig. post that I tried both ways and it still is not working. I tried it again, here are results:
function BodyLoad() {
var oState = document.getElementById('myState');
oState.options[1] = new Option('Oregon');
oState.options[1].value = 1;
oState.selectedIndex...
You got it:
function BodyLoad() {
var oState = document.getElementById('myState');
oState.options[1] = new Option('Oregon');
oState.options[1].value = '1';
oState.selectedIndex = 1;
var oState = document.getElementById('myState');
oState.options[2] = new Option('Washington')...
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...
I'll take your advice, but I've been testing this site with Mozilla Firefox and IE 6 and onLoad and onError are firing away. Older browsers probably don't support it though so I'll look into doing it in FoxPro - I think I just need to use SOAP or some other component to make HTTP requests via a...
If they are supported why are they firing correctly? when the URL fails the onError fires and when it comes thourhg the onLoad fires. The problem at this stage is the 'stack overflow' errors - something to do with the image files but can't seem to pinpoint why.
thanks again for your insight!
Thanks Jon, I'll look into it - I just thought javascript would be the best route.
I almost got this working but I get a stack overflow error @ line 0 and it happens on the last image trying to be swaped and I can't figure out why - any ideas?
Sorry for not being more clear - just ignore the URLs, in the code they point to actual photo files but they are MLS listings and I am not authorized to display them outside the designated site.
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...
Tiglet,
Thanks! That worked great, except I did need to add this line to select the valid range of data otherwise "all" visible cells, all the way down to the maximum rows allowed in Excel (65k+) are copied into the clipboard and the virtual money is maxed.
Range(Cells(1...
Thanks to both of you.
Tony,
The reason I move the columns around is because from my limited experience, the only way to create a compound unique key (of sorts) in Excel to filter on is to place them inline, then hide the columns that are not part of the unique key. Is this way off? I...
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...
Thanks for your quick response. Most of the data I ran into out there for converting data to XML was java and .net classes, so I'll either use the java classes or write something on my own....just wanted to make sure I wasn't missing the easy way of going about this...I have ended up doing...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.