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

  • Users: cr84net2
  • Content: Threads
  • Order by date
  1. cr84net2

    Reload div after form submission success

    I have a classic asp site that is being partially updated to html5 and responsive design. There is a poll in an iframe that I am trying to move to a div. To do this I used $.get('Poll/poll.asp', function(data) { $('#poll').html(data); }); This loads the page/content into the div without...
  2. cr84net2

    Create recordset from 5 tables with identical fields then reference the records by table

    I need to create a recordset from 5 tables with identical fields then reference the records by table. I also need the record count for each table. I am using this for a menu and I have been banging my head against the wall. Any help would be appreciated. This is the select statement I am...
  3. cr84net2

    I need to join 5 tables with identical fields then reference the records by table

    I need to join 5 tables with identical fields then reference the records by table for a menu on a website. The database is access (I know). I have tried literally hundreds of different approaches with no luck. Here is the Select statement that I am currently trying. dSQL="select 1 AS menu...
  4. cr84net2

    Multiple table select query

    Hello, I have five access tables each with the same fields named misc1, misc2, misc3, misc4, misc5. There is a number field in each table named display. If there is a 1 in the display field, I need to display a linked image to a page where the content from the table can be shown. I have done...
  5. cr84net2

    change movieclip alpha based on xml variable

    I have an swf that plays a video (toobplayer component) and has two dynamic txt fields. The video and both txt fields are "fed" from an xml file. I also have a movie clip that loads an image on another layer and is set to an alpha of 0. Is there a way to use a conditional statement to check the...
  6. cr84net2

    help converting online vbscript function to hta

    I have a web (online) asp/vbscript that uses a function to decrypt RC4 encrypted data. A client now needs to email encrypted data and decrypt it on their local desktop. I recently found out about hta's and they appear to be the answer in this case. I have read several posts and downloaded and...
  7. cr84net2

    convert autoID numbers from recordset

    I am working on a project where I am laying out a list of players for each team in a given league. The list looks like this (The draft order numbers are autoID): The Brawlers Wgt Name Draft Order Needed 125 Fred 1342 9 133 Dave 1301 2 141...
  8. cr84net2

    sum of txt fields in form

    I am not very familiar with javascript so I am piecing this together based on what I can find doing google searches. I need to get the total of an input value multiplied by a specific number for the fields that are above one another in the code below. This is working fine. I then need to get...
  9. cr84net2

    Trouble with insert statement

    I have a form set up that posts to itself (or the same page). I collect the values from the form and do an insert like this. I have debugged and all variables are showing up in the sql. pInsertSql = "INSERT INTO [user] ([userlevel], [paid], [regid], [userpaid], [name], [email], [username]...
  10. cr84net2

    Problem with dates in select statement

    I am used to working in access and have a project where I am using sql server. I am trying to find dates in a field between two other dates. Here is one of many variations I have tryed. tourndis= Now() tournreg= Now() + 6 sqlstr="Select tournname, tourndat from tournaments WHERE tourndat...
  11. cr84net2

    Syntax error in subquery

    I keep geting a syntax error near ')' error with the following: sSqlWrk = "SELECT [wrestlername], [wrestlername] AS DispFld, [weightclass] FROM [wrestler]" If lteam.wrestlername.CurrentValue = "" Or IsNull(lteam.wrestlername.CurrentValue) Then sSqlWrk = sSqlWrk & " WHERE 0=1" Else sSqlWrk =...
  12. cr84net2

    Syntax error in tough query

    I can't seem to get the syntax right here. No matter what I try i get either unterminated string constant error or Expected')' error. Any help would be greatly appreciated. sSqlWrk = "SELECT [wrestlername] FROM [wrestler]" sSqlWrk = sSqlWrk & " WHERE ([weightclass] IN (@FILTER_VALUE))"...
  13. cr84net2

    update a table column from Request.Form using TSQL

    This TSQL is killing me... I was able to update one table using the same Request.form fields. Now the next update is giving me an error. This is the update statement: ltUpdateSql = "UPDATE lteam SET ltID= sID WHERE user=" & spID conn.Execute(ltUpdateSql) DB connection is opened above and...
  14. cr84net2

    ADODB.Field (0x80020009) error driving me crazy

    I am using sql server express and have two Select Statements on the same asp page. I have used the same statements on another page to gather similar data without a hitch. The only real difference I can see is that I am using a parameter in the Where clause of each that is fed by...
  15. cr84net2

    using cdbl works when dsn-less but throws error with dsn

    Is there a problem using cdbl with a dsn? I have a Select Case statment tht works fine on iis with a dsnless connection but throws this error once it is online with a dsn: Microsoft OLE DB Provider for ODBC Drivers error '80040e07' [Microsoft][ODBC Microsoft Access Driver] Invalid use of Null...
  16. cr84net2

    Convert SQL Server Select to Select Statement for Access

    I first posted this in SQL Programing (Not sure how to remove it from there) I need to convert this SQL Select statement in to a select statement that will work with MS Access 2000. Any help would be appreciated. strSQL = "SELECT * FROM eventCalendar WHERE " & _...
  17. cr84net2

    Sql Sekect to Access

    I need to convert this SQL Select statement in to a select statement that will work with MS Access 2000. Any help would be appreciated. strSQL = "SELECT * FROM eventCalendar WHERE " & _ "convert(datetime,convert(varchar,DatePart(yyyy, dteEventStart)) + '-' + " & _ "convert(varchar,DatePart(mm...
  18. cr84net2

    Checking all fields associated with an ID against a date

    I have a table named coupon with ID, bisid, coupstart, coupexp, etc. ID--bisid---coupstart---coupexp 1----2-------05/15/05---05/20/05 2----6-------06/12/05---07/23/05 3----12------06/13/05---07/30/05 4----2-------05/20/05---06/22/05 5----6-------05/21/05---06/02/05...
  19. cr84net2

    Populate an array manually and using getrows?

    I have a function that tests to see if a time is within a range of two other times. I am using military time only showing as an integer. (800, 830, 900, 930, 1000 etc)The statement that tests the range is below: If tsToTest >= tsStart AND tsToTest < tsEnd Then tsToTest is the time being...
  20. cr84net2

    Checking to see if time is in a range

    I am working on a reservation system and have never worked much with time in other applications. I am using military time to input "reservations" but I need to display when an item is reserved and was wondering if anybody knows a way to check if a given time is in a range between two other...

Part and Inventory Search

Back
Top