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 Chriss Miller 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. evaleah

    export cutting off rows

    Turns out the issue was saved data in the report. No matter what I did I could only get the exact same 145 rows. In the end, I recreated the report and now it works perfectly. I have no idea why the data was trapped in that state, but since recreating fixed it, it is fixed.
  2. evaleah

    export cutting off rows

    I am using Crystal Reports for Visual Studio 2010 in an ASP.NET 4.0 web forms application. The report in the builder runs properly and returns thousands of rows. When I export it to any ExporttoStream format I am only getting 145 rows! Does anyone have any idea why this might be? I have no null...
  3. evaleah

    css input style class supercedes declared class

    I figured this out. I left the one class and added an input.entity-edit-action-save sized as desired and with a transparent background. Works like a charm :)
  4. evaleah

    css input style class supercedes declared class

    I have a button declared as such: <input title="Save" class="entity-edit-action-save" type="submit" value="" /> In my css I have several classes dealing with buttons: input[type=submit], input[type=reset], input[type=button], button { background-color: #384e72; background-image...
  5. evaleah

    DELETE not removing all applicable rows

    I have the following stored procedure. Each time I run it, rows are deleted, but not all of them. If I run it a 3 times or so, then all the applicable rows are eventually deleted. The total number of rows needing deletion is only about 3500. Can anyone tell me what I missing? Is there a...
  6. evaleah

    Cannot debug web app when online to TFS

    I figured this out. Turns out I had a different startup path for the project depending on where the source code was sitting. I have corrected the startup path and everything is working now.
  7. evaleah

    Cannot debug web app when online to TFS

    I have a web app written in C# in Visual Studio 2010 connected to Team Foundation Server 2010. When I have the solution offline it debugs just fine. The exact same solution, when it is online, gives an error: Unable to start debugging on the web server. The web server is not configured...
  8. evaleah

    rule to export email to text file

    Thanks! I will look into that. Eva
  9. evaleah

    rule to export email to text file

    I am using Notes 7. Is there a way to create a rule to have an email saved out to a directory folder as a text file when it arrives? I have a rule that is putting it in a Notes folder currently. I would also like to have it available from Windows as a text file without opening Lotus Notes...
  10. evaleah

    join multiple parameters

    I have an SQL statement that works in SQL Server and Oracle when written this way: SELECT INTERPRETATIONVALUES.CODEID, Count(CODESYSTEMVALUES.CODESYSTEMVALUEID) AS ExistingValues, DATASPECIFICATIONS.SHORTNAME, DATASPECIFICATIONS.LONGNAME, INTERPRETATIONVALUES.HARVESTTEXT FROM...
  11. evaleah

    datarow string item removing CRLF

    I ended up recoding to get around the issue but thanks for the tip. I am sure to use Environment next time!
  12. evaleah

    datarow string item removing CRLF

    Yes and chr(10).
  13. evaleah

    datarow string item removing CRLF

    I am querying an Access database. One of the items returned is a memo field. When I look at the database the field has carriage returns. When I execute instr(DR.Item("Body"), ControlChars.NewLine) or ControlChars.Cr, ControlChars.Lf or ControlChars.CrLf it comes back with 0 every single time...
  14. evaleah

    vb.net call to Lotus Notes crashing

    SOLVED! I am sharing in case anyone else runs into this and finds this thread. Turns out I had to just call the objects in two different subroutines. I couldn't instantiate the objects together. Then it works. Go figure.....
  15. evaleah

    vb.net call to Lotus Notes crashing

    Turns out the crash is occurring after I apparently have set the object containing the Notes references to nothing and when I call an object to connect to an Access database. It is when I make the Oledb call to execute a query that the crash occurs. Not actually in any of the code I listed...
  16. evaleah

    vb.net call to Lotus Notes crashing

    I have a vb.net app that calls Notes in the background (the client never opens) and executes the following: Public Function ReadMail(ByVal MessageUniversalID As String, ByVal MailFolder As String) As String() Dim EmailData(4) As String 'string data to return Dim oNotesSession As New NotesSession...
  17. evaleah

    Dsn Connection To Call Sproc

    I have a call to an Oracle stored procedure. I have two linked tables from the same Oracle DB as I would like to execute the stored procedure from. Ideally, I would like to use the DSN I am using to link the tables to also access the stored procedure so I am only maintaining the link in one...
  18. evaleah

    stuck in delimiter //

    I just closed the terminal window. I hated to do it, but there it is.
  19. evaleah

    stuck in delimiter //

    I typed in the following in a terminal window while connected to my MySQL server and now I can't make it close the delimited section and tell me there is a syntax error. mysql> delimiter //create procedure spEditUniverse ( mysql> // delimiter; -> -> ; -> // -> -> ; ->...
  20. evaleah

    Use repeater with child nodes of XML document

    The .NET parser for XML usually splits data like that into multiple tables. Try checking for multiple tables in the dataset and see if one of them has what you are looking for.

Part and Inventory Search

Back
Top