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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by MillsRJ

  1. MillsRJ

    Print Server enumeration

    I have the following code that I run to enumerate printers on a given server, can I incorperate this into a webpage. I wish to select the server in one drop list and have the printers presented in the second droplist for the client to choose. Then I have a second script that will enable the...
  2. MillsRJ

    pass textarea tags via function

    well, shortly after I finished typing the question above, I found the following article(s) http://www.learnasp.com/learn/res4.asp and http://www.learnasp.com/learn/res5.asp I'm hopefull that they'll work, but if you have a better idea, please let me know thanks Rob Mills System Analyst...
  3. MillsRJ

    pass textarea tags via function

    I am trying to format a series of textareas by passing data to a function and returning the tag line. I'm having some problems with the formatting of the return value of the function. <dumb??> also,do I need to pass the array to the function, or is it just in memory and doesn't need to be...
  4. MillsRJ

    pass font tag in querystring

    I am trying to pass a font tag in a querystring without much success. I've tried several combinations (&quot;'&quot;, ', &quot;&quot;, &quot;&quot;&quot;) but it doesn't seem to want to bring the font tag over. any ideas? thanks here is the code strsummary = strsummary & &quot;<font...
  5. MillsRJ

    referencing a text box

    Thanks for your help all, but I've abandoned this idea for a form post method cheers Rob Mills System Analyst Correctional Services Canada (all statements are my own ...., ah hell, its the government, sue'em anyway)
  6. MillsRJ

    referencing a text box

    it just says &quot;error on page&quot; at the bottom of the screen Rob Mills System Analyst Correctional Services Canada (all statements are my own ...., ah hell, its the government, sue'em anyway)
  7. MillsRJ

    referencing a text box

    ok, I tried onChange=&quot;Changebox(document.form1.day1.value(),-13,<%=qryElements.Fields.Item(&quot;numsubcatagoryid&quot;).Value%>)&quot; but I get an error on page the changbox function is as follows <% sub ChangeBox(newnum,dayspan,subcat) dim addSQL,modSQL,curnum,subsite,lookdate...
  8. MillsRJ

    referencing a text box

    what is the proper syntax for a form text box to reference itself (to pass value on to a function or sub) example <input name=&quot;day1&quot; type=&quot;text&quot; id=&quot;day1&quot; onChange=&quot;<%call...
  9. MillsRJ

    help with updating form text boxes

    I have a form that is 15 text boxes wide by several rows deep (depends on criteria). The text boxes are populated using a vbscript function, this works great (code to follow). The problem is in changing the data. I thought I could do an onChange event to vbscript that puts together a SQL update...
  10. MillsRJ

    another msgbox question

    It works great, thanks again and yes, it is an intranet with IE6 everywhere Rob Mills System Analyst Correctional Services Canada (all statements are my own ...., ah hell, its the government, sue'em anyway)
  11. MillsRJ

    another msgbox question

    does the line at the top <%@LANGUAGE=&quot;VBSCRIPT&quot;%> have any bearing on what I'm trying to do? thanks Rob Mills System Analyst Correctional Services Canada (all statements are my own ...., ah hell, its the government, sue'em anyway)
  12. MillsRJ

    another msgbox question

    I see, so you use a form (an HTML tag) to do the function of the respons.redirect. awsome, thank you Rob
  13. MillsRJ

    another msgbox question

    I have the following code on an asp page. the form parameters are passed from another pages submit function <%@LANGUAGE=&quot;VBSCRIPT&quot;%> <!--#include file=&quot;Connections/OTReporting.asp&quot; --> <% Response.Buffer = True %> <!--#include file=&quot;inc_top_img.asp&quot; --> <% if...
  14. MillsRJ

    Dynamically making ListBox Readonly

    thanks, I'll try it out, though I've since read that READONLY won't work so I'll have to use Disabled Rob Mills System Analyst Correctional Services Canada (all statements are my own and do not reflect on my employer)
  15. MillsRJ

    Dynamically making ListBox Readonly

    I have a list of users that have accesslevel of 1,2 or 3 Level 1 users should not be able to change the contents of a listbox, level 2 and 3 should here's what I've got <% if session(&quot;AccessLevel&quot;)=1 then enablelist = &quot;False&quot; else enablelist =...

Part and Inventory Search

Back
Top