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

    Excel Formula returning Zero

    I have and excel formula that sums up the values in two other cells. The two other cells get there value by a formula. When I sum these two cells up, Excel is returning Zero. Ex. A1 = 1 (this value is typed in) B1 = 3 (this value is typed in) A2 = 2 (this value is typed in) B2 = 4...
  2. breaknrun12

    Logon Fail when viewing report with subreport

    I have a crystal report that displays data from a data table within a data set. The dataset is populated with data by connecting to and querying a postgres database and loading the results into the data tables. When I add a subreport to the main report, it keeps asking me for login credentials...
  3. breaknrun12

    Failed Backup - IPv6

    i added the server's IP it couldn't find to the client's host file and it seems to be working now. But I'm noticing an authentication warning in the logs - Conflicting NSR peer information resources detected for fot 'host name'
  4. breaknrun12

    Failed Backup - IPv6

    The name is being resolved by DNS on both client and server. After pinging the server and client, I figured out that the IPv6 address it can't find is the Tunnel Adapter IPv6 address for the server. Not sure what to do from here.
  5. breaknrun12

    Failed Backup - IPv6

    I have a client machine I've been trying to back up, but it fails saying "Couldn't look up the name of address: 'Some IPv6 address':No such host is known". I ping the server by name I get a different IPv6 address than the one in the error message. I'm not sure where its getting this IP.
  6. breaknrun12

    Firefox appends .xls to a csv download

    It only happens on a handful of clients. the application we are using only uses firefox, so I can't use other browsers.
  7. breaknrun12

    Firefox appends .xls to a csv download

    When I try to open a .csv file from Firefox using Excel, firefox appends a .xls (filename.csv.xls) to the file and puts all the test in one column. How can I get Firefox to stop doing this so that Excel treats it as a true csv file. Thanks,
  8. breaknrun12

    Publishing VB 2008 windows application

    I'm trying to publish a windows application that works fine when I build it in Visual Studio. But when I try to install it I get a blank error message box with a big red circle X in the middle with an OK button. I thought it might have been something I coded wrong, but it seems that as soon as...
  9. breaknrun12

    Binding crystal report with multi table dataset

    I've changed the code to the below, but it doesn't populate the report. do you see anything wrong with this code? Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load Dim rpt As New CrystalReport1() Dim myConnection As SqlConnection...
  10. breaknrun12

    Binding crystal report with multi table dataset

    how do I set the join in the report?
  11. breaknrun12

    Binding crystal report with multi table dataset

    How do I join the two tables together so I can display them both on the report. Each line of the report has data from both tables like the query: SELECT Customers.CompanyName, Orders.OrderID FROM Customers INNER JOIN Orders ON Customers.CustomerID =...
  12. breaknrun12

    Binding crystal report with multi table dataset

    I'm trying to add a crystal report to my application that uses a dataset with two tables. how do I fill the dataset with the data from the two tables, create the relationship between the two tables, and bind the report to the dataset? Here's the code I got working for the report when it only...
  13. breaknrun12

    Return User defined object in web service

    How do I return a user defined object in a web service method for the client to use?
  14. breaknrun12

    ResultSet & Web Services

    What is the best way to return a ResultSet from a web service to the client? Thanks, BRENT
  15. breaknrun12

    Java Long Multiplcation Error

    Why does the statement long x = 24 * 60 * 60 * 1000 * 1000 compute the value for x to equal 500654080 instead of what it really is 86400000000? Thanks,

Part and Inventory Search

Back
Top