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 TouchToneTommy 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: MillsRJ
  • Content: Threads
  • Order by date
  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

    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...
  3. 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...
  4. 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...
  5. 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...
  6. 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...
  7. 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 =...
  8. MillsRJ

    Migrate Directory Permissions

    Hello all I currently have a NT4 server with several thousand directories with local groups applied to them. I need to migrate this to a new Win2K domain. I have created similarly named groups in new AD, but the permissions are a problem. Does anyone know how I can dump the permissions...
  9. MillsRJ

    porting ASP/Access to ASP/mySQL

    ok, managed to get mySQL up and running, but keep getting errors from my config.asp. 1) why doesn't the &quot;SELECT TOP * 1 FROM ...&quot; work anymore? 2) also, had an array that was working fine but now I get a subscript out of range error. ReDim MenuEntry(objRsConfig.RecordCount,2) iRun =...
  10. MillsRJ

    ASP/Access to ASP/mySQL

    I've inherited a site that uses ASP/Access, however the new ISP only supports ASP/mySQL. How big of a job am I looking at? I notice that he used mostly ADO programming to update tables etc. Will these work with mySQL? It would be nice if it were merely a case of changing the DSN and maybe a...

Part and Inventory Search

Back
Top