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 TouchToneTommy 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: taree
  • Order by date
  1. taree

    Does not contain a definition for 'rowindex'

    thank you all. I found the problem. Here is the problem ...GridView gvRows should be GridViewRow gvRows.....
  2. taree

    Does not contain a definition for 'rowindex'

    I get Does not contain a definition for 'rowindex' error.any clue will be appreciated. protected void btnConAd_Click(object sender, EventArgs e) { string valStr; foreach (GridView gvRows in gvConAd.Rows) { CheckBox chkSelect =...
  3. taree

    compare strings

    Jason thank you. I will try to apply your sample code. I am not sure how i can use in sql query that use "IN" clause.
  4. taree

    compare strings

    thank you all for the response. there is no trailing space.I already trim the trailing space. what I am trying to do is that if the user select include "ALL" from the dropdown selection then I want to return all the rows for regardless of the selected states.otherwise, I would like the rows for...
  5. taree

    compare strings

    I am trying to do a comparison like below and somehow it is not working. Is it because I am trying to compare a value assigned to a variable with the string. How can I fix that? please help. thank you If String.Compare(strStates1, "ALL", True) = -1 Then .Append(" AND R.STATE...
  6. taree

    Export gridview to pdf

    Take a look at this webiste link: http://www.highoncoding.com/Articles/483_Exporting_GridView_to_PDF_Document.aspx
  7. taree

    select multiple values from list control

    I am trying to select a value from the list control. If the user select "ALL" I would like to pass the value to my sql statement. if the user select more than one value, I would like to separte the values in comma and pass to the query. I have the code below and my problem is it is not passing...
  8. taree

    passing parameter value form aspx page to vb.net code (App_code) folde

    thank you jbenson001 for the reply. I did like you suggested and I got this error: Argument not specified for parameter 'stContract' of 'Public Shared Function GetLetProp(stContract As String) As System.Data.DataSet'. [code] Imports Microsoft.VisualBasic Imports Oracle.DataAccess.Client Imports...
  9. taree

    passing parameter value form aspx page to vb.net code (App_code) folde

    I have a vb.net code with one class "letprop" in the APP_code folder. I am wondering if I could pass a value from the aspx page to the letprop class. <%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default3.aspx.vb" Inherits="Default3" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0...
  10. taree

    Adding values

    thank you. that is very helpful
  11. taree

    Adding values

    I get an error is not null supported. can someone help (if {U_order.order_status}='denied' AND {U_order.DATE_stored_RELEASED} is NOT NULL ) then 1 else 0
  12. taree

    How to change color every other two rows

    got it thank you all. if remainder(recordnumber,4)=1 or remainder(recordnumber,4)=2 then color(225,255,255) else nocolor
  13. taree

    How to change color every other two rows

    I use this script to change the color of the record when the record number is an odd number. However, the customer wants for the color to be changed every other two rows no matter what the row number is. I am not sure how this can be done.also, ask if it is only one row in the end then to move...
  14. taree

    Text Cut off

    thank you all. After I recreated the reprot everything seems to work fine.
  15. taree

    Text Cut off

    oracle and Crystal XI
  16. taree

    Encryption Web.config file

    I get this error when I add <configProtectedData> <providers> <add useMachineProtection="false" keyEntropy="" name="MyUserDataProtectionConfigurationProvider" type="System.Configuration.DpapiProtectedConfigurationProvider, System.Configuration, Version=2.0.0.0, Culture=neutral...
  17. taree

    Text Cut off

    I checked can grow and still cutting off the text. any idea why. I even see that even there is enough room to show the entire text and still cut some off.
  18. taree

    Text Cut off

    In my report the text is cut off and I am not sure why it is cut off. is there place that I got to change the setting?
  19. taree

    Encryption Web.config file

    Ok! I am getting there :) for example if I include this in config file then It should work without any issue then. <configProtectedData> <providers> <add useMachineProtection="false" keyEntropy="" name="MyUserDataProtectionConfigurationProvider"...
  20. taree

    Encryption Web.config file

    thank you Mark again. Please bear with me as I am trying to figure this out. should not I need to know the machine key to include that in my web.cfg file. Is so how can I find out the machine key?

Part and Inventory Search

Back
Top