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

    Bizarre customized gridview issue (ASPX with C#)

    Hi, I have what may be a rather complicated issue. I have an extended gridview control that I swear used to work all the time, but I went away for a while, came back, and it doesn't work anymore (I'm the sole programmer). The extended gridview is designed so that it always shows a footer row...
  2. Katerine

    Multiple Zip file creation and download with one button

    Hi, I have a client who wants their clients to be able to download their entire library of large pdf files from the website. So I've written code that is supposed to iterate through a query, add each file in the query to a temp zip file, and when the total number of files reaches 200, it's...
  3. Katerine

    Boolean Full Text Match searches - how to give preference to exact phrases without requiring them?

    Hi, So, I've got a table with a fulltext index, and my client wants search terms to be exclusive (that is, all search terms MUST be included in the record, or the record should not appear in the search results). So I've got the query set up as a boolean-type query (because, AFAIK, that's the...
  4. Katerine

    Fulltext index not returning new records

    Hi, I have an odd issue, that really needs fixing before tomorrow, and I've tried everything I can think of. I have a MySQL database on a shared server (so I don't have administrative permissions), that has a table called `CONTENT_Chemicals`. This table currently has 25548 rows. It has 3...
  5. Katerine

    Query with bind parameters, exported results to CSV

    Hi, I have what I hope is an easy PHP question. I'm fairly new to PHP, though not new to programming in general (I'm used to VB, though). I have a search form that, when submitted, should run a search query and export the results to CSV, and I'm running into problems. I haven't found anything...
  6. Katerine

    CSS question: Displaying 2-level unordered lists in a table layout?

    Hi, I have a new website that, because of reasons, I'd really like to use ul tags and have it display however I want with css, if at all possible. :-) In that vein, I have something like the following code: <ul class="level1listing columns 3cols"> <li id="col1head" class="header">Header for...
  7. Katerine

    Self-Join returning odd results

    Hi, I have a quick question, I hope. :-) The issue is quite simple. I'm trying to create a 5-level (purposely limited to 5) hierarchical query, that's returning odd results. For simplicity, I'll just include the relevant stuff. I have a table, called, "CONTENT_Items". This table has an ItemID...
  8. Katerine

    Ternary operator ('?') weirdness

    Hi, I have another dumb question. :-) I hope I'm just missing something obvious, but I've been looking at this syntax for a while, and I'm just not seeing it. Running this on my local server, Win 10 with IIS running PHP 5.6. The following variables are set as follows: $locationid = 0...
  9. Katerine

    File Upload issue

    Hi, I have what I hope is a simple problem. I'm fairly new to PHP, so it's very possible that I'm just missing something. :-) Here's the issue: I have code to upload a file. The code is pretty much copied from W3Schools' example PHP upload code. But when I use it, it doesn't upload the file...
  10. Katerine

    Variable returning &quot;empty&quot; even when not?

    I'm pretty new to PHP (specifically), so I apologize if I'm missing something obvious. At least this should be a pretty quick question. :-) Ok, so I have the following test code set up: $secure = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off') || $_SERVER['SERVER_PORT'] == 443...
  11. Katerine

    Access 2010 generated query throwing, &quot;This expression is typed incorrectly&quot; error

    Hi, I have a problem with, I hope, a simple solution that I'm just not seeing. :-) I have an Access 2010 database that runs a whole bunch of queries that are generated on the fly in VBA. It's throwing an error, and I can't figure out why. When I debug.print the sql statement that's generated...
  12. Katerine

    Syntax Error: Unexpected token { after a regular expression test

    Hi, I have what I hope is a simple question. :) The chrome debugger is giving me an error in my validation code: Uncaught SyntaxError: Unexpected token { The error is on the "{" line in the below code: if ((document.forms.regform.graddate.value.length > 0) && (...
  13. Katerine

    SPF Issue: Maximum DNS-interactive terms limit (10) exceeded.

    Hi, I have a bit of a puzzler. I have a client whose MX records have recently (early last week, or late the week before) changed to a spam filtering and forwarding service. No problem; they have an A record that holds their real mail recipient address. The have the following SPF record: v=spf1...
  14. Katerine

    Extract category based on sum in range (without hardcoding CASE...WHEN)

    I have what I hope has a semi-simple answer. :) Running SQL Server 2008 R2. Let's say that I'm using a database, and need to find out a person's classification, based on how much money they've contributed. Is there a way to do this without hard-coding? The classifications are subject to...
  15. Katerine

    Error in Recursive CTE query

    Hello, I have something that I hope will be an obvious fix, to anybody who knows more about recursive CTE queries than I do. It's probably something obvious... :) I'm working with a VBScript module which loads a TTX file through a SQL statement (because that's how this software package works...
  16. Katerine

    Concatenated field and text just appearing as empty brackets/boxes

    Hi. Hopefully I'm posting this in the right place. :) I have a report that’s based on a TTX file. CR v. 14.0.2.364 RTM. The TTX data is loaded through an ASP file and displayed through a 3rd party software. I’m kind of new-ish to this. Here’s the problem part of the design: The fields are...
  17. Katerine

    Question for gurus: Most efficient way to handle compound incremental numbers?

    Hi, I have what I hope is a fairly simple question. :-) I have a database (SQL Server 2008 R2) that I'm designing from scratch. It's in the beginning coding phase, and this particular table doesn't have any code based on it yet, so I'm pretty flexible with changing things. This database will...
  18. Katerine

    Procedure with EXECUTE AS - Failing sp_send_dbmail

    SQL Server Standard 2008 R2 Kind of a weird issue. I have a couple of database procedures which call sp_send_dbmail. It worked last week. It doesn't work today. I did restart my computer between last week and today, and manually restarted the SQL Server (currently running: the DB Engine...
  19. Katerine

    Please help - document[frmName] is undefined when calling function with variable form name

    Hi, I need help - this has officially gotten beyond me, I think. [dazed] I have a form that's dynamically created through vbscript (it has to be that way... one form, many course choices, many different questions for each course), and need it to validate that all multiple-choice answers are...
  20. Katerine

    Problem importing XML

    Hi, I'm still sort of a newbie with TSQL, and a total newbie to XML, so please bear with me. :-) It's in SQL Express 2008. Compatibility level is set at 100. I'm trying to import an XML file into a table. It's able to import the whole thing into a table, but what I want is for it to parse into...

Part and Inventory Search

Back
Top