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!

Recent content by Katerine

  1. Katerine

    C# Changes for ASP Intranet Site Not Showing?

    Ah, ok. Well, I'm afraid that's all I've got (I'm fairly new to Visual Studio myself... have only been using it for a couple months). :-) And 2017 community is the only edition I have any experience with. If anybody else has any ideas? Katie
  2. Katerine

    "ArgumentOutOfRangeException" for binding combobox with datatable.

    It sounds like you're saying that the code above works fine (loading the combobox), but then breaks when you click the Register button. What's the code for that button's click event? Katie
  3. Katerine

    Streaming a file to a local printer

    I'm not sure, but this sounds to me like a printer issue. Did a google search for local printer delay, and found this: (In Windows 10, you find this by opening your start screen, typing "Printers," opening "Printers and Scanners," left-clicking on your default printer in the list, go to...
  4. Katerine

    C# Changes for ASP Intranet Site Not Showing?

    I'm assuming you're using Visual Studio? I think you have to have Visual Studio in order to do it. Community Edition, which is free, is sufficient. You open the solution, then choose either "Build Solution" or "Rebuild Solution" (not much difference if you haven't changed any of the...
  5. Katerine

    C# Changes for ASP Intranet Site Not Showing?

    Just checking: have you rebuilt the solution? Katie
  6. 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...
  7. Katerine

    Multiple Zip file creation and download with one button

    Unfortunately, the library of PDFs is customized for each client, and can be limited by searches (or not) as well, so having a standard PDF library won't work. It's also always changing. I'm not too concerned about it crippling the server, because the number of client logins who even have access...
  8. 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...
  9. Katerine

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

    Thanks. That part's already done, though. The question is whether it's possible to rank exact phrase matches as more relevant (while at the same time requiring all words be present in the returned records, and without limiting to exact phrase matches only). Katie
  10. Katerine

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

    Unfortunately, no. That would be simpler. Using the above "acetate solution" example: A search for acetate solution can only return records where both "acetate" and "solution" appear in the name. If only one of those words appears in the name, then it should not return the record at all...
  11. Katerine

    Can't Create Trigger using values from other tables

    Regarding the OP, according to https://stackoverflow.com/questions/5003869/error-1064-in-trigger-creation-in-mysql (I'm not too familiar with MySQL triggers, so I looked it up), a trigger is not the same thing as a stored procedure, so there's no need for BEGIN... END. So... the syntax would be...
  12. Katerine

    Fulltext index not returning new records

    In case anybody else has a similar problem, thought I should share the workaround. It really was a workaround, thanks to being on a shared server. It was pretty complicated, and my code is kind of difficult to read, so I'll just sum up the logic. Basic gist is, if a search term is less than 4...
  13. Katerine

    Including a "count" filter in query.

    I think you may be overthinking this? Especially since it needs to be dynamic, it seems it would be easier to do something like this (untested): SELECT section, item, ct FROM ( SELECT 'Colour' AS section, colour AS item, count(ref) AS ct FROM products WHERE code = 'xyz' GROUP BY colour UNION...
  14. 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...
  15. Katerine

    Hour difference based on priority value

    Good... glad to hear there's progress! :-) However, looking at your query, one thing leaps out at me, that means it's not going to continue to work, at least not as it is right now. It's in this line: CASE WHEN DATE_FORMAT(HD_TICKET.TIME_CLOSED, '%m/%d/%Y %H:%I:%s') >...

Part and Inventory Search

Back
Top