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 Chriss Miller 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 twcman

  1. twcman

    Looping over list in JQM

    I am using JQ/JQM. In the code below, I get a list of userid's in the data.userids ajax result returns. That is working correctly because I get an expected list of 7,166 back. These userid's correspond to a checkbox(sendtext_userid or sendtext_7). I am trying to loop through the checkboxes...
  2. twcman

    Conditionals within jquery mobile variables

    Not sure the subject explains this but I have a div I populate with results returned from an ajax call. $('#clubsearch_list div[data-role="content"]').append(data.clublist[i].accountname +'<br>&nbsp;&nbsp;'+...
  3. twcman

    How to update 2 select boxes with same option using jquery mobile

    Found the answer: must use clone() to clone newgroupcode.. $('#Goal_WeightVar').live('click', function() { var newgroupcode = $('<option value="11">11<option>'); $('#groupslist').append(newgroupcode).trigger("create"); $('#grouplist').append(newgroupcode.clone()).trigger("create")...
  4. twcman

    How to update 2 select boxes with same option using jquery mobile

    Using jquery/jqm I need to add an option to 2 selectboxes. I can get one to update but not the other. How do I get the other one to update. Notice the S in the names/id's Whichever .append is listed 2nd is the one that is updated. html: <input type="button" name="Goal_WeightVar"...
  5. twcman

    Upgrade 2000 ssl cert to 2003 ssl cert

    I am upgrading my server from windows 2000 to windows 2003. Is it possible to use the same ssl certificate on windows server 2003 as I did on windows 2000? Or, do I need to purchase a new one? Chris Scott
  6. twcman

    E-commerce solution

    Best one out there for any price.... http://www.quickestore.com Chris Scott
  7. twcman

    iisvdir create virtual directory

    thanks for your response, but, that created the virtual in IIS on the /s server. Basically, it ran the script remotely. I need the virtual to be in IIS on the server I run the script on but have the virutal setup as "a share located on another computer" and have it point to...
  8. twcman

    iisvdir create virtual directory

    I am trying to use iisvdir to create a virtual diretory. If my directory is local, the command works fine. iisvdir /create w3svc/1/root Testme c:\testdir However, if I try to use a remote share like this: iisvdir /create w3svc/1/root Testme \\server\testfolder where testfolder is properly...
  9. twcman

    update db error using 2000 not xp

    I agree. This is not my code, though. I inherited this code and am trying to get it working first and add the error check and housecleaning next. Your input is greatly appreciated though. Chris Scott The Whole Computer Medical Systems
  10. twcman

    update db error using 2000 not xp

    ECAR, Thanks for the input. I have checked multiple times and had others check also. After further investigating, it is not client OS dependant. However, I can have two people update the same record with the same updates at different times. One will update fine and the other will error out...
  11. twcman

    update db error using 2000 not xp

    Form fields: <input type="HIDDEN" NAME="id" VALUE=#id#> <input type="HIDDEN" NAME="FName" VALUE="#form.FName#"> <input type="HIDDEN" NAME="LName" VALUE="#form.LName#"> <input type="HIDDEN" NAME="Address1" VALUE="#form.Address1#"> <input type="HIDDEN" NAME="Address2" VALUE="#form.Address2#">...
  12. twcman

    update db error using 2000 not xp

    I have an update into my database using sql not cfupdate. When I execute the update from a winXP workstation, the update goes through fine. When I use a win2000 workstation I get the following error: Microsoft][ODBC Microsoft Access Driver] Data type mismatch in criteria expression. Both...
  13. twcman

    keep form variable for new record

    Thanks for your response. That worked.. Chris Scott The Whole Computer Medical Systems
  14. twcman

    keep form variable for new record

    I have a pop up form that is based on an id from the parent form. On the popup form I have a hidden field that is populated with this id. When I try to add a new record, the field is blank. How can I maintain the id value sent from the parent for so I can view records as well as add new ones...
  15. twcman

    complex query

    I need to build a query. I have a table with user login log info. every time a user logs in, an entry with sessionstart(activity_id) and user_name is entered in the table. I need a query that counts the number of times each user has logged in. This is the sql that I have so far: select...

Part and Inventory Search

Back
Top