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

    How to submit the form elements within an IFrame

    Hi, I have a page with 2 IFrames and a single submit button at the main page: IFrame.asp <html> <head> <title>IFrame</title> </head> <body> <form action="formresults.asp"> <iframe name="iFrame1" id="iFrame1" src="iframe1.html"> </iframe> <iframe name="iFrame2" id="iFrame2"...
  2. reportingbuzz

    Blank screen at the web browser

    Hi, I use Crystal Reports 8.5 and have integrated it with Classic ASP I call the Crystal Reports through client side VBScript. While testing it, all were able to view the reports. But one person came back saying that he saw a grey blank screen in the Crystal Viewer. I am using ActiveX viewer...
  3. reportingbuzz

    Site Map Question

    Hi, How does one go about creating a site-map for a web site that does not have one? If the site is really big - 50 to 100 pages of ASP pages, then how does one do it? Does one go through all the sites ASP pages and then add accordingly to the sitemap.asp or sitemap.html Any guidelines, any...
  4. reportingbuzz

    Multi-column List Box

    Hi, This small example uses Northwind database to show the 2 sets of data in the select box - CategoryID, CategoryName. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 TRANSITIONAL//EN" "HTTP://W3.ORG/TR/HTML4/LOOSE.DTD"> <HTML> <HEAD> <SCRIPT> </SCRIPT> </HEAD> <TITLE>Multi-column...
  5. reportingbuzz

    How to count of non-Empty cells in Excel VBA?

    Hi, While looping through a column from 2 to 12, I want to see those cells which has some value, and do a count of those cells which has the value. How can I do that? Thanks. With wSht For iRow = 2 To 105 'grab the value of the 'AiRow' 'varPlan = .Cells(iRow, 1).Value...
  6. reportingbuzz

    How to loop through a specified range?

    Hi, How can I loop through a range? Within the loop, I wish to find the value. If it exists, then get the cell reference of the that value? How can do this too? My code now is: For i = 0 To UBound(aPlan, 2) 'Take the value of the C_Plan of the i row and dump it into a variable...
  7. reportingbuzz

    Autocomplete drop-down box

    Hi, I have a drop down box which consists of the names of employees. The total number of names totals 641. It is built using ASP recordset object. When the users search for a name, they type a letter by typing a letter and it jumps to the first instance of that letter. Since all the names are...
  8. reportingbuzz

    ONe dropdown dependent on another

    Hi, I have built a small ASP sample page which pulls data from the Northwind tables - Categories, Products. I have already populated the 2 dropdown boxes. I have an onchange event attached to the first select box - Category so that with change to the dropdwon, the 2nd dropdown would show the...
  9. reportingbuzz

    Content Management System

    Hi, For a start, I would like to create a system that would manage the word documents which the admin users create to send out to the end users in case there are issues with crystal reports they view. Basically error messages that users see and would like to prepare the end users in case the...
  10. reportingbuzz

    Not sure how to deal with hidden boxes....

    Hi, Not sure if I have to post this question here. I have an admin page which has a textbox followed by a submit button and a horizontal rule - <HR>. On load of the page, this is all the admin users see. Only after the submit button is clicked, then the users get to see the Employee_Report.asp...
  11. reportingbuzz

    How to equate value of hidden textbox with an array of radio buttons?

    Hi, I wish to grab the value of my hidden textbox and then go through an array of the radio buttons. Where there is a match, I would like to associate the checked property of that radio button to true. I am basically preserving the state of the radio button so that the users know which radio...
  12. reportingbuzz

    How to populate a textbox with a a href onclick event

    Hi, I have a function which shows and hides an org tree. For every person I click on, i take the empid of the person and store it in a string. As I show, I add the person's empid to the string. As I hide, I remove the person's empid from the string. Within the function, how can I can populate a...

Part and Inventory Search

Back
Top