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. dcwave

    Formating Display of Users plus sub-info

    I am not if my title makes sense. I have an asp report pulling from access. I need to display the information like this: User Name 1 Item 1 Item 2 Item 3 User Name 2 Item 1 Item 2 User Name 3 Item 1 I am not sure how to structure my page and the query loop to display the info like this...
  2. dcwave

    Avaya IP Office Does Not Respond to Norstar DTMF Tones

    Turn on long tones on the Norstar. I run into this all the time connecting Predictive dialers to the Norstar.
  3. dcwave

    PRIs verses T1

    I do this all the time with my customers - LD PRIs for our application. Dedicated rates and the power of the d-channel for signaling.
  4. dcwave

    Dynamic Data without refresh

    Thanks. I did search it and came up with some code to do what I want. Thanks for pointing me in the right direction.
  5. dcwave

    Dynamic Data without refresh

    Sheco - can you elaborate a little more on that? DotNetGnat - I know nothing about AJAX. Part of the problem is that out company is mostly C/C++, the only webstuff or VB that happens around here is when I need stuff and no one will do it or buy it. I had thought about using a Perl script...
  6. dcwave

    Dynamic Data without refresh

    Hey gurus... I have a secure web page that contains mostly static HTML. However, I have one area that needs to have dynamic data update every 15 seconds. I do not want to have to refresh the whole page every 15 seconds. What is the best way to go about this? Thanks
  7. dcwave

    EOF error from joined tables - need query help.

    Thanks George, I think that worked!
  8. dcwave

    EOF error from joined tables - need query help.

    Thanks for the quick replies. I tested this SELECT sales.DateSold, sales.CustomerName FROM sales Left JOIN Checklist ON checklist.SaleID = sales.ID and checklist.installcomplete="" GROUP BY sales.DateSold, sales.CustomerName The error I get when running it in Access...
  9. dcwave

    EOF error from joined tables - need query help.

    This is probably simple to solve. I have two tables - sales and checklist. Sales Table ID - AutoNum Date - Date CustName - Text SaleAmount - Currency Checklist Table ID - AutoNum SaleID - Num IntroLetter - Date Review -Date InstallComplete - Date I need to create a page that shows the...
  10. dcwave

    Need help with INSERT from LIST Box

    yeah.. building dynamically I have done.. The seemingly hard part was splitting out the result. Thanks again for the help!
  11. dcwave

    Need help with INSERT from LIST Box

    Thanks, much... I figured out what I needed using this... duh. <form name="testform" action="inserttest.asp" method="post"> <select multiple name="list"> <option value="1">One</option> <option value="2">Two</option> <option value="3">Three</option> </select> <input...
  12. dcwave

    Need help with INSERT from LIST Box

    I have a HTML List box (<select multiple>) that is populated from a table. I need the user to select multiple options. Then insert into a second table the selections with the same selection ID. I am assuming I need to loop my insert statement somehow, I'm just not sure how. Can anyone help? Thanks
  13. dcwave

    Intertel AXXESS

    I was one of the first US techs to certify on the IP Office. Stay away.. stay far away. They are crap. The new company I work at asked me to buy a new phone system - I went with the intertel over several others.
  14. dcwave

    Calculation of max dial rate

    If you're still looking for an answer I can tell you how many calls per hour an outbound dialer will attempt per dialer port. I am an engineer at one of the older dialer companies. Let me know. There are several pieces of data that I will need from you.
  15. dcwave

    Looped Insert help needed

    Perhaps looking at the page will give you a better idea of what I am looking for. http://www.dcwave.com/enter3.asp PBX Table: ID, PBX Name, Gen Info Tech Table ID, PBXID, Resource, Connection, EndPoint, Sig, SupDisc, DNIS, ANI, Flash Each line item in the form is assiciated with the PBX ID in...
  16. dcwave

    Looped Insert help needed

    Greetings, I am not sure I understand how to do a looped insert and could use some help and maybe some code examples so that I can undertand what's happening. I have read some posts regarding this but I don't think I have enough info to know if what I am reading applies. I have two tables in...
  17. dcwave

    Detecting if there is a audio stream

    Greetings, I'm not sure is this is the right forums or not... I have a live audio stream using WMP and encoder. I would like my page to check for a stream prior to loading the page. If there is no stream then a redirect to an "off-line" page with some static asf file playing. Does anyone have...
  18. dcwave

    Is there a way to sort this...?

    Thanks. I didn't know you could just count the number of fields and order by their number.
  19. dcwave

    Is there a way to sort this...?

    What does the "11" correspond to?
  20. dcwave

    Is there a way to sort this...?

    SELECT sales.RSMID, rsm.FName, rsm.LName, sales.ID AS SalesID, sales.DateSold, sales.CustName, sales.SysConfig, host.HostName, salestype.SaleType, sales.Amount, (Select Sum(B.Amount) From Sales B Where B.RSMID=Sales.RSMID AND Month(B.DateSold)=1) AS MTD, sales.Margin, rsm.Goal FROM ((rsm INNER...

Part and Inventory Search

Back
Top