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: *

  • Users: evaleah
  • Content: Threads
  • Order by date
  1. 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...
  2. 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...
  3. 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...
  4. 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...
  5. 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...
  6. 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...
  7. 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...
  8. 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...
  9. 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...
  10. 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; -> -> ; -> // -> -> ; ->...
  11. evaleah

    XQuery concatenation on return

    I have the following bit of xquery for $x in $doc/ClinicalDocument/component/structuredBody/component/section where $x/title="Problems" return ($x/entry/act/entryRelationship/observation/value/@displayName,"|") It is returning the following...
  12. evaleah

    too few parameters, expected 1

    I have a VB6 app running against an Access2000 database. I have the following bit of code to generate a SQL statement: strSQL = "select distinct QCType, LowValue, HighValue from " & strSpecsTable strSQL = strSQL + " where ShortName = """ & FieldName & """" When this is run it produces a...
  13. evaleah

    iif in combination with type cast

    I have the following bit of MS Access SQL Code: select * from tbltestdata where iif(isnull(Field),0,CLng(Field)) in (1, 2, 3, 4, 5, 6, 7, 777) and ShortName = "OpType" When I run it, I get a "Data Type Mismatch" error. Can anyone suggest a way to do this? There are several reasons why the...
  14. evaleah

    create table query, bit value not updateable

    I have a create table query I execute from VBA code that includes a BIT column. All the columns work perfectly normally except the bit. No matter what I do to attempt to update the value in the new table it stays -1. When I open the table in design view and change the format to Yes/No then it...
  15. evaleah

    basic img image-background issue

    I have a simple html img control I would like to add a background image to on an ASP.NET webform. I have the following but the background image does not show. The image being referenced is there. I can see it in the second image control. I just don't see it as a background. Any ideas? <img...
  16. evaleah

    cannot remove add in

    I am testing an add in. The test project I am using has an old version of the add in permanently installed from the Tools - Add Ins menu item. When I open the Add In manager it isn't there for me to uncheck. Does anyone have any idea how I remove all references to this add in for this...
  17. evaleah

    retrieve value from shell script

    I have the following function: Function EncryptPassword(strPass As String) As String EncryptPassword = Shell("java -jar C:\InProcess\STSPasswords\registry-password.jar " & strPass) End Function When I run the jar file in a command prompt if returns a long string but the value retrieved by...
  18. evaleah

    column names query

    Does anyone know of a way to select just the column names from a query? Thanks, Eva
  19. evaleah

    Nomination/Voting software

    I want to be able to add nomination and voting functionality to our site. Before I start re-inventing the wheel I was wondering if anyone has seen a package that does this. I am finding a lot of polling software packages but they don't allow the public users to add an item to the poll. I want...
  20. evaleah

    iCalendar email causing meeting duplication

    I have implemented code to send an iCalendar formatted email from the web. My users want to be able to send multiple invitations to the same attendees for the same event over an extended period. Basically, they want to send out the initial invitation and then reminders. The issue I am running...

Part and Inventory Search

Back
Top