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

    text open a window

    So I can't use what I have? I have seen some examples of what I'm trying to do. But I don't know how to set the function to the TEXT. Is there a way to do it with the function?
  2. sirron

    text open a window

    I have TEXT on a page, and I want to click the text to open a window page that is set to a size like width=400 height=400 Is there a way to do this. I tried to use a javascript like this: function FaqWindow() { window.open('HR-FAQ.asp','Frequently Asked Question','width=300...
  3. sirron

    button display page

    I have a button that is not in a form. And I want to click the button to go to the next page. Is there a way to do this with out the button being in the form? thank you
  4. sirron

    connection without tnsnames.ora

    then what does it use for the connection just username and password and the environment variables
  5. sirron

    connection without tnsnames.ora

    Yes these variables are setup and it points to ORACLE_HOME and the SID. But how does that tell me how its connecting without a tnsnames.ora file?
  6. sirron

    connection without tnsnames.ora

    Our database is on an Unix Server I am able to connect to the database without having an tnsnames.ora file. I'm not sure how I am connecting to the database. I thought that you must have a tnsnames.ora file to connect to the database. And for some reason I can without having a tnsnames.ora...
  7. sirron

    validation fields

    Thank you all. Thank you Lothario
  8. sirron

    validation fields

    The page comes up with an error on line 9 Error Expected '(' Code 0
  9. sirron

    validation fields

    It's still not working. I think I'm getting an error on the page but I'm not sure where. Do you see any problem in the code? <%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%> <html> <head> <title>Untitled Document</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <script...
  10. sirron

    validation fields

    I tried this but its not poping up an alert. Im using dreamweaver to develope the page. When I run this on client side its not doing anything? Can someone help? <%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%> <html> <head> <title>Untitled Document</title> <meta http-equiv="Content-Type"...
  11. sirron

    validation fields

    I have this code, and I want to validate this textfield and make sure the textfield is not empty or null and if is pop up a menu or message is there a way to do this? any help would be appreciated <%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%> <html> <head> <title>Untitled Document</title> <meta...
  12. sirron

    textfield

    This is the code I have, but it is not working. Can someone look at it? I really need some help? Thank you in advance <%@LANGUAGE="VBSCRIPT"%> <HTML> <HEAD> <META NAME="GENERATOR" CONTENT="Adobe PageMill 3.0 Mac"> <TITLE>CSU SITE PREVIEW</TITLE> <META HTTP-EQUIV="Content-Type"...
  13. sirron

    textfield

    If its empty is there a way to put a POP UP instead of response.write
  14. sirron

    textfield

    I have a textfield or textbox. I also have a button on the page with the textfield. when I click the button it goes to another page. What I want to do is if the textfield or textbox is empty I want it to reponse.write a message or go to another page. Does anyone have an example of this?
  15. sirron

    runtime error 13 type mismatch

    I'm using DAO 3.6 object library component Delcare Option Explicit Option Compare Text Dim DB As Database Dim RS As Recordset Database OPEN Private Sub Form_Load() Set DB = OpenDatabase(App.Path & "\vote.mdb") End Sub
  16. sirron

    runtime error 13 type mismatch

    I get this error evertime when i run this code. I have the database open already from other code. Does anyone know why I'm getting this error. Are there components that need to be set up in VB or does this have to do something with my syntax or fields in the database? Dim strID As String...
  17. sirron

    empty record

    If I have this could I run it to see if no records are found? Dim Recordset1 Dim Recordset1_numRows Set Recordset1 = Server.CreateObject("ADODB.Recordset") Recordset1.ActiveConnection = MM_hr_ccn_db_STRING Recordset1.Source = "SELECT user_name FROM user_table WHERE user_name = '" +...
  18. sirron

    empty record

    <%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%> <!--#include file="Connections/hr_ccn_db.asp" --> <% Dim Recordset1 Dim Recordset1_numRows Set Recordset1 = Server.CreateObject("ADODB.Recordset") Recordset1.ActiveConnection = MM_hr_ccn_db_STRING Recordset1.Source = "SELECT user_name FROM user_table"...
  19. sirron

    empty record

    Im searching a database, and if I can't find any records return a response. When I run it, its not displaying anything and I'm putting in something thats not in the database. I put a button on the form but how could I set it up once I click the button it will return the response.write or not...
  20. sirron

    network registrar

    Has anyone worked with Cisco Network Registrar? This authenticates users to the network.

Part and Inventory Search

Back
Top