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 gkittelson 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. bcapps

    users dont see calendar control, but I do.

    I created a web page in FrontPage2000 and used the calendar control supplied by FrontPage. Everything looks fine for me, even when I publish to my server, but my users only see a square box, sith an "x" in the corner. What in the world might I be doing wrong? Thanks
  2. bcapps

    Global.asa will not execute.

    I don't use Visual Interdev on a regular basis, it is loaded and I use it to update some pages, but primarily I use MSFrontPage to make and publish all my changes. I have never created a project in Visual Interdev, therefore I dont have anything in the suggested directory except an empty...
  3. bcapps

    Global.asa will not execute.

    Tried all above except moving into wwwroot. have moved web dev into inetpub and tried moving global around but no help. Still not executing. I do have Visual Interdev installed, have used it at times, don't know enuf about it to be less than dangerous. yet. What else might I need?
  4. bcapps

    Global.asa will not execute.

    OK, I may not have my Dev server set up correctly, If you could help me out a little I would appreciate it. I do have Visual Interdev installed, but am currently not using it as much as I should be, I am scheduled to attend a week long class in March. I am testing from the browser but my root...
  5. bcapps

    Global.asa will not execute.

    Simple stuff is good. root, yes. copied prod of global to dev, yes. copied prod of pages to dev, no. I can try that but I usually publish dev to prod every day and I've had this symptom on dev for some time, just now figured out what is going on. My global is checking Server.Variables against...
  6. bcapps

    Global.asa will not execute.

    Help! I am unable to get my development server to execute my global.asa file. I use that file to create a session variable to identify the visitor from page to page and it works fine when I publish to my production server, but my development server won't execute it. Any help is appreciated...
  7. bcapps

    Add New or DropDown Select existing

    I have a form that I use to allow users to enter names into a database through. In this particular part of the form, I want to give my users the ability to select existing names from a list built from a SQL select statement, or to add a new name to the database if one does not exist. Can a...
  8. bcapps

    How to generate a excel report.

    Create an .asp page at the top, enter your code as you usually would: <%@Language=VBScript> Then tell the system that you are creating a excel spreadsheet: <% Response.ContentType = &quot;application/vnd.ms-excel&quot; %> The rest can be the HTML and VBscript you would use to create a table...
  9. bcapps

    Average number issues active per day each month

    ok, I use a where clause to gather many events based on the month an issue is created, which works for gathering the number of events created each month, the number of events ending each month, and I am able to gather the average number of weeks an event goes on once it is closed. I am...
  10. bcapps

    Average number issues active per day each month

    Was out the last two days, Could you please provide an example of how to do this? Thanks bc
  11. bcapps

    Average number issues active per day each month

    I am having trouble with a SQL select statement. I have an Access database with a start date and a stop date of an event. I want to know what the average number of events are active each day, each month over the last year. So far my querry is giving me a synatx error. I need help! Here's the...
  12. bcapps

    Select Average number of events active each day each month

    I am having trouble with a SQL select statement. I have an Access database with a start date and a stop date of an event. I want to know what the average number of events are active each day, each month over the last year. So far my querry is giving me a synatx error. I need help! Here's the...
  13. bcapps

    Retrieving most current records

    I do this in one of my applications, but I am using vbscript on an asp page, you might try this: Set maxpurchase = conn.execute(&quot;SELECT MAX(Purchase) as max FROM tblpurchases&quot;) Then to retrieve it: maxpurchase(&quot;max&quot;) Hope this helps.
  14. bcapps

    How do I Apply Font Type to a Memo Field?

    I have an application I am working on where I must use wrap=&quot;hard&quot; inside my <TextArea> coding to ensure proper line breaks, and when displaying must use <pre> around my text to display properly. The problem is I am unable to display in the font I need to use for my users. How do I...
  15. bcapps

    Opening doc in MSWord sometimes opens ASP script instead of results.

    OK, yes it is actually trying to open the document on one of my users and making the changes you indicated did work. However, another of my users still has almost the same indications as before. Now, while they are definitely opening the document in WORD and since I have a SUB at the top of my...
  16. bcapps

    Passing varibles to other pages to be used in SQL

    If you have access to your global.asa file, you can create a global session variable when the person first accesses your site automatically, and then also automatically clean up your variables when they leave. In the global.asa file you would: Sub Session_OnStart FrontPage_StartSession (Run...
  17. bcapps

    Opening doc in MSWord sometimes opens ASP script instead of results.

    I have created a document in .asp using: <% Response.ContenType = &quot;application/msword&quot; %> at the top of my document and it works great for me and some of my users. The document accesses my database and creates a multipage document in WORD just as I expect it to. But when some of...
  18. bcapps

    Trying to capture and reuse primary key, getting type mismatch.

    It's Working!!! :) :) :) I Can't thank you enough!!!
  19. bcapps

    Trying to capture and reuse primary key, getting type mismatch.

    I tried that and now I am getting: Item cannot be found in the collection corresponding to the requested name or ordinal. Thanks
  20. bcapps

    Trying to capture and reuse primary key, getting type mismatch.

    I have code in an ASP page to insert some data, I want to insert into one table, retrieve the primary key from that entry and then insert that into another table. Here is what I have so far and I am getting type mismatch when trying to insert into the second table: conn.Execute &quot;insert...

Part and Inventory Search

Back
Top