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

    How to avoid CR viewer in asp.net from requesting log on?

    Thanks for the tip Cathy. I solved it with this property in my CR object. CRViewer.EnableDatabaseLogonPrompt = false; Leslie
  2. ldejesuspr

    How to avoid CR viewer in asp.net from requesting log on?

    Hello I have an asp.net app upgraded from vs05 - vs08 that has reports using the cr report viewer. When I run a report it displays data fine. When I click on an option of the tool bar like next page or export it presents the log on page. This is happening in development running inside vs08. It...
  3. ldejesuspr

    CR error the group section cannot be printed because its condition ..

    Hello I have inherited a CR report and when running i get error: "the group section cannot be printed because its condition field is nonexistent or invalid. Format the section to choose another condition field." Is there a way for me to know what field is it refering to? Any pointers on when...
  4. ldejesuspr

    how to add new field to report in visual studio

    Yes version 2008. Where do I see datasource?
  5. ldejesuspr

    how to add new field to report in visual studio

    Hello I have inherited a visual studio solution that contains few reports rdlc. I want to change one of the fields but can't find where the data source is. If I select data - show data sources it appears empty. The reports they run ok if I run the solution. What am I missing? thanks for the...
  6. ldejesuspr

    Format a string

    Thanks SiriusBlackOp. Exactly what I needed. ldj
  7. ldejesuspr

    Format a string

    Hello, I would like to format a string in a floating point format type. Like 999.99 For instance, if the string is: 1 = 1.00 1.0 = 1.00 1.1 = 1.10 Could someone teach me how to accomplish this? thanks in advance
  8. ldejesuspr

    Change BackgroundImage based on image on disk

    Rick, I tried it and it worked perfectly! thanks a lot for the easy to implement tip
  9. ldejesuspr

    Change BackgroundImage based on image on disk

    Thanks Rick. How do I access the constructor of the form? Would this have any effect on code in the form load? thanks ldj
  10. ldejesuspr

    Change BackgroundImage based on image on disk

    Hello I have a .exe with forms with a BackgroundImage defined in the properties of the form. I would like to change the background image without having to recompile. I thought that by just replacing the image in disk with another as long i would use the same name it would be ok but it does...
  11. ldejesuspr

    Assigning ascii values to a byte in vb.net

    I am creating a message of type Byte that I will send via the serial port. Each value should be in ascii. I am declaring such as: Dim bufStx() As Byte = {2} Here I want to assign the value of a STX (Start of text) to the byte. Will this declaration assign the value of a STX or the number...
  12. ldejesuspr

    suppress page if condition met

    I have a report with two groups: 1. employee Num 2. product id The report prints a page per employee. I need to print only if the employee had sales between a range. The range is entered in two paramenter variables. The employee sales total is a running total in the footer of employee num...
  13. ldejesuspr

    Suppress Page header and print PF only in last page

    I am interested in printing the PH only in the first page and the PF only in the last. How can I do this? Thanks Les
  14. ldejesuspr

    supress page with group result

    Yes I did. This is how i prevent text objects from displaying in the page but the page still appears in blank Leslie
  15. ldejesuspr

    supress page with group result

    I have a report composed of two groups. One group footer appears in one page and the second in another. Sometimes there is no data for the second group. When there is no data for the second group I dont want a page to print, I conditioned all the fields and they do not appear but still I get...
  16. ldejesuspr

    problem with redirect from .com to .net

    I have a domain "www.mysite.net". We are paying for the URL "www.mysite.com" to be redirected to ".net". My main page is index.php. When I click on the links the pages change but not the URL and the app. does not works properly since it does not sends any variables, the URL stays with the...
  17. ldejesuspr

    Problem with select with compute

    Thanks to you all guys! I was able to correct my query
  18. ldejesuspr

    Problem with select with compute

    It is suppose to return the count but instead i get 400 rows with the number 1. This is the problem i am having
  19. ldejesuspr

    Avoid sum from adding suppressed fields

    I tried your suggestion. When I create the formula I get an error that the field from the running total is unknown although i selected from the list. I am not an avid user of CR, please assist me more thanks
  20. ldejesuspr

    Problem with select with compute

    I have the following statement and in the total column i expect the count of all the rows, instead it counts only itself Expertise on this will be appreciated SELECT count(UNIOGEN.numss) as total, uniogen.age, UNIOGEN.fkclasif, UNIOGEN.fkport FROM dbo.UNIOGEN where UNIOGEN.age between 26...

Part and Inventory Search

Back
Top