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 biv343 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: *

  1. TheCandyman

    Need help with appendChild

    I'm trying to have JavaScript create some html inputs when i click a button and just can't seem to find what i need when searching. I have the basics working but can't figure out some of the appendChild that i think i need. This does correctly add a row to my table with one <input> for each...
  2. TheCandyman

    Server 2008 R2 - Multiple Keyword Search

    I have a Windows 2008 R2 server with the File Serves role installed and have enjoyed the option in the past to search for keywords within files (see image). My question is how can I search and return files that only have multiple keywords within them? I can't find a list of Boolean Operators...
  3. TheCandyman

    ASP (classic) CDO emails to a mac server?

    Hi All, I have been using a third party that hosts my website and front end (smart host) email server. These have been running on two different Windows 03 boxes and everything has worked as expected for a long time; i can email using CDO from an asp webpage on IIS to the email server and the...
  4. TheCandyman

    How to set write permissions for MS Access in IIS7

    I'm running a 2008 R2 server with IIS7.5 and a legacy website that uses classic ASP and a hard coded MS Access database. I have everything moved and working but can't seem to get write permissions set on the database correctly. I set (through Explorer) file level read/write permissions for...
  5. TheCandyman

    Stop on lost focus

    I have a jquery script that correctly rotates several images in a loop after showing each for a few seconds. I'm noticing in the newest Firefox and Chrome browsers, and found the same after searching, that it I move off the tab or minimize the browser that the JavaScript stops/pauses until...
  6. TheCandyman

    Error on loop

    I'm trying to loop though a few Div's and set them to hidden/visible. I have tried this a few ways but can't seem to get a winning solution as both of my try's show errors. In the body: <div id="Group1" style="display:none;"> <p>Question 1</p> <p>Question 2</p> <p>Question 3</p>...
  7. TheCandyman

    document.form is undefined ??

    I need another pair of eyes because this is driving me crazy. Granted, i struggle with JS but I'm still learning. I keep getting the 'document.form1.name46.value is undefined' error but can't see what its wrong. I have this fire when a drop down menu is changed so the page loads without...
  8. TheCandyman

    Is null or undefined

    I'm having trouble with this simple JS. It looks at the anchor tag in the URL, breaks it into an array (which works) and changes the background color based on that value which is where i get an error. I can see the correct value saved in 'anchorValue' (a2697), but get an error saying it's...
  9. TheCandyman

    ASP for server stats

    Is it possible to get any type hardware listing of an IIS machine from ASP? I'm trying to see what server specs my hosting provider has for my website setup.
  10. TheCandyman

    Error in IF statement

    I'm getting a validation error in this small function. The problem is the fourth line down on the '&&' which i tried to bold. function tabOnEnter (field, evt) { var keyCode = document.layers ? evt.which : document.all ? evt.keyCode : evt.keyCode; if (keyCode != 13 && keyCode !=9)...
  11. TheCandyman

    Simply using a loop

    How can i simplify this into a loop? The 'if else' goes on for 10 times! if(NumBooths == 1) { document.getElementById('Booth2').style.display= 'none'; document.getElementById('codes2').style.display= 'none'; document.getElementById('Booth3').style.display= 'none'...
  12. TheCandyman

    getting image to stay at bottom of page instead of screen

    I'm working on a page that has a large person image that i want to be fixed at the bottom of the page, not screen. It current stays in back of page text (which is good) but i can't force it to stay down. It instead stays at the bottom of the screen and in the middle of long pages. What should...
  13. TheCandyman

    Corrective Numbering

    I have a list of values which i would like to sort better. They come out sorted this way using SQL on a MS Access DB when i sort by this field. T1 T10 T11 T13 T2 T21 T22 T3 T4 T5 I would like them to be: T1 T2 T3 T4 T5 T10 T11 T13 T21 T22 Is this even possible with classic ASP? Can I...
  14. TheCandyman

    Getting multiple values from a single column

    I'm trying to write a SQL statement for Access that will look at one column and only show those that have both values. For example, in looking for users that have both 'aaaa' AND 'bbbb' would be User1. Column1 Column2 User1 aaaa User2 bbbb User1 bbbb User2 cccc User3 aaaa...
  15. TheCandyman

    Find matches from one column

    I'm trying to write a SQL statement that will look at one column and only show those that have both values. For example, in looking for users that have both 'aaaa' AND 'bbbb' would be User1. Column1 Column2 User1 aaaa User2 bbbb User1 bbbb User1 cccc User3 aaaa...
  16. TheCandyman

    Group by Date, not DateTime

    I'm trying to get a query to group records by the day and not by each time on that date. Here is some data i'm working with RegDate SumOfAmountPaid 8/2/2010 10:12:59 AM $50.35 8/3/2010 1:19:54 PM $302.00 8/3/2010 2:32:24 PM $25.00 8/5/2010 9:37:04 AM $31.65 8/5/2010 3:07:45 PM...
  17. TheCandyman

    Set Foxus - i think

    I have a MS Access DB which loads a simple pop up form. Once a button is clicked, it runs VBA code to open a query. Problem is, the form stays in front blocking the users view. My thoughts to fix this are two ways: 1- minimize the form, but can a query run VBA when closed? 2- set focus which...
  18. TheCandyman

    Comments on Design

    Any comments or suggestions on this website? http://westernprocesscomputers.com/
  19. TheCandyman

    Hide text box

    I'm trying to have a row hidden when certain values are picked from a dropdown menu. The row seems to hide but still leaves the text box showing. I can't seem to figure out what I'm doing wrong that it won't hide the text box also. <script type="text/javascript"> function...
  20. TheCandyman

    Hide Public Folders from GAL

    I'm relatively new to Exchange which is probably why i can't seem to find this. What I'm trying to do is hide a few of the standard GAL lists such as "public folders" and "all users" from the standard window for users to choose from. I see in exchange where i can right click the lists and...

Part and Inventory Search

Back
Top