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

  1. sirnose1

    CFIF for CFmail

    I have a coldfusion page that emails to some recipients. There is a <CfIF> that means that if a hidden field has a certain value based on a checkbox it will add the header information bto the email. The javascript works function TestChk(){ var checkbox =...
  2. sirnose1

    Filter by SysDate not working

    I have an SQL query that loads data from a link server that returns Oracle data but I am having trouble filtering by sysdate. When I dont filter all data is returned but I just need the data for the previous day. What am I doing wrong here? select S.* from openquery(LOTOS, 'SELECT RET_CD...
  3. sirnose1

    Disable dynamically generated input type = checkbox in table column

    I managed to solve that problem. Problem now is my validate function for this issue. The function Validate() calls the return of Y or N, based on whether a checkbox is checked or not. Even though the column has a checked checkbox (returns 'Y'), function still shows the alert. I'm an asp.net...
  4. sirnose1

    Disable dynamically generated input type = checkbox in table column

    Forgot to mention that the first row checkboxes will be clicked to enable/disable checkboxes.
  5. sirnose1

    Disable dynamically generated input type = checkbox in table column

    I am working on a JavaScript function to disable all the dynamically generated html checkboxes in a table column. The little test function that I have works fine, but I need to be able to loop through and disable. It takes a paramter 'month' which is a number. The 'chk_xxx_month' is the...
  6. sirnose1

    Fileupload save to folder extension problems

    I have some code that uploads a document, renames the file based on the the concat of the year and a users id. (ex. "2014-9806543210"). It should overwrite the file no matter what the extension, so it could be stored as "2014-9806543210.xls" "2014-9806543210.xlsx", "2014-9806543210.docx", etc...
  7. sirnose1

    JavaScript needs to run if only if File exist

    I have a form where a user uploads an excel file, renames the file then checks to see if the file exist. If it doesn't exist it saves fine. I get the message to overwrite if it exist, but when I click on the OK button nothing happens. How do I make this work? Thanks, I could really use your...
  8. sirnose1

    Javascript needs to run fileupload if &quot;OK&quot; is licked for overwrite

    I have a form where a user uploads an excel file, renames the file then checks to see if the file exist. If it doesn't exist it saves fine. I get the message to overwrite if it exist, but when I click on the OK button nothing happens. How do I make this work? Thanks, I could really use your...
  9. sirnose1

    Need to Open a new window in onClick event from code

    I have this code that when "preview" is clicked, the email opens in a new window. That works fine. However when "Send" is clicked, the user gets a confirmation window that they will be sending an email and cant be undone. I need to open this in a new window. I have added target=_blank a...
  10. sirnose1

    UpdateProgress not working

    Got it! I was missing the Javascript code. <script language="javascript" type="text/javascript"> function displaywaitmsg() { var updateProgress = $get("<%= uplGroupAwareness.ClientID%>"); updateProgress.style.display = "inline-block"...
  11. sirnose1

    UpdateProgress not working

    Even after adding the Display after = 0 the image still will not show. I still get the waiting.. notification and the data loads into the table but the image still will not show. Am I supposed to add some javascript or something? This is really baffling me.
  12. sirnose1

    UpdateProgress not working

    I have an application that uploads an excel spreadsheet to a gridview. The gridview is then loaded into a table in a database. That works fine, but the updateprogress control will not display. Any help would be greatly appreciated. Here is the asp.net code: <asp:Content ID="Content2"...
  13. sirnose1

    'The process cannot access the file because it is being used by another process' with FileUpload con

    Thanks! Closing the connection was part of the problem. I didnt have to delete the file, but what I did was add "fuGroupAwarenessXLS.PostedFile.InputStream.Dispose()".
  14. sirnose1

    'The process cannot access the file because it is being used by another process' with FileUpload con

    The code does what I want when it first runs, moves data from spreadsheet to excel. However when I attempt to load it again using the fileupload control, I get an error "The process cannot access the file. because it is being used by another process." I have tried different things but it...
  15. sirnose1

    Want to prevent Menu items from wrapping in DIV

    Here is the entire css file. Which divs did you apply the float:left to? I still get the same results. THe text is centered in the div and the dividers are on the left. /* CSS Document */ body,td,th { font-family: Arial, Helvetica, sans-serif; font-size: 13px; } body { background-color...
  16. sirnose1

    Want to prevent Menu items from wrapping in DIV

    Had no effect. Seems like the <nobr></nobr> in the function does not work?
  17. sirnose1

    Want to prevent Menu items from wrapping in DIV

    Sorry. Misunderstood you. Here it is <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head><title> 2014 IMARK Annual Meeting </title><link...
  18. sirnose1

    Want to prevent Menu items from wrapping in DIV

    Here is the full function: Public Shared Function TopNav(Meeting_ID As Integer, strCID As String) As String TopNav = "" Dim strTypeID As String = Right(strCID, 1) Dim strWhere As String = "" If strTypeID = "1" Then strWhere = " AND TopNav_ForMembers =...
  19. sirnose1

    Want to prevent Menu items from wrapping in DIV

    I have a div in my master page for the top navigation menu. I need to display this all on one line but the text keeps wrapping. I have tried everything I now but its not working. Please help. Here is my code: CSS: #navigation { height:15px; background-color:#e2222f; padding:15px 0px...
  20. sirnose1

    Radchart Click event fires after 2 clicks instead of one.

    I have an ASP.Net web page that contains a RadChart. When an area of the chart is clicked, it opens a popup window with a radgrid populated with data from a stored procedure that fires after one click but takes an extra click in order to populate this grid. I am kind of new to the Web page...

Part and Inventory Search

Back
Top