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: *

  • Users: joeoz
  • Order by date
  1. joeoz

    Getting ActiveX component can't create object

    Thank you for the help. I used the P&D Wizzard and eventually discovered my issues. There were several other dll's that needed to be included to run the program. The P&D Wizzard detected them and packaged them with the dll.
  2. joeoz

    Getting ActiveX component can't create object

    I have Visual Studio 6 and tried using Package & Deployment Wizard. I'm not sure what nd deploment wizard is or how to use it. Anyway, I used the Package & Deployment Wizard and was able to "install" my dll along with msxml3.dll but when I ran the tester, it still did not work...
  3. joeoz

    Getting ActiveX component can't create object

    I created a dll that is going to be distributed to my clients and a sample program that demonstrates how to use the dll. I built the dll in a directory c:/vb and created the executable in that directory. The dll also uses msxml3.dll. When I run the tested executable in the c:/vb directory...
  4. joeoz

    Selectively displaying tr tags

    Thanks for the help. I found that Netscape supports 'table-row' and IE supports 'inline'. I'm not sure about other browsers. Here's the code I ended up using: <script language=&quot;javascript&quot;> function changeVisibility() { var oSelect = document.form1.select1; var oOptions =...
  5. joeoz

    Selectively displaying tr tags

    Thanks. That type of thing seems to work here too. I did it a little more flexibly by putting each of the element id's in the value of a select and then split them using js. That seems to work fine in IE, but it doesn't display well in NS6. I think there is a problem with tr's and id's but I...
  6. joeoz

    Selectively displaying tr tags

    I am looking for the &quot;best&quot; way to selectively display tr tags. Originally I used getElementById() and display = none/inline, but that only works on an individual element basis. I would like to be able to apply this to multiple rows at a time. So basically I would be able to display...
  7. joeoz

    reset form when submitting to itself

    JavaScript has a function reset() that does the same thing as the reset button. Add the following below your form and you should be ok. I'm not sure of my syntax so you'll have to double check me. (Reset will reset to the default values of each element in the form.) <script...
  8. joeoz

    onSubmit

    When I want to make more then one function call from onSubmit, I like to call a function that acts as my handler. So rather than deal with the logic you have for two function calls, just create a function called submitHandler() and do all the logic you want in it. Then you have one return value...
  9. joeoz

    onSubmit

    Take a look at this. This works in both IE 5.5 and Netscape 4.7. The function works in both. You just need to call it from the onKeyPress if that's how you want it to work. <html> <head> <title>Discussion - Start a New Thread</title> <script> function checkTextAreaLength(oTextArea, maxLength)...
  10. joeoz

    javascript and asp

    I'm not sure exactly what you want to do here, but you could send the user back to the current page using the following: <html> <head> <script language=&quot;JavaScript&quot;> history.go(-1); </script> </head> <body> </body> </html>
  11. joeoz

    Evaluation Problem

    You can send the actual value of the field to the function with: <a href=&quot;javascript:submitMe(document.myForm.myTextbox10010.value);&quot; class=&quot;link&quot;>Add Product</A> If this isn't what you want, you could send the textbox object to the function with: <a...
  12. joeoz

    Keep getting the alert...

    This is not tested but should do the trick. function YourChoice() { for(i=0;i<form1.choice.length;i++) { if(!form1.choice[i].checked) { alert(&quot;please choose one&quot;); return false; } } return true; }
  13. joeoz

    Good Web Host?

    I am looking for a good, affordable web host for a project I am starting. I will be using ASP and will be connecting to an Access database. Any suggestions would be greatly appreciated.
  14. joeoz

    displaying the number of records found

    Just a thought. You could change direction here a bit and have a pretty good solution. I recently came across the article below (courtesy of someone elses recent post) and have been convinced to use the GetRows() method. If you used this mehtod then you would have your results in an array and...
  15. joeoz

    Problem with Select.Options

    Thanks! I'm such an idiot. I knew it should work. I've done plenty of stuff like this before but I just could not figure it out. Sometimes it's the simple things we overlook. Everything is right with the world again.
  16. joeoz

    Problem with Select.Options

    Could someone please show me how to access the value of a select? Here is where I call the function: <select name=&quot;select1&quot; onChange=&quot;changeTotal(this,this.selectedIndex);&quot;> <option value&quot;1&quot;>option 1</option> <option value&quot;2&quot;>option 2</option>...
  17. joeoz

    2D array to populate a select box.

    You need to make the following changes and it should work: (1) Change the original array declaration. projectArray#div##sec# = new Array(2); The above only creates a 1-D array of length two. It should be: projectArray#div##sec# = new Array(); You don't need to specify a length. (2) Before...
  18. joeoz

    toggle between rte and regular edit.

    Rather than use a form element in the parent window to store the value, why don't you create a function in the parent window and call it. That way you could store the information however you want (i.e. string, array, object). You could then call the function from the child and send in what you...
  19. joeoz

    automatic login recognition

    You will need to use ASP and the Request.ServerVariables(&quot;Logon_User&quot;). If you have questions on how to do this, consider posting those questions in the &quot;Microsoft: Active Server Pages (ASP)&quot; forum. Hope this helps.
  20. joeoz

    Page Caching Issues

    What is the &quot;best&quot; method for keeping cached pages from being accessed? What I mean is, if the user logs out and I kill the session, what can I do to prevent someone from using the Back button and viewing the information?

Part and Inventory Search

Back
Top