Edit box length size problem...at Detail Section.

hi.
Plz have a look on below image.
This is my problem.
in details section i put one edit box... like below..
the data is comming from data base..
Header 1
but the size of the filed is more than the size of the Edit box..
i all ready checked  can grow option in format field common properties.
but horizontal line is not adjusting ....
what should i do...

Hi Srini,
You can't place another object directly below an object that 'grows'.
Create another section and move the line to this new section.
-Abhilash

Similar Messages

  • How do I add text boxes that people can edit font type, size, and color in Adobe Reader

    How do I add text boxes that people can edit font type, size, and color in Adobe Reader? I am using Acrobat Pro XI.

    It is possible. Add your text fields and in their Properties set them to have Rich Text Contents (under Options). This will allow the users to specify all kinds of formatting settings for those fields (by pressing Ctrl+E and using the Properties bar).

  • Problem with giving an edit box focus in sbo2005

    Hi
    I have created a form in sbo2005 with screen painter.
    I ideally want one of the edit boxes to have focus, ie have the cursor in that box. I have included a command -
    oform.Items("1").Click ct_Regular
    But this doesn't seem to work. The cursor flashes briefly and then disappears.
    Can anyone suggest anything please ?
    Regards Andy

    Hi,
    In SBO 2005, you can set the tab-order of the items, the item with the lowest tab order should get the initial focus.
    regards
    Ad

  • Problems underlaying multiple detail sections

    I'm having difficulty with Crystal XI - report has multiple detail sections, I would like to underlay them so they appear on top of each other, but I just can't get it to work.

    Your explanation isn't detailed enough to allow someone to help. I'd suggest two courses of action:
    1) Run the data and form through Central with tracing turned on. This will provide you with detailed information on what is happening when and why. You should be able to see what's triggering the subforms.
    2) Post another note, this time with an example of your data and a more detailed explanation of your result (e.g. I have 3 details and 3 totals and they're coming out in the following order D1,D2,D3,T1,T2,T3 instead of D1, T1, D2, T2, D3, T3) and I'll try to help.
    Rob McDougall
    Indigo Pacific Ltd.

  • Remove Multi columns in Detail Section

    I'm converting reports from Crystal 8.5 to Crystal 2008.  My old report has a detail section with multiple columns, and I want to remove this formatting.  The check box in the section format window is grey and can't be changed.  What is the magic combination to get the detail section back to no columns?

    I'm struggling with the same problem, only I'm currently working with a report in version 8.5.  The report was originally designed years ago using the Label wizard, but now the client wants to change it to a regular report. 
    I decided to "peek under the hood" and this is what I found:
    The Crystal Report Object has a property "Kind" which will have a value corresponding to the application constant CRReportKind.  The possible values are these: 1 (crColumnarReport), 2 (crLabelReport), or 3 (crMulColumnReport).  Versions 8.5 and 10 are the same.  I'm thinking that this property is what's preventing us from getting to that grayed-out checkbox.  However, it is a read-only property, meaning, obviously, that you can't change it. 
    The report I'm working with is a 2 (crLabelReport).  This is the VB6 code I used to find that:
    Dim reportname As String
    Dim oApp As CRAXDRT.Application
    Dim oKind As CRAXDRT.CRReportKind
    Dim oRpt As CRAXDRT.Report
    Dim oSection As CRAXDRT.Section
    Set oApp = CreateObject("CrystalRuntime.Application")
    reportname = "(put the complete path and filename of the report here)"
    Set oRpt = oApp.OpenReport(reportname, 1)
    Debug.Print oRpt.Kind
    Set oRpt = Nothing
    Set oApp = Nothing
    It doesn't look promising.  You will probably have to redo the report, or, it may be possible to recreate the report in VB only setting the Kind property to 1.  If someone else can verify that this is doable, it may be the best solution.
    Edited by: marykDBA on Jun 4, 2010 10:59 PM
    Edited by: marykDBA on Jun 4, 2010 11:01 PM

  • Is it possible to disable the 'edit layout' link on the record detail page

    Is it possible to disable the 'edit layout' link on the record detail page? Not the homepages, I know there is a switch for that, but I thought there was one for the detail pages?
    I want to disable this as I dont want users saving their own layouts, they must stick to the related sections defined in the default layout. The problem is that if they are to have access to certain related lists when an opportunity is of a certain type but NOT other types. If they have saved the layout (using the 'Edit Layout' link), and change the record type, they will see related sections that have been set to 'Not available' in the default layout (ie step 4) for that 'type'.

    Robbo, at this time it not possible to disable the Edit Layout on the record detail page.

  • Blob dictates duplicate items in details section-based on supression

    I was orginally having issues with my supression on this.  I think I have it figured out. But..
    I have parts that I request that sometimes have drawing with them.  I created a table in Access with 3 columns - number, .bitmap., nameof drawing
    I brought this table in.  I place 1 drawing in the reports and this changes based upon the Paramter{drawing.id} that I have beeing selected.  The problem is that  I get duplicate fields produced in my details section.  Now the blob sits in my report footer C.  Can anyone suggest why or help with why my data is duplicating in my details section?
    all items in my details section are duplicating
    here is my sql if it helps:
    max40385
    SELECT "PR"."PRNUM", "COMPANIES"."NAME",
    "COMPANIES"."ADDRESS1", "COMPANIES"."ADDRESS2",
    "COMPANIES"."ADDRESS3", "COMPANIES"."ADDRESS4",
    "COMPANIES"."PHONE", "COMPANIES"."FAX", "PR"."SHIPTOATTN",
    "COMPANIES_1"."NAME", "COMPANIES_1"."ADDRESS1",
    "COMPANIES_1"."ADDRESS2", "COMPANIES_1"."ADDRESS3",
    "COMPANIES_1"."ADDRESS4", "PR"."ISSUEDATE", "PR"."CONTACT",
    "PR"."REQUIREDDATE", "PRLINE"."ITEMNUM", "PRLINE"."ORDERUNIT",
    "PRLINE"."ORDERQTY", "PRLINE"."DESCRIPTION",
    "PRLINE"."UNITCOST", "PRLINE"."LINECOST",
    "PRLINE"."PONUM", "LONGDESCRIPTION"."LDTEXT"
    FROM   "MAXIMO"."PR" "PR", "MAXIMO"."COMPANIES" "COMPANIES",
    "MAXIMO"."COMPANIES" "COMPANIES_1", "MAXIMO"."PRLINE"
    "PRLINE", "MAXIMO"."LONGDESCRIPTION" "LONGDESCRIPTION"
    WHERE  ("PR"."VENDOR"="COMPANIES"."COMPANY") AND ("PR"."SHIPTO"="COMPANIES_1"."COMPANY") AND ("PR"."PRNUM"="PRLINE"."PRNUM") AND ("PRLINE"."LDKEY"="LONGDESCRIPTION"."LDKEY" ) AND "PR"."PRNUM"='25334'
    C:\Documents and Settings\kpowell\My Documents\Drawings.mdb
    SELECT `Parts_Drawings`.`ID`
    FROM   `Parts Drawings` `Parts_Drawings`
    Edit here-
    Ok - I have 3 parameters
    1- sets pr field ={?pr.num}
    2.- mandatory answer determines a supress on fields(blob, and section blob is in) - supress statment is   - {?yes/no}=no  - for both areas
    the parameter is {?yes/no}
    3. sets up the blob to put into the document base upon a field in the table
    that I made in access (based upon column 1 in acces table) - user makese selection based upon yes or no above if no then just leave it as  ......
    The wired thing is when I have multiple line items in my Pr (purchase request)
    if I included a drawing there are no duplicate details
    If I dont include the blob (meaning I supress it based upon the answer in  my parameter - all items in the details section duplicate  ( i suppress these if duplicated but it leaves huge gaps in my report.... any help would be great!
    Ok i figured it out. In my access table i created the 1st entry and left the bitmap entry empty and put a descrition of not needed. I selected this  as my drawing in my 3rd parameter and it satifies the report as thinking it has  a drawing in it even though there is not.  So all my duplicate line item in my details section disappear.  thanks all
    Edited by: max274 on Mar 27, 2009 4:21 PM
    Edited by: max274 on Mar 27, 2009 4:29 PM
    Edited by: max274 on Mar 27, 2009 6:29 PM

    I found the answer see my previous post in this.

  • CRVS2010 beta -  date field not display in details section

    I use Visual stdio 2010 so i install crystal report 2010 for report.
    It work fine .
    but in report detail section there is date field then it will not be display.
    alos if we do group on date field it will give error when we try to open report.
    Plese geve me possible soluction for date field problem.
    Edited by: hitesh_tatva1 on Jun 22, 2010 11:35 AM
    Edited by: Don Williams on Jun 22, 2010 7:20 AM

    Solution Found
    Don't install sp2it sucksclassic case of the cure being worse than the disease.
    Downloading and installing the SP3 redisist fixed the issue.
    This link is probably appropriate:
    https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/bobj_download/main.htm
    Software Product->select Crystal Reports
    Version->select Crystal Reports 2008
    important part
    Software Type->Utility Click Search Download the redist install.
    Not very intuitive, but you'll need to do this so you download the runtime and not the full version.
    Hope that saves you the 5 hours it took me to figure this darn thing out...I hate unintuitive products--they aren't very professional.
    +
    SAP, where do I send the bill for supporting your own product?
    I too have the same problem. Hopefully we can get a solution to this soon as the delayed release of the 2010 runtime has us in a difficult place.
    The problem: I upgraded my project to Visual Studio 2010; therefore, I upgraded to the Crystal Reports for Studio 2010 beta.
    Everything worked fine until I modified the app.config so that I could deploy the application into our test environment. We do not have Visual Studio installed in this environment, so we needed to have a Crystal Reports Runtime. According to the SAP website deployment guide, currently the only way to deploy a 2010 app is to use the 2008 runtime by modifying the app.config file to redirect the bindings.
    __Now, none of my date fields appear on the reports.__
    Just to test, in my development environment, I commented out the redirects in the app.config and the dates appeared. I uncommented the redirects so that the 2008 runtime would be used and then my dates disappeared from the report.
    Here is the entry I put into the app.config:
    <runtime>
        <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
          <dependentAssembly>
            <assemblyIdentity name="CrystalDecisions.CrystalReports.Engine" publicKeyToken="692fbea5521e1304" />
            <bindingRedirect oldVersion="14.0.2000.0" newVersion="12.0.2000.0"/>
          </dependentAssembly>
          <dependentAssembly>
            <assemblyIdentity name="CrystalDecisions.Shared" publicKeyToken="692fbea5521e1304" />
            <bindingRedirect oldVersion="14.0.2000.0" newVersion="12.0.2000.0"/>
          </dependentAssembly>
          <dependentAssembly>
            <assemblyIdentity name="CrystalDecisions.ReportSource" publicKeyToken="692fbea5521e1304" />
            <bindingRedirect oldVersion="14.0.2000.0" newVersion="12.0.2000.0"/>
          </dependentAssembly>
          <dependentAssembly>
            <assemblyIdentity name="CrystalDecisions.Windows.Forms" publicKeyToken="692fbea5521e1304" />
            <bindingRedirect oldVersion="14.0.2000.0" newVersion="12.0.2000.0"/>
          </dependentAssembly>
          <dependentAssembly>
            <assemblyIdentity name="CrystalDecisions.Enterprise.Framework" publicKeyToken="692fbea5521e1304" />
            <bindingRedirect oldVersion="14.0.2000.0" newVersion="12.0.1100.0"/>
          </dependentAssembly>
          <dependentAssembly>
            <assemblyIdentity name="CrystalDecisions.Enterprise.InfoStore" publicKeyToken="692fbea5521e1304" />
            <bindingRedirect oldVersion="14.0.2000.0" newVersion="12.0.1100.0"/>
          </dependentAssembly>
        </assemblyBinding>
      </runtime>
    Your help is much appreciated.
    Thanks,
    Michael
    Edited by: SaganDraxan on Jul 16, 2010 8:23 PM

  • Detail section in Report Viewer Control rendered bad in IE 6/7 ???

    Hi,
    independent of checking the "no printer" option or select the same printer in Visual Studio Report Designer as on the deployment server the details section of Crystal Report Viewer Control is not rendered correctly in IE 6/7!!!
    But looks fine in Firefox ?!?
    Any ideas?
    Thanks, M.
    Edited by: Markus Schfer on Aug 19, 2008 9:24 AM

    First: i have to excuse me, `cause all sections (header,detail and pagefoot) are rendered strange. It seems that all data is crimped into one column on the left side?!?
    I expected something like this:
    Name     LastName     Birthday       City
    Value Value Value Value
    etc.
    But I get from IE 6/7:
    Name    
    LastName    
    Birthday      
    City
    Value    
    Value           
    Value          
    Value
    Do you better understand my problem now ????
    I hope so
    Thanks a lot!
    M.

  • Detail Section:Printing subtotals of group of data by row w/ no subreports

    CR Xi
    Tables: Opportunity (fields Opportunity.OpportunityID)
                Opportunity_Job
                Selection (fields Type, Quantity, Rate and Extension)
    A) Opportunity:Opportunity_Job are 1:1; Opportunity.Job:Selection are 1:Many (Hence a change in OpportunityID changes the focus to another set of Selection table entries associated with the OpportunityID.)
    B) I have setup a Left Outer Join from the Selection table to the Opportunity table via OpportunityID for a Link Type of "=" (I eliminate the Opportunity_Job table for the purposes of the report)
    C) This is a report without any subreports
    D) Details section of CR
    I have a table (Selection) that  has several fields.  The Selection table contains all the entries for a job that deals with labor, material, equipment etc.
    I'd like to subtotal all the entries in the Selection table by Job.
    Here are the fields I have that are of interest:
    Type (Labor, Material, etc.)
    Extension
    For example, data could look like this
    Type     Extension
    Labor     100.00
    Labor     140.00
    Material    50.00
    Material      7.00
    Labor       10.00
    My RT_TotalLabor field should then provide 250.00 and the RT_Material field should provide 57.00
    If have setup a parameter field (@TotalLabor) and a RunningTotals field (RT_TotalLabor)
    The conditional logic for @TotalLabor is "IF trim({Selection.Type})="Labor" then {Selection.Extension} else 0".  I've also tried "IF trim({Selection.Type})="Labor" then SUM({Selection.Extension}) else 0".    The RT_TotalLabor is setup to summarize on @TotalLabor via SUM and to evaluate on Opportunity.OpportunityID and reset on change of field of Opportunity.OpportunityID.
    I'm not getting the proper selection of data.
    How do I select the Labor only for the TotalLabor parameter field and get the correct RT_TotalLabor?  I will also need to have a field, @TotalMaterial, with a RT_TotalMaterial to SUM the materials related to the Job.  Additoinally, these fields will be subtotalled and gross totalled but I should be able to handle that once the totals by Opportunity is done.
    TIA
    Edited by: total1 on Aug 8, 2011 9:58 PM

    Ok...I know what I want to say but I'm not sure I'm saying what I want to say! 
    My bad on using the term parameters rather than formula.  ;-(
    Making progess, thanks to you for your help!
    Subreport: (I have only one)
    Here's the @TotalLabor from the Formula Editor: if trim({Table1.TYPE})="Labor" then {Table1.EXTENSION} else 0.
    Same for @TotalMaterial from the Formula Editor: if trim({Table1.TYPE})="Material" then {Table1.EXTENSION} else 0
    Both of these are in the Footer section as I'm still attempting to solve the issue of getting a total of my SET of records for Labor and Material (as well as others once I solve the totalling issues).
    Relating to your comments on the Insert Summary dialog box, I can't figure out how to add a Formula field like @TotalLabor etc so as to make it available to the Insert Summary dialog box.  How do I?
    I have another report, which I didn't write, that utilizes the Insert Summary dialog box in its subreport footer (only one footer) with a {Sum of TotalLabor}(Text Box) and another that has {Sum of TotalMaterial}(number).  I don't understand these!  I can see the respective fields (@TotalLabor) in this subreport's Edit Summary dialog box but I can see the @TotalHours in my Insert Summary dialog box!
    These formulas for the working report are: if {Table1.TYPE} = "Labor" //and {Table1.PRINT} = "T"
    then
        {Table1.EXTENSION}
    else
        0
    and
    if {Table1.TYPE} = "Material" //and {Table1.PRINT} = "T"
    then
    {Table1.EXTENSION}
    else
    0
    So, they are the same.  I just can't get my subtotals to work on a SINGLE row..maybe because I can't see or get them into the Insert Summary dialog box like the subreport that is working on a single row also.
    Maybe another comment: My totals appear to work in a line-by-line (row-by-row) on the report printout but I don't get the subtotals on the SAME line.
    Here's what I see on an output:
    Labor    800.00
    Material 200.00
    (two lines)
    I'd like to see
                    Labor= 800.00     Material= 200.00
    (single line and I've added the text also)  When I try the running totals on the same field (Table1.Extension) I get the SAME value for all my entries even though I've setup a separate running total field and use a conditional check for "Labor", "Material" etc.
    HTH

  • Maximum characters allowed in Edit Box, how to set?

    I have an Edit Box in a screen designed using screen painter.
    I want to restrict the user not to type more than 20 characters.
    Is there any properties available in the Edit Box, like set max length = 20 ?
    BTW i am using 2004.2B

    Hi Sankar,
                     I am assuming ur scenario .it might be right or wrong.
                   U have designed the screen using screen painter  and   kept one editbox right?
                 are u bounded that editbox to databound property to true. and given the table name and alias name (column name) .
                  I think ur database <b>bounded column size is 20</b> .  Please check with the size of column , which is <b>bounded with ur editbox</b>.
       Hope it helps
    Regards
    V.Rangarajan

  • How to change the high of detail section?

    <p>I&#39;m creating a report for a invoice:</p><p>It header section is the customer information, and  detail contain all about products..</p><p>My problem is with the High of the detail section, because it is so much high, and i need to put more information in the footer section but it apear near to end of paper!</p><p> </p>

    Can you maybe give a bit more information about the problem?  It sounds like you have many detail sections that are repeating and this is pushing your group footer to the end of the page.... Is this as simple as needing a longer page size?

  • The edit box in the Twitter Compose New Tweet box sticks off the right.

    The edit box in the Twitter Compose New Tweet box sticks off the right
    https://pbs.twimg.com/media/BNHnQSICEAAHz_H.png:large
    I am aware I am not using the latest version of Firefox. Bases on what I've read I'm not going to like the changes in the latest version and do not want to change versions until absolutely forced too.
    This problem occurs in safe mode, and with multiple profiles.
    I have seen some reports from other people saying they have the same problem.

    If you have made changes to Advanced font settings like increasing the minimum font size then try the default setting "none" in case the current setting is causing problems.
    *Tools > Options > Content : Fonts & Colors > Advanced > Minimum Font Size (none)
    Make sure that you allow websites to choose their fonts.
    *Tools > Options > Content : Fonts & Colors > Advanced: [X] "Allow pages to choose their own fonts, instead of my selections above"
    It is better not to increase the minimum font size, but to use an extension to set the default page zoom to prevent issues with text not being displayed properly.

  • Details section extends to a whole page when multipage field is printed

    Crystal Reports designer in VS 2005 Prof.  C#
    I have a field which sometimes is large, so it is printed on several pages.
    When a field is small, ie. starts and finishes on the same page, then all is OK. I mean, that Details vertical lines and field borders are closed as soon as the last field is fully printed. Report Footer is propely printed after the last Details row.
    But when a field occupies several pages then, on the last page, the Details section is not closed after the last row but extends to a whole page.
    So, as a result of this behavior, the Report Footer is printed over the Detail's vertical lines. This is my problem.
    I tried the following:
    1. Change setting Keep Object Together - does not help.
    2. Inserting an extra Group Section - Group Footer was printed over on Details body - overlapped.
    To show this problem here are 2 pictures. Please pay attention to the column "Odcinki".
    [The view with a small field|http://www.zgadzaj.pl/temp/KIM_Dobry.jpg]
    [The view with Details expanded to a whole page|http://www.zgadzaj.pl/temp/KIM_Usterka.jpg]
    Marek

    Hi Trevor and Ludek,
    At last success -  I found the workaround!
    Before my give up, during the downloading time of the PerpetuumSoftware report generator, I tested the last idea which comes from [Joe's help posted in this thread|http://social.msdn.microsoft.com/Forums/en-US/vscrystalreports/thread/77b28835-12aa-4592-bcc8-c2b8dbf49317].
    I removed all vertical lines from the Detail section and the box surrounding the Detail's section row.
    I inserted a new group section which works exactly as the Detail section, so it changes along with Detail section.
    I put the vertical lines starting from the GroupHeader section and expanded it across the Detail section to the middle height somewhere inside the GroupFooter. And now I set the line's bottom = 0. It means that it ends exactly at the top of GroupFooter section.
    Next, I set the height's of GroupHeader and GroupFooter sections = 0.
    The import things are:
    - vertical lines (box'es) cannot start in the PageHeader, they must start at top of GroupHeader
    - vertical lines (box'es) cannot end in the Detail section, they must end at top of GroupFooter
    And now, it works as I expected. Here is the [PDF example|http://www.zgadzaj.pl/temp/KIM_OK.pdf].
    Thanks to your advices and support I was able to investigate this problem,
    so thank you again for the help.
    Regards,
    Marek

  • Stoping a keystroke entered in a edit box.

    I am wondering how you do this...let me explain in more detail what i am looking to do.
    What i want: A Edit box that when the user hits the {RETURN} key it will execute a Button, but when the user hits a {CTRL}+{RETURN} it will actually add a Carriage Return to box.
    What i have: I have what i want except when the user hits the return key it still adds the carriage return in the box before excuting the button. How do i stop this?
    I have the same problem with the {tab} key. I want tab to just leave the but but a {CTRL}+{TAB} to add a tab to the box. Thanks in advance.

    I have read up on KeyListener....but i still cannot figure out how to over ride the default action of entering the carriage return...any specifics on this would be nice.

Maybe you are looking for

  • DirectAccess and Clustered Shares

    Hi all! I am seeing an issue with our Windows 8.1 DirectAccess clients that is confounding me. We deployed DirectAccess with Server 2012 R2 with the primary purpose of allowing our users access to several file shares on our internal network. One of t

  • Adobe PDF Converter stops creating PDFs after several successful prints.

    We have an application that create reports that we want to print to PDF and save on our server.  We have been doing this for years.  Have 50 employees doing this.  One computer is having an issue were they will print to the "PDF Printer" and the pdf

  • Default entry of Tax code V0 in the PO.

    Can anybody help me in resolving the issue of bringng the tax code V0 as a default entry in the PO on Invoice tab. At this moment users are asked to enter the tax code manually. We want to avoid tht. We are not maintaining Info records manually. It g

  • URLPortlet with dynamic HTML pagenames

    I'm apologize for the long message. We've built the set of portlets (>10) using provider.xml and URLPortlet. With this we have succeed to load fixed name files from the application server. Those portlets are shown on PageA, PageB and so. All those pa

  • TS3367 How can I change my FaceTime # in settings???

    How can I change my FaceTime # in settings???