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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by edwilli

  1. edwilli

    procs vs dynamic sql

    I prefer procs for three main reasons: 1. SQL in a stored procedure is optimized for performance after the SQL Server runs it the first time. This doesn't happen with dynamic SQL. 2. Keeping the business logic in a proc allows to reuse the procs with multiple applications. This way I don't...
  2. edwilli

    Print web page and pdf documents that are linked to the page

    Users complete an online application using textboxes and such. The data is stored in a database. There is a page on our site - let's call it the "Print Page" - that displays all the data a user entered, and it is formatted for printing; so with the click of a button an administrator can print...
  3. edwilli

    Print web page and pdf documents that are linked to the page

    I have a request to create a batch print program that will print the contents of a web page as well any PDF documents that are linked to the page. For example a user fills out a contact information web form and uploads a resume to the site. I would like to create a method that will print the...
  4. edwilli

    Problem assigning security group to an Audience Rule.

    I am having trouble applying rules to SharePoint 2007 audiences based on the "member of" option. I want the audience to be a member of a particular security group in my Active Directory. After setting the "member of" option though, SharePoint cannot find any of my security groups. When I...
  5. edwilli

    Change Portal Area URL

    I have a portal area with the URL www.mysite.com/c1/helpdesk. I want to change the URL to www.mysite.com/helpdesk (remove the "c1") Anyone have tips on how to do this? Eric
  6. edwilli

    Delete Single Occurrence of Recurring Calendar Event

    I have an event list (i.e. Calendar) with several recurring events on it. One of these recurring events is a weekly meeting we have every Monday. One of these meetings has been canceled, but I can't find a way to delete this single occurrence without deleting the entire series. Am I missing...
  7. edwilli

    Scheduling a resource using the OWA client.

    We have set up some conference rooms as resources in Exchange. When I use my desktop Outlook to reserve the resource, it books the time on the resource calendar just fine. However, when I try the same thing with the OWA client, the resource receives the request via email, but doesn't...
  8. edwilli

    Inserting data into multiple tables

    Oh, and the solution cannot include temp tables. That's cheating! :-)
  9. edwilli

    Inserting data into multiple tables

    I have two tables named "People" and "Email". Because people can have more than one email, I created a one-to-many relationship between these two tables with a PK/FK named PeopleID. Now someone has given me a list of 1000 names and email addresses they want added to the database. The list...
  10. edwilli

    Connecting SQL Server 2000 to Exchange Server 2003

    Are you sure? In the time since my last post, I've come across documentation saying it's possible as long as both products are located on the same server. http://msdn.microsoft.com/library/default.asp?url=/library/en-us/acdata/ac_8_qd_12_0t5x.asp Admittedly this documentation discusses linking...
  11. edwilli

    Connecting SQL Server 2000 to Exchange Server 2003

    Are you sure? In the time since my last post, I've come across documentation saying it's possible as long as both products are located on the same server. http://msdn.microsoft.com/library/default.asp?url=/library/en-us/acdata/ac_8_qd_12_0t5x.asp Admittedly this documentation discusses linking...
  12. edwilli

    Connecting SQL Server 2000 to Exchange Server 2003

    I am looking for a way to view and edit Exchange Server data through SQL Server 2000. I idea behind this is to have the ability to run queries on the data. Has anyone connected the two servers before?
  13. edwilli

    runtime error 2501 occurs on one client computer only.

    My user was connected to an HP LaserJet 5 as well. Great job of sleuthing Vitamin!
  14. edwilli

    Automate field update from calculated control.

    That did the trick! You're awesome PHV! And thank you Richard for sending me in the right direction!
  15. edwilli

    Automate field update from calculated control.

    Richard I tried applying your Requery suggestion to my existing code, but without success. However I am at a loss as to why it doesn't work. Here is the code from one of my subforms with the Requery included: Private Sub Quantity_AfterUpdate() Me.WorkOrderMaterialPrice.Value =...

Part and Inventory Search

Back
Top