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: glendacom
  • Content: Threads
  • Order by date
  1. glendacom

    What tables contain a specific column

    I have inherited a database from some where. None of the relationships were defined and no indexes exist. One good thing is that the original designer was good about naming columns consistently. I need to determine what tables specific columns exist in. (For example "what tables contain a column...
  2. glendacom

    How to save the results of a search

    I need to be able to save to a text file the results of a search. I have done the following: START Search For Files or Folders Entered the parameters Clicked Search Now The results are hundreds of files (as expected). I now want to save the results that are in the Search Results Pane so that I...
  3. glendacom

    indexing documents

    I have approximately 1000 documents (word, power point, excel, project, pdf) that I need to index. I want to search each of the documents and generate a list of keywords (important words not to include articles, pronouns, conjunctions, and prepositions) from each document. I then want to put...
  4. glendacom

    convert .pst outlook files to eudora .mbx files

    I have a user who is moving from MS Outlook to Eudora and I need to convert all of her existing email files (.pst) currently in Outlook to Eudora files (.mbx). Anyone have an idea as to how to do this? I tried using Eudora's import feature but it only brings in the folders not any of the mail...
  5. glendacom

    hyperlink within <select ... <option

    Is there a way to make this code work as &quot;advertised&quot;. I want each option entry in a <select> list to include a hyperlink. <html> <head> </head> <body> <select size=3> <option><a href=&quot;http://www.somewhere&quot;>link1</a>label1</option> <option><a...
  6. glendacom

    equivalent of Oracle's EXISTS or IN

    I'm trying to do a query in sql*server that I know how to do in oracle ... can someone tell me the equivalent in sql*server. In Oracle the query would be: select fieldName1, fieldName2 from Table1 where fieldName1 in (select fieldName1 from Table2) or select...
  7. glendacom

    how to determine auto generate key on insert

    From an ASP program how do I determine the key to an inserted record where the key is automatically generated by SQL*Server?
  8. glendacom

    In program-1 I have a collection of

    In program-1 I have a collection of checkboxes defining colors of lights (named &quot;lights&quot;) as a part of a form being posted for use by program-2. When I access the value(s) of lights in program-2 it shows it as one long string (ex. yellow, red, orange). I used the split function to...
  9. glendacom

    passing data from one form to another

    i have an ASP file with two forms. The first form has fields that can be changed by the user and a submit button to process those changes to the database. The second form only has a submit button and some hidden fields. I have a need to set one of those hidden fields to a value from one of the...
  10. glendacom

    &quot;Put Files&quot; and/or &quot;Check In&quot; truncating files

    I'm having problems with Dreamweaver MX 6.0 truncating files when I push them to the server. The files are not necessarily very large. Has anyone had the same problem? I have tried reloading Dreamweaver and it has not solved the problem. I am running Windows 2000 Professional. My remote server...
  11. glendacom

    How do I open a window relative to the current window?

    I want to be able to open a new window (window.open) relative to the current window NOT the monitor screen? Is there a way to do this? The only attributes I can find that positions the new window are left and top which are relative to the monitor. Thanks, G
  12. glendacom

    forms with select using images

    I am trying to create a form with a select statement that displays a graphic with the choice. Is there anyway to do this. What I have now is: <form method=post name=xyz action=xyz.asp> <SELECT NAME=&quot;statusvalue&quot;> <OPTION>Choose an option</option> <option>choice 1</option>...
  13. glendacom

    OnClick window.close()

    I am trying to open/close a child window from a mother window. Here is the code in the mother window: <html><head><body> <a href=&quot;#top&quot; onClick=&quot;window.open('some.jpg','childWindow','dependent=0')&quot;>child is born</a> <br> <a...
  14. glendacom

    is there an equivalent to Oracle's noprint?

    I am using a select within an ASP program to fill a drop down list. I need the select statement to initialize two variables but I only want one to be displayed. In oracle there is a way to define a column definition to be &quot;noprint&quot;. Is there a way to do this in SQL*Server? What I have...
  15. glendacom

    window.open doesn't refresh secondary window

    From my primary window I'm using window.open to open a new window ... onLoad=&quot;window.open('financialDataStep1a.asp','OrgData','scrollbars=yes,resizable=yes,width=850,height=370')&quot; This works great the first time I enter the primary window but if I refresh the window or go to another...
  16. glendacom

    how to have select column not print

    I have a need to have a column from a select statement not print in the results. For example in the following select statement I don't want the age to print: select name, age, salary from sometable Results wanted: ========================== Name Salary George $1000 Tom $500...
  17. glendacom

    how to tell if a string is valid integer

    Is there a function that will tell me if a string is a valid integer. It would work something like this: somefunc('1234') would return TRUE somefunc('12a4') would return FALSE

Part and Inventory Search

Back
Top