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 strongm 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: ntm0n
  • Order by date
  1. ntm0n

    Get count of key words used in full text index

    I have a database with a full text table created on it. How can I get a list of the keywords used in the full text index and a count of those words. What we are trying to find are the top words used in a database. This should provide us with a list reports that can be reviewed for trends...
  2. ntm0n

    Formatting Text from SQL7

    One other note, if you place the sql text within a "textarea" you will see the line feeds etc....
  3. ntm0n

    "unspecified error" using .ActiveConnection

    Haven't many idea's since we don't have any code to really look at, but since you say the error shifts - have you checked any include files for errors? Have you checked the database to ensure the copy you have on your local machine matches that of your client. G.
  4. ntm0n

    What is the equivalant of "THIS.VALUE"

    Thanks Jon, Needed the first version of setting the object... G.
  5. ntm0n

    What is the equivalant of "THIS.VALUE"

    PS - I need to set the field value that this came from after its been manipulated. Thats what I want to figure out how to do it without having to call document.frm.tbTxt.value every time I want to update a objects value.
  6. ntm0n

    What is the equivalant of "THIS.VALUE"

    What is the equivalant of "THIS.VALUE" as in Javascript....? I want to call a function with the value the object has but I want to make the function generic so it deals with only what was passed to it.. Thanks!
  7. ntm0n

    Iframe needs parent forms variables

    MrGreed, Just one more question if I may... Using the VBScript example, how can you access the variable 'd' in asp after the function was called? I thought that vbscript was part of asp, so it seems to me that the variable 'd' should be available inside an asp tag.. does this make sense...
  8. ntm0n

    Iframe needs parent forms variables

    MrGreed - you are no doubt a genius! Thanks - have it working.... G.
  9. ntm0n

    Iframe needs parent forms variables

    MrGreed, Thanks for the try, but that does not work either. I've tried about every variation of window, parent, top etc... that I can think of... G.
  10. ntm0n

    Iframe needs parent forms variables

    I have tried to access the parent form object values without success. I have tried: var = parent.document.formname.taDescription.value and it does not return a value. Is it possible in VBS or ASP to obtain these values from an iframe? G.
  11. ntm0n

    Accessing parent form variables from Iframe

    I have an iframe identified on a page, I would like to be able to get the values from form objects that reside on the parent page. Is this possible? if so how? I can access variables when the iframe is refreshed by passing the information via the command line, and then using the...
  12. ntm0n

    More than 1 value for each <option> in a select list

    Just a note for anyone else using this code, I had an undefined error popping up when attempting to get the .attrOne value... I found out by viewing the source that the attrOne variable name was being translanted to UPPER case giving me a ATTRONE... wierd but if you use the upper case version of...
  13. ntm0n

    More than 1 value for each <option> in a select list

    Amazing...how three approaches all improving a little on the next has led me to an awesome outcome :) Thanks gentlemen I do appreciate the help! Gary
  14. ntm0n

    More than 1 value for each <option> in a select list

    Let me expound on this a little... Can the value of a Option selection be an array of two values? and if so... how would you set that?
  15. ntm0n

    More than 1 value for each <option> in a select list

    Is it possible to have more than one value per option line in a list? Ie., <select> <option value=&quot;v1,v2&quot;> text </option> </select> What I'm trying to do is if a user selects the line, I need to be able to extract V1 and do something with it, and then V2 and do something with...
  16. ntm0n

    Session.Security error

    As I see it, your trying to get your security level from your form (Which you have commented out). Secondly - did you add a security/authcode level to the database and get that on the call? You need to add your auth codes to the database, and then assign that to your session variable...
  17. ntm0n

    I need to query one table and add t

    Thanks, I dont have much experience with the designer but I'll give it a try. The visual aspect of it may make it easier to visualize. Gary
  18. ntm0n

    I need to query one table and add t

    I need to query one table and add the different select statements to a temp table..... create table #temp(fy, parm1, parm2) insert into #temp(fy,parm1,parm2) and here is where I want to provide select statements as the input for the fields...ex: select fy from tbl1 where..., select p1 from...
  19. ntm0n

    Real Time Stats?

    Is there a program that will watch actual connections on an IP that is used to server multiple domains? Thanks Gary
  20. ntm0n

    How can I pass multiple values parameter in URL

    Have you tried putting an ampersand between the prompts like: prompt1=this&prompt2=that&prompt3=nuttin Gary

Part and Inventory Search

Back
Top