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

    Dynamic Recordsets

    I have a simple script that I have used more times than I can count to connect to a database. I now need a recordset that is dynamic instead of forward only. I have tried many different syntaxes to no avail. Does anyone have an idea of how to configure this code to be a dynamic set? Set...
  2. JackD4ME

    Fixed header and column

    Is there a way to set the header and left column to be fixed and the right column to be scrollable? Thanks in advance, Jack :D
  3. JackD4ME

    IE Problems!!?

    Hi All, I have a simple page that uses an anchor link to to call a function to take values from one field and drop it into another in the same form. Of course the code works in Firefox but not in IE6. IE bombs when it loads and wants to debug the calling line. Here is the function: function...
  4. JackD4ME

    Firewall?!

    I just setup a 2003 server and was able to see it through the internet. I installed Black Ice Defender and it has done nothing but crash the system (25+ times already). It appears to be completely removed (no files, no service). I want to do a trial on Kaspersky (any opinions on this?) so I...
  5. JackD4ME

    Newbie-Cant start service

    I just installed MySQL and the installed never completed because it could not start the service. So i had to cancel out and try to start it manually which of course did not work. Any ideas here? Its never been installed on this machine before! Thanks in advance, Jack :D
  6. JackD4ME

    Adding Item to select box

    I have a select box that I am trying to clear and then repopulate. It is dynamic built on a recordset. I have tested the records and got alert boxes to popup with the correct data. I have searched the internet now for hours and cannot find anything that tells me how to repopulate the select...
  7. JackD4ME

    onchange event

    I am trying to get the most basic of things accomplised: get a vbscript sub to give me a msgbox. I am trying to call the sub from a selectbox. I keep getting nothing and it is driving me nuts! The code is below. <SCRIPT LANGUAGE="VBScript"> Sub ez_onchange msgbox "hello" End Sub </script>...
  8. JackD4ME

    Open Text File With Write

    I need to open a file that I have created in write through an asp webpage. I have tried response.redirect "file.txt" and all this does is open the data file in the browser. Is there a way to force it to open in wordpad? thanks, Jack :D
  9. JackD4ME

    Cannot connect to modem

    I have a small (phyically) computer that i need to use a usb modem. i have installed 2 different modems on it and i can get it to install the software but it does not connect to the modem. The only thing listed is com1. I think this has something to do with it. I am running win2kpro sp4...
  10. JackD4ME

    Datagrid

    Does anyone know of a tutorial on how to build a datagrid? Thanks, Jack
  11. JackD4ME

    Populating a Select Box

    I have tried using an array and it keeps erroring out as Name Defined. So i simply changed all the array items to variables (z1,z2 [...6]). i have been able to loop through a while statement using a counter and variable (z & cntr) but for some reason this time it keeps populating with the...
  12. JackD4ME

    Tabbed Browsing Cookies

    Is there anyway to clear cookies or end the session without using a global.asa file? I am using <% Session.Timeout = 1 %> (to test) but it does not work. thanks, Jack
  13. JackD4ME

    And Statement in Where Not Working

    hi everybody. i am trying to filter a recordset using the where statement with 2 criteria. when i use 'and' it doesnt filter and when i use the '&' i get no results. here is the code: sTr="Select * From Drainage Where [Parcel Number]='" & Request.Cookies("PIN") & "' and [Deleted]<>'Yes'...
  14. JackD4ME

    Create table in local db

    i am running a small program where i need to create a table on the c: through asp. is this possible and if so, how? thanks, jack
  15. JackD4ME

    Can't Find the error!

    Can anyone see where the error is coming from? Here is the code: sTr="Insert Into Contacts ([First Name],[Last Name],Group,Address,City,State,Zip,Phone,Cell,Other,Fax,Email,Notes,Website) " & _ "Values ('" & Request("fname") & "', '" & _ Request("lname") & "', '" & _...
  16. JackD4ME

    Links in Alert Boxes

    Is it possible to have some text in an alert box be a link? Jack :D
  17. JackD4ME

    ASP/JAVA Settings

    I have a site that uses asp and js combined. My problem I think is simple but I cannot find it. I have a matrix of numbers that are links. These links prompt for input through a js popup box, click ok and it calls a asp maintenance page then redirects to the original page with the matrix...
  18. JackD4ME

    Combining JS with CSS

    Hi All, I am trying to get the screen size so that I can make the left and right columns the same as the screen when they are smaller than the screen. I found a small script that can get the screen size but is there anyway to get that variable into the css? JS: <SCRIPT> if...
  19. JackD4ME

    Migration Toolkit

    I am just getting started trying to convert an access db to mysql and decided to use the migration toolkit. I get through the source and target ok (although I am not sure what port to use so I put in port 25) but once it trys to connect I get this error listed below. Any ideas as to what is...
  20. JackD4ME

    getting multiple lines in anchor title

    I am trying to get 3 lines into an anchor title but cannot get html to recognize the <br> when it is within the script tags. The output is this when hovering over the link: your name<br>your address Here is the code I have been trying: title="<%=nnRst("Name 1") & "<br>" & nnRst("Address")%>"...

Part and Inventory Search

Back
Top