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 TouchToneTommy 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: gbrian
  • Content: Threads
  • Order by date
  1. gbrian

    Access bread crumb values

    How can I access the current bread cumb values with JavaScript? I'm looking to populate some variables with these values to group content. Any ideas? I'm new to SharePoint sorry if this isn't enough detail.
  2. gbrian

    Capturing the document download events

    I used to capture downloads with event handlers on URLs that had extensions matching things like "pdf,doc" on my website for additional event processing. With SharePoint, it seems the web part acts independently from the DOM events and this no longer works. How can I capture the click event on...
  3. gbrian

    Daily logs contain 2 days of data?

    Hello, I'm looking at a set of IIS 6 log files and am seeing the following: #Software: Microsoft Internet Information Services 6.0 #Version: 1.0 #Date: 2008-10-02 04:00:00 The data starts and ends at 4am. Why is this? It means the log file for October 2nd will contain data from 4am October...
  4. gbrian

    Display information about any object on click

    Is it possible to create a script that would return the information about an object that was clicked? IE - an alert that could return information such as ("Mouse Down on DIV NAME="test" OR "Mouse Up on IMG ALT="test image") without implementing events on each object? Just looking for a high...
  5. gbrian

    Deleted database, logs?

    Hello, Someone deleted one of our databases. Is there any way to find out when it was deleted and/or what host was connected to the server? Thanks, Brian
  6. gbrian

    My stored procedure is creating 20,000+ tempdb extent locks

    Hello...this is a nightmare, please help! I have a stored procedure that is a combination of 15 separate queries which each return a result in the form of 'description', count(some_field), and I am using UNION ALL to combine all of these. The result is something that might look like this...
  7. gbrian

    website tracking, server/client side

    Wasn't sure where to ask this but it's a pretty general question.. Obviously with web analytics you have IIS log analyzers (server-side tracking) and Javascript tagging (client-side tracking). However, if a company uses a "server-side" script to process details about your session and stores...
  8. gbrian

    regex, return all <a....> .... </a> from html

    Hello, I need to create a regular expression so that I can replace anything in an html source file with blank if it does not match the criteria <a *> *</a> Example, <html> <strong><a href="asdf.com"> test1 </a></strong> <strong><a href="asdf.com"> test2 </a></strong> </html> would return: <a...
  9. gbrian

    read uncommitted / nolock, locks still showing up!

    Hello, I have a stored procedure that contains 30 queries all combined with UNION ALL (each query has the same columns and I could use UNION, but anyways..) It takes FOREVER (5 hours?). This data is input into the database monthly and is then never changed (no insert/update/delete going on)...
  10. gbrian

    Array/Largest value, help!

    Hello, I have two columns, description and count. I need to search for the largest count value where description contains a specified string. Example, the largest count (column B) where column A contains 'Testing 1' Seems somewhat simple but I am having excel block! Thanks.
  11. gbrian

    Concat multiple database tables

    I have 25 databases that all contain the same "Table X" What I would like to do is create some sort of view that shows the data from all of these tables in one listing. What are my options for doing this directly in MS SQL Server?
  12. gbrian

    Cannot access newly created item with getElementById

    I have a function that creates 'select' controls: var newInput4 = document.createElement("select"); newInput4.setAttribute("id","phonetype" + (howmanyrows+1)); newInput4.onchange = new Function("pt1(" + spanStart.id + ", " + newInput4.id + ")"); After this object is created...
  13. gbrian

    Computer Randomly Restarts (BUGCHECK ERROR)

    In the past week or two my PC started randomly restarting (I guess it's just a blue screen, but auto-restarts) Anyways, I can't figure out what is causing it. Here is the error I get. The computer has rebooted from a bugcheck. The bugcheck was: 0x1000008e (0xc0000005, 0xbf02b835, 0xb58da1b8...
  14. gbrian

    Crosstab Percent of Total Formatting?

    The percent of total always rounds down for me. I am using Crystal X. Is there any way to have the percent show up to 1 or 2 decimal places? I'm not in front of my report now .. is it as simple as selecting the total field in design view and using format field? If so, sorry for the post!
  15. gbrian

    Line chart color by Y axis

    I have a chart that goes from 0.5 - 1.5 on the Y axis. What I would like is for the chart's background color between 0.5 - 0.8 to be red, 0.8 - 1.2 to be yellow, and 1.2 - 1.5 to be red. Is there any way to do this?
  16. gbrian

    Custom Coloring

    I have a request to change the color of either the text or background color for the top 3 and lowest 3 items in a column. Ex) Column 1 Column 2 ------------------------- Brian 50% John 40% Joe 30% Jane 10% Mary 5% Beth 10% On this, I would...
  17. gbrian

    Don't summarize on charts disabled

    I am using Crystal Reports 10, Full version. I have found a few forums explaining the same thing (don't summarize is greyed out on the chart expert screen). I have tried using a formula field..didn't work. What I am trying to do is display a line graph with records in a table such as...
  18. gbrian

    Authentication / Subscription Script

    I'm looking for an open-source, inexpensive (or free), mySQL based authentication/subscription script. I probably won't use the subscription portion for a while, but would like it implemented from the start so that I do not have to worry about it later. I would like it to be open-source and...
  19. gbrian

    Training Workshop or course

    Can anyone reccomend a workshop or seminar they have attended? I am a data analyst part of a direct marketing team--but also analyze web, various survey applications, and other. I have just started a good Data Mining book and am looking for something a little more interactive / hands-on (and...
  20. gbrian

    how to &quot;transfertext&quot; macro to current working directory

    I have a macro that uses transfertext to output a file. What can I put in front of the file so that it is created in the same directory as the database? thanks in advanced.

Part and Inventory Search

Back
Top