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

    Does RAISERROR terminate an SSIS package

    We use RAISERROR in all our procs that are used by our SSIS pkgs. The Error is bubbled up to SSIS and from there we can halt or continue the package. The TASK that called the proc will go into error state and anything below that task will not run. In order to halt the entire package, all our...
  2. pmbtech

    RouteData.Values is always empty

    I am using .Net 4.0 Routing and IIS 5.1 I have set up a test route as : routes.MapPageRoute("onlineuniversity-catalog", "onlineuniversity/catalog.aspx/{category}/{coursetype}", "~/onlineuniversity/catalog.aspx"); I set up 3 test nav links as: In Markup ...
  3. pmbtech

    exception from OLEDB provider

    catches will be processed in order so if you want to trap oledb exceptions first: Catch oledbEx as OleDbException .... Catch ex as exception .... if the exception is not an OleDbException it will fall to the general exception catch. If the OleDb exception is like the SqlException, you will have...
  4. pmbtech

    Trying to access open package programmatically

    I am writing an add-in to look for disabled tasks in all the packages of a solution. I can do this by opening the package from the source file, but I cannot figure out how to read the package if it is open in a designer window. The user may have a package or two open and may have disabled a task...
  5. pmbtech

    Broadcast Message without DHCP

    check this post, I just did something very similar http://www.tek-tips.com/viewthread.cfm?qid=1518340&page=1
  6. pmbtech

    Physically connect a 192.168.0.X Device to A 10.1.15.X computer

    Thanks for all the suggestions. I ended up using multicast. My device will send a multicast when turned on if the IP is not set (I no longer give it an IP out of the factory) The broadcast contains the MAC, Device Type and a flag requesting an IP The Setup program will listen for any broadcasts...
  7. pmbtech

    Assign IP to a network appliance

    I have a network device (LED Sign) that is shipped with an IP of 192.168.X I need to write a utility for my customers to assign a new IP to it. The sign has a web based setup screen. My problem is that my customers may have a 10.1.X network. They setup the sign by connecting directly to it via a...
  8. pmbtech

    Physically connect a 192.168.0.X Device to A 10.1.15.X computer

    I am trying to write a setup utility for a Device that has an IP of 192.168.0.X when we ship it. My Customers may be on a 10.X network. If I physically connect the device to the customers compter via hub or crossover, can I some how access my 192.X device so I can change the IP. My device has a...
  9. pmbtech

    COM call never comes back

    I have an interesting problem. We have several apps that call a 3rd party DLL. We recently moved all our app to a new blade server and now every now and then when we make a call into the DLL it never returns. There is no error or anything. The calling app just hangs waiting for the return from...
  10. pmbtech

    Server Application Unavailable

    aspnet has full control I've re-registered .net I've re-booted (several times) there are about 6 applications on this web server and they all stopped working with the same error message I am at my wits end. :-)
  11. pmbtech

    Server Application Unavailable

    Tried that, no joy.
  12. pmbtech

    Server Application Unavailable

    My web server has started throwing this error: Server Application Unavailable The web application you are attempting to access on this web server is currently unavailable. Please hit the "Refresh" button in your web browser to retry your request. Administrator Note: An error message...
  13. pmbtech

    Server Application Unavailable

    My web server has started throwing this error: Server Application Unavailable The web application you are attempting to access on this web server is currently unavailable. Please hit the "Refresh" button in your web browser to retry your request. Administrator Note: An error message...
  14. pmbtech

    How do I setup IIS 5.0 with .Net 1.1 and 2.0

    Here's the deal. I want to find out if I can set my servers up to run NET1.1 and NET2.0. Currently they are setup to run NET1.1. They are running WIN2Ksp4 and IIS 5.0. I know the 2 NET versions have to run in their own application pool, but I cannot find anything on how to set that up with...
  15. pmbtech

    Visual Studio .NET and Crystal Reports

    I just had an issue with my VS2005 IDE not showing my Property window and I got this as a possible solution from a kind soul, and it worked like a charm. You can also 'try Tools -> Import and Export Settings...' then 'Reset all settings' to put it back to it's default. It may work for the...
  16. pmbtech

    Property Window is gone

    Thanks, Tools -> Import and Export Settings...' then 'Reset all settings' did the trick.
  17. pmbtech

    Property Window is gone

    This is a general VS2005 question. All of a sudden I can no longer see my properties window. When I right click a control and choose properties the IDE will loose focus but no property window is visible. Anybody ever seen this?
  18. pmbtech

    MS Access - Can't see queries with subqueries or custom functions

    When I connect to my MS Access DB to select a query for a report, none of the queries that have sub queries or custom functions show up. Is this just the way it is? How do I get around this?
  19. pmbtech

    masterpage and Identity.IsAuthenticated

    no matter what I try, my master page always returns false for Identity.IsAuthenticated. I know I am authenticated or I wouldn't be sent to this page. I have tried; Page.User.Identity.IsAuthenticated - always false HttpContext.Current.User.Identity.IsAuthenticated - always false I have the code...
  20. pmbtech

    Login Control on a content page

    Nevermind. I figured it out

Part and Inventory Search

Back
Top