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 strongm 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. TigerFan987

    Parse XML with XmlDocument

    I have an xml file I'm trying to read that looks like this: <?xml version="1.0" encoding="utf-8"?> <ClinicalDocument xmlns="urn:hl7-org:v3" xmlns:cda="urn:hl7-org:v3" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:hl7-org:v3...
  2. TigerFan987

    Make Database calls through another server

    I have a web application on a web server. It makes database calls to a postgres database located behind a firewall on another server. This database is being moved off the network to another data center. We have set up a site-to-site vpn between computers on my network and the new data center...
  3. TigerFan987

    Completely delete client

    I assumed you meant re-install the client software, so I did. When I ran the backup I got a Conflicting NSR peer information error. So I had to delete the resources using the below commands. Looks like its working now. nsradmin -p nsrexec Delete type: NSR peer information; name: server being...
  4. TigerFan987

    Completely delete client

    What is the client SW? I'm not sure what you mean by that. I'm getting a "Host Address Mismatch" error when trying to perform the update.
  5. TigerFan987

    Completely delete client

    How you you completely delete a client from Legato. I'm trying to recreate a client because it was giving me problems backing up, but it seems o create the client with the same client ID. I've deleted the index folder off the backup server but I still get the same client ID and same problems...
  6. TigerFan987

    Crystal Report not displayed after deploying website

    This has been resolved. The web server was missing a directory that the crystalreportviewer was looking for. Sorry I don't have more detail, but my server team fixed the problem. Thanks anyway,
  7. TigerFan987

    Crystal Report not displayed after deploying website

    I have created a website using asp.net 4. In it I have a page with a crystal report viewer that is linked to a crystal report I have in the project. Everything works fine from my local machine, but when I deploy it to the web server nothing is displayed. not even an error message. the web...
  8. TigerFan987

    Can't create an instance of Crystal Report

    I have a asp website in which I've added a crystal report (crystalreport1.rpt). I'm trying to load the report with data from a dataset when the page loads, but I am unable to create an instance of the report dim rpt as new crystalreport1 crystalreport1 doesn't show up in intellisense. Any...
  9. TigerFan987

    Updating another users profile in VS 2010

    I figure it out. I needed to put the page load event, which loads the profile into the textboxes, into an if not ispostback statement like below. If Not IsPostBack Then Dim p As New ProfileCommon p = Profile.GetProfile(Request.QueryString("username"))...
  10. TigerFan987

    Updating another users profile in VS 2010

    After updating the values in the first and last name textboxes and clicking the update button, I notice in debugging mode the textboxes are keeping their original values. How do I get them to keep the updated variables?
  11. TigerFan987

    Updating another users profile in VS 2010

    I have created and asp.net website that has user profiles associated with users authenticated through Active Directory. I can add the profile and view other user profiles without any problem. But if I want to update another users profile it doesn't want to work. If I hard code the values into...
  12. TigerFan987

    Updating another users profile in VS 2010

    I have created and asp.net website that has user profiles associated with users authenticated through Active Directory. I can add the profile and view other user profiles without any problem. But if I want to update another users profile it doesn't want to work. If I hard code the values into...
  13. TigerFan987

    Crystal Activex Report Viewer

    So I've added the crystal activeX report viewer control 11 onto the form and named it CrystalReport1. In the form load event I tried adding your code, but there is no ReportFileName property for CrystalReport1. Am I missing something?
  14. TigerFan987

    Crystal Activex Report Viewer

    I'm trying to add the Crystal ActiveX Report Viewer control to my Access form. I have already created the crystal report and would like to be able to view it from the form. I can't find any documentation on how to use the control to view the report. How do I set the control properties to be...
  15. TigerFan987

    Conditional Expression Type

    If I have the code segment: System.out.print(false ? i : x); and i is an int and x is a char, shouldn't the type of this conditional expression be char. The Java Language Specification says "If one of the operands is of type T where T is byte, short, or char, and the other operand is a...

Part and Inventory Search

Back
Top