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!

Search results for query: *

  • Users: twcman
  • Content: Threads
  • Order by date
  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

    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"...
  4. 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
  5. 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...
  6. 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...
  7. 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...
  8. 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...
  9. twcman

    mx to 4.5 backward compatible

    How can I make this code backward compatible to v4.5? <cfobject component="#Request.APIRoot#Calendar" name="Calendar"> I am from the v5+. Never any exposure to 4.5. My client has had to revert to 4.5 for some reason unknow to me. I do apologize if there is additional info required. I do...
  10. twcman

    Internet Explorer downloads intead of displays

    Not sure if this is the right forum but when I try to open IE, the browser window opens briefly then treats the page I am trying to display as a file download. The file download box pops up asking me if I want to open or save the file from the site I am accessing. I have tried the file...
  11. twcman

    variable in a frame

    I have a page with three frames on it(frNav,frMain and frOder). I have used this in the past with success but am failing on this attempt to retrieve the value of a textbox and pass it to a textbox in another frame. This script is in the <head> document in the frMain frame. Below is the...
  12. twcman

    Adobe reader and pdf file display

    I have an application that allows users to view pdf files. My problem is with the current adobe reader(v6), it takes forever to load when the first document is clicked and sucks up 35m of memory space. Is there a way to minimize the resources adobe starts with or is there a &quot;lite&quot...
  13. twcman

    Scheduled Task

    Has anyone perfected the scheduled tasks. I am running cf on win 2k pro. Never have been able to get the task to &quot;fire&quot;. It works fine when I hit the run scheduled task button manually. It just won't fire automatically. Am I missing something? Is it a win2kpro vs win2kserver...
  14. twcman

    find value in list

    I have a query in which I need find a value within a field of the table. Eg. <cfquery name=&quot;testq&quot; datasource=&quot;#da#&quot;> SELECT * FROM tblName WHERE #enteredvalue# IN(viewlist) </cfquery> viewlist is a column in the table with a comma delimited list as a field value. I am...
  15. twcman

    Vertical scroll problem

    I have a textarea in a form that has enough data to require a scroll bar vertically. The problem is that when I click one click on the down scroll arrow, the scroll bar goes all the way to the bottom of the scrollbar. When I use my &quot;wheel&quot; on my mouse, it scrolls one line at a time...
  16. twcman

    CFHTTP inside lan vs through router

    OK, I have cf server running on a web server on my LAN. When I use cfhttp to call a file on the lan all is well. When I try to call a page on the Internet, I get a connection failure. All website pages work fine when connecting via the Internet or the LAN. It is just when cfhttp calls a page...
  17. twcman

    correct variable within variable syntax

    OK, I do not do this often enough to remember the syntax for the following loop sequence: <cfloop index=&quot;i&quot; from=&quot;1&quot; to&quot;3&quot; step=&quot;1&quot;> <CFQUERY datasource=&quot;#datasource#&quot; name=&quot;att#i#vals&quot;> SELECT * FROM Attributes WHERE...
  18. twcman

    update problems

    I am having a problem updating a record field in the db. I have a field with a comma delimited list of id numbers. Is there a way to identify a record and remove a single id from the list in one statment. Similiar to this: <cfquery name=&quot;recupdate&quot...
  19. twcman

    Distinct help

    Why would this query return duplicate reportnumber records when I am using the distinct reportnumber in the select statement? SELECT DISTINCT reportnumber, lpatname + ',' + fpatname AS patname,reportdate,hideview,reportid,physicianid,ssn,signdate,locked,mdedit,transedit FROM reports WHERE...
  20. twcman

    textbox history

    When you go to a page to enter your username and password, in the username field when you begin typing you get the autocomplete or if you &quot;down arrow&quot; you get a list of values previously input. Is there a way, from an html standpoint, to disable the list or delete it? Chris Scott The...

Part and Inventory Search

Back
Top