Exact column (row) size with GridBagLayout??

Hello there,
I have a question regarding GridBagLayout and EXACT (relative) dimensions
of columns and rows. Have you ever had (and solved) this problem? Thank you
for help!!
My situations: let's say I'd like to have two buttons, the first should fill
up 1/4 of the horizontal space and the second should fill up the remaining
3/4 of the space. But I'd like them to fill up the space EXACTLY (if there
is enough space of course, I'm not speaking about horizontal space 10
pixels...). I tried to achieve this by the following code:
GridBagLayout grid = new GridBagLayout();
getContentPane().setLayout(grid);
GridBagConstraints c = new GridBagConstraints();
// button1
JButton b1 = new JButton("A");
c.gridx = 0; c.gridy = 0;
c.gridwidth = 1; c.gridheight = 1;
c.weightx = 1.0; c.weighty = 1.0; // <--- weigthx is 1.0 the other
button will have 3.0
c.fill = GridBagConstraints.BOTH;
c.ipadx = 0; c.ipady = 0;
c.insets = new Insets(0,0,0,0);
grid.setConstraints(b1, c);
getContentPane().add(b1);
// button2
JButton b2 = new JButton("B");
c.gridx = 1; c.gridy = 0;
c.gridwidth = 1; c.gridheight = 1;
c.weightx = 3.0; c.weighty = 1.0; // <--- weigthx is 3.0 the first has
1.0
c.fill = GridBagConstraints.BOTH;
c.ipadx = 0; c.ipady = 0;
c.insets = new Insets(0,0,0,0);
grid.setConstraints(b2, c);
getContentPane().add(b2);
This really lays out the buttons in fashiion 1:3 but not exactly, there
always about 10-15 pixels that are extra...
I tried to have the weigthx in range <0, 1> so, the button b1 has weigthx =
0.25 and the second one has weigth = 0.75. But it does not work either...
Can you help me please?
David
ps. Why do I need this exact layout? Because I have 3 tabs (JTabbedPane) and
all of them display components with this 1:3 layout. But when I click on
different tabs I can see that the boundary betweeen the two components
"jumps" slightly from tab to tab which drives me crazy because things like
this should not be part of program that wants to look "professionally-done".

Ok, but I don't know the dimensions... I wanted the Layout manager to do the job. I was wondering, maybe I didn't set something else. But thank you!!
ps. how come that the layout manager displays the layout almost perfectly? the ratio is almost 1:3 but not exactly.

Similar Messages

  • How can I add the number of columns/row starting with the build in "Text Report" example in the LabVIEW

    Hi All,
    I am wondering how can I add the numbers of row and column from the existing build-in "text report"
    VI ? If possible, would you mind showing me step-by-step because I am a new user and I am not familiar with the labview software.
    Thanks

    Hi,
    Easy text Report is for saving to a file. Do you mean you just want to add the totals of two arrays and write that? In that case I would just append the totals before writing to file.
    Jeff | LabVIEW Software Engineer

  • Table headings and column/row sizes

    I have mapped my FM table format to a table style defined in my CSS. However, I have the following issues with the resulting RoboHelp tables:
    I have a header row in the FrameMaker table, but the header doesn't come over into RH. All of the table rows are <td> instead of <th>. Therefore, the shading defined in my CSS for the table header row does not appear.
    A bunch of inline formatting that I don't want is coming over, defining the table width and the row width and height. Here's an example:
    <table class="formatA" cellspacing="0" width="600">
        <tr style="height: 18.00pt;">
            <td style="vertical-align: top; padding-left: 6.00pt; padding-top: 3.00pt;
                 padding-right: 6.00pt; padding-bottom: 3.00pt;" width="198"><p>Report/Visualization</p></td>
            <td style="vertical-align: top; padding-left: 6.00pt; padding-top: 3.00pt;
                 padding-right: 6.00pt; padding-bottom: 3.00pt;" width="402"><p>Description</p></td>
        </tr>
    Is there any way to get RH to recognize table header rows?
    Also, is there any way to prevent the size information from coming over? What I'd like is for the table width to be 100% and the cell widths and heights to be determined by their content (which would happen automatically if the inline formatting weren't added).
    If there isn't a way to accomplish this, then I'd probably be better off not trying to map the table styles and just going with "Source". The sizes would still be fixed, but at least the shading would appear.

    Forget FM for a moment. I think that if you create a table in RoboHelp using TH you will find  RoboHelp simply does not understand TH.
    The more people who report a bug or request a feature, the more likely it is to be actioned. Please follow this link.
    http://www.Adobe.com/cfusion/mmform/index.cfm?name=wishform&product=38
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Report painter - eliminate zero columns/rows

    Dear Experts,
    Can anyone tell me how to hide (or) remove the columns and rows contains zero values, in a report which is developed by report painter.
    Thanks
    Balu
    Edited by: balu 18 on Feb 20, 2010 11:05 AM

    Hi
    It is available to control the display treatment for column/row item with zero amount by Standard Layout.
    1. From report
    If you change this behavior online during checking report such as cost center report: S_ALR_87013611, go to menu -> Settings -> Report Layout.
    You can hide/unhide the column/rows with zero value in Tab Rows and Columns.
    2. Default setting for report execution
    As described above, this setting comes from Standard Layout.
    You can change it by transaction code GR12.
    Best regards, Takashi

  • Reordering of rows - issue with drag and drop of editable columns in table

    JDeveloper: 11.1.1.6.0
    ADF Faces - Drag and Drop for reordering of rows within the same af:table
    I have a requirement for reordering rows in a table using drag and drop. This table is loaded using a list and I am able to programmatically do the reordering of the rows based on the events of drag and drop by manipulating the list. Reordering of rows is working fine if all the columns are read only. For all the input text and input date columns the values are not getting reordered. Anyone has any idea on what the issue may be with reordering of the rows for editable columns/rows (af:inputText and af:inputDate) in af:table. Below is what Iam doing on drop event which is a collection drop target.
    public DnDAction dropCollection(DropEvent dropEvent) {
    try
    Object dropSite = dropEvent.getDropSite();
    Transferable transferable = dropEvent.getTransferable();
    DataFlavor<RowKeySet> rowKeySetFlavor = DataFlavor.getDataFlavor(RowKeySet.class, "rowmove");
    RowKeySet rowKeySet = transferable.getData(rowKeySetFlavor);
    RichTable table = (RichTable) dropEvent.getDragComponent();
    if (rowKeySet != null)
    CollectionModel dragModel = transferable.getData(CollectionModel.class);
    Object dragM = dragModel.getRowData(0);
    Object currKey = rowKeySet.iterator().next();
    dragModel.setRowKey(currKey);
    table.setRowKey(currKey);
    OrderData orderData = (OrderData)this.prodReportTableData.get(Integer.parseInt(currKey.toString()));
    this.prodReportTableData.remove(Integer.parseInt(currKey.toString()));
    this.prodReportTableData.add(Integer.parseInt(dropSite.toString()), orderData);
    OrderData orderDataAdded = this.prodReportTableData.get(Integer.parseInt(dropSite.toString()));
    JSFUtils.addPartialTarget(this.getProdReportTableBinding());
    catch(Exception e)
    e.printStackTrace();
    return DnDAction.MOVE;
    Code snippet from UI:
    <af:table value="#{pageFlowScope.prodReportBackingBean.prodReportTableData}"
    var="row" styleClass="AFStretchWidth" rowBandingInterval="0"
    rows="40" emptyText="No data to display." id="t1"
    partialTriggers=":::cb1" columnStretching="column:c3"
    binding="#{pageFlowScope.prodReportBackingBean.prodReportTableBinding}" summary="PROD TABLE">
    <af:dragSource actions="MOVE" defaultAction="MOVE"
    discriminant="rowmove"
    dragDropEndListener="#{pageFlowScope.prodReportBackingBean.afterDragAndDrop}"/>
    <af:collectionDropTarget dropListener="#{pageFlowScope.prodReportBackingBean.dropCollection}"
    actions="MOVE"
    modelName="rowmove"/>

    Hi,
    not sure its the reason but you have huge bummer in your configuration.
    <af:table value="#{pageFlowScope.prodReportBackingBean.prodReportTableData}"
    var="row" styleClass="AFStretchWidth" rowBandingInterval="0"
    rows="40" emptyText="No data to display." id="t1"
    partialTriggers=":::cb1" columnStretching="column:c3"
    *binding="#{pageFlowScope.prodReportBackingBean.prodReportTableBinding}"* summary="PROD TABLE">
    JSF component bindings should not be to beans in a scope larger than request to avoid stale component instances.
    Frank

  • Calculate row size of table with clob

    Hi
    I have a table which has clob data type, how can I calculate size of each row ?

    Mark D Powell wrote:
    What version of Oracle?
    Are you interested in the combined row size of the base table row and the Lob segment or just the row size of the base table row? Or just the lob segment size?
    Are you asking about a specific row or just the average for the entire table?
    Depending on your version of Oracle dbms_stats which calculates the avg_row_len for the base table when lob columns are present incorrectly.
    HTH -- Mark D Powell --I need row size for every record in the table, the table itself is only 1GB, can be combined size or lob size relevant to each record in a table it doesnt matter.
    v11.2
    thanks

  • Report execution error with columns,rows truncating

    One of abaper executing report in background and he selected Output device:LOCL and format type:X_65_512/2 but some columns are truncating with that properties.to overcome this can i create new page format or format type? how can i assign page format to device type and device type to output device?
    explain me soonplz
    Thanks

    Hi,
    Pls see in text format in preview mode if that is ok then you have to check your output software format.
    Anil

  • Why there is a huge difference between a row size on a disk based table and a row size in memoptimized table of SQL 2014?

    Hi All,
    I have two table with similar structure and data, one is on disk and the other is in memory. I somehow calculated the difference between a row size of on disk and in memory table and found that the row size of in memory is 700 Bytes more than the disk based
    tables.
    aa

    As others mentioned, memory optimized tables and disk based tables have different structures in SQL Server 2014.
    For memory optimized tables, the number of indexes on table also contribute to the size. You can calculate the exact size of rows and thus the table size using the formula given in the below articles
    Table and Row Size in Memory-Optimized Tables
    Estimate the Size of a Table
    Krishnakumar S

  • Sysstatistics row size

    Hi
    I'm trying to set up regular update statics. Due to some problems we had in the past, I have to first make a backup of the statistics, prior to the update, and I also want to do update statistics on backup server and transfer them to the primary server (we have a warm-standby enviroment).
    Now, I know I can use optdiag to do the backup and transfering between servers, but that requires sso_role, which I don't have.
    So, I wanted to make a table copy of sysstatistics, (named sysstatistics_backup) and system procedure, that would delete sysstatistics and insert there data from sysstatistics_backup, so I could use it either for loading old statistics or to transfer them to primary server (I can get our sso to turn on allow updates to system tables when i create the proc, but I can't make him to transfer the stats via optdiag every week).
    But the first hurdle, when i do
    select * into sysstatistics_backup from sysstatistics
    i get
    Warning: Row size (20706 bytes) could exceed row size limit, which is 1964 bytes.
    and when i compare the data in the two tables, they are not the same.
    My question : how come the rows in sysstatistics are wider than server page and can I somehow achieve the same thing for my backup table?
    Or, am I doing the whole thing wrong and there is some other way to do, what I want to do?
    Adaptive Server Enterprise/15.0.3/EBF 17770 ESD#4/P/x86_64/Enterprise Linux/ase1503/2768/64-bit/FBO/Thu Aug 26 09:54:27 2010
    2k page size
    Thanks
    Karel

    You don't have to worry about the warning.  The table does not actually contain any rows that are wider than allowed.  The warning is just saying that the table definition contains some variable-length columns that can't all be filled to their full length with data.  As a very simplified example, if the page size is 2k, you can create a table with 5 varchar(1024) columns, but you are still limited to 2k of data distributed across the 5 columns - you could have 2 at 1024 bytes, of 4 at 512, or 1 with 1024 and 4 with 205 bytes each.   (real values are somewhat smaller due to overhead on the page, but that is the general idea.).   If you try to insert more data than the row can really hold, you will get an actual error and the insert will fail and roll back.
    -bret

  • How to find row size of table

    Hi,
    How can I find row size of a table ?
    In My table has millinon's of data inserted.
    thanks in advance.

    Here is a PL/SQL procedure to calculate average row length. It works, but it has an issue because you cannot use VSIZE on BLOB data columns, and it could be re-done using dbms_lob.getlength(BLOB_COLUMN) to get an accurate average_row_length for rows with a BLOB column..
    To find the actual size of a row I did this:
    /* TABLE */
    select
    3 + avg(nvl(dbms_lob.getlength(CASE_DATA),0)+1 +
    nvl(vsize(CASE_NUMBER ),0)+1 +
    nvl(vsize(CASE_DATA_NAME),0)+1 +
    nvl(vsize(LASTMOD_TIME_T),0)+1
    ) "Total bytes per row"
    from
    arch_case_data
    where
    case_number = 301;
    Total bytes per row
    3424
    /* INDEX */
    select sum(COLUMN_LENGTH)
    from dba_ind_columns
    where TABLE_NAME = 'ARCH_CASE_DATA';
    SUM(COLUMN_LENGTH)
    22
    So, the total bytes used is 3424+22.

  • How to split a single column row  in alv report

    Hi All,
    I need to split a row of the particular coolumn in alv report.
    for example row size is 10 that should be split into 5 & 5.
    Thanks
    Ram

    Hi Ram,
    You can add one more column for that..
    while processing your internal table you can split the value for that column using offset..
    DATA :  FIELD_STR(10) TYPE C.
    VAR1 = FIELD_STR+0(5) .
    VAR2 = FIELD_STR+5(5) .
    Now you can print this both VAR1 and VAR2 in seperate column.
    Please search on SCN before posting any question..
    Hope it will solve your problem..
    Thanks & Regards
    ilesh 24x7
    ilesh Nandaniya

  • How do I locate column/row (number) selected in applescript

    I require a simple script to adjust the column widths of the current selected column only. I want to base it on a script below which I found on the internet. This script adjusts multiple column widths to the value input and adjusts the stub column to the remaining space. I would like to know how easy it is to create a script with a similar input window that adjusts the column/row selected leaving the others in tact.
    tell application "Adobe InDesign CS4"
        activate
        if class of parent of selection is not cell then
            display dialog " Do not highlight any cells " buttons " OK " default button 1 with icon caution
        else
            set monTableau to parent of parent of selection
            set NbColonnes to count columns of monTableau
            set monBlocTexte to parent text frames of selection
            set maBoiteTexte to item 1 of monBlocTexte
            set {y, x, h, l} to geometric bounds of maBoiteTexte
            set largeurBloc to (l - x)
            tell text frame preferences of maBoiteTexte
                set NumColTexte to text column count
                set largGout to text column gutter
            end tell
            display dialog "Width of columns (mm) " default answer 20
            set largeurTexte to text returned of the result
            set largcol2 to (largeurTexte as integer)
            set largcol1 to ((largeurBloc - (NumColTexte - 1) * largGout) / NumColTexte - (NbColonnes - 1) * largcol2)
            if largcol1 < 2 then
                set largcol1 to ((largeurBloc - (NumColTexte - 1) * largGout) / NumColTexte) / NbColonnes
                set largcol2 to ((largeurBloc - (NumColTexte - 1) * largGout) / NumColTexte) / NbColonnes
            end if
            set width of column (1) of monTableau to largcol1
            repeat with counter from 2 to NbColonnes
                set width of column (counter) of monTableau to largcol2
            end repeat
        end if
    end tell
    Your help will be greatly appreciated
    Thanks
    Dave Williams

    Perhaps like this:
    tell application "Microsoft Excel"
        set i to first row index of active cell
    end
    log i
    Regards,
    H

  • Uneven columns/rows

    Does anyone know how to create uneven columns/rows in a table? I'm trying to design the attached table
    When i do they all come out even.
    here is my code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    </head>
    <body>
    <table border="1">
      <tr>
        <td rowspan="2">logo</td>
        <td bgcolor="#0d4881">Weekly newsletter</td>
      </tr>
      <tr>
        <td>Wednesday, July 15</td>
      </tr>
      <tr>
        <td rowspan="2">handshake photo</td>
        <td height="70"bgcolor="#0d4881">In the News</td>
      </tr>
      <tr>
        <td rowspan="3">lkajsfkljasfsaflsafjsajljsajlkajslfjalsjflkjsalfkdj df laks fjalskdfj ;akslfd lkajsfkljasfsaflsafjsajljsajlkajslfjalsjflkjsalfkdj alskfjdalksjfdl ksaalksjdf laks fjalskdfj ;akslfd lkajsfkljasfaflsafsjsajljsajlkajslfjalsjalskfjdalk  sjfdl ksaalksjdf laks fjalskdfj ;akslfd lkajsfkljasfsaflsafjsajljsajlkajslfja  lsjflkjsalfkdj alskfjdalksjfdl ksaalksjdf   laks fjalskdfj ;akslfd lkajsfkljasfsaflsafjsajljsajlk  ajslfjalsj</td>
      </tr>
      <tr>
        <td>current</td>
      </tr>
      <tr>
        <td rowspan="3">lkajsfkljasfsaflsafjsajljsajlkajslfjalsjflkjsalfkdj alskfjdalksjfdl ksaalksjdf laks fjalskdfj ;akslfd lkajsfkljasfsaflsafjsajljsajlkajslfjalsjflkjsalfkdj alskfjdalksjfdl ksaalksjdf laks fjalskdfj ;akslfd lkajsfkljasfsaflsafjsajljsajlkajslfjalsjflkjsalfkdj alskfjdalksjfdl ksaalksjdf laks fjalskdfj ;akslfd lkajsfkljasfsaflsafjsajljsajlkajslfjalsjflkjsalfkdj alskfjdalksjfdl ksaalksjdf laks fjalskdfj ;akslfd</td>
      </tr>
      <tr>
        <td height="30"bgcolor="#0d4881">Contact us</td>
      </tr>
      <tr>
        <td rowspan="3">lkajsfkljasfsaflsafjsajljsajlkajslfjalsjfl afjsajljsajlkajslfjalsjflafjsajljsajlkajslfjalfjsajljsajlkajslfjalsjfl</td>
      </tr>
      <tr>
        <td bgcolor="#0d4881">keep in touch</td>
      </tr>
      <tr>
        <td>twitter fabkjls</td>
      </tr>
    </table>
    </body>
    </html>
    Thank you in advance

    Copy & paste this code into a new, blank document.  Save as test.html.  Adjust CSS borders, colors and background styles as desired.
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>HTML5 Document</title>
    <!--[if lt IE 9]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
    <style>
    margin: 0;
    padding: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    body {
    width: 1000px;
    margin: 0 auto;
    background: #CFC;
    font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", serif;
    font-size: 100%;
    div {
    width: 49%;
    border: 2px solid #999;
    float: left;
    background: #FFF;
    color: #000;
    font-size: 16px;
    div h2 {
    background: #09C;
    color: #FFF;
    padding: 12px;
    border-bottom: 3px solid #999;
    div p { padding: 12px }
    div li {
    margin-left: 45px;
    padding-left: 12px
    footer {
    clear: left;
    background: #999;
    padding: 12px;
    color: #FFF;
    width: 100%
    </style>
    </head>
    <body>
    <!--left column-->
    <div>
    <h2>Heading 2</h2>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    Mauris vitae libero lacus, vel hendrerit nisi!
    Maecenas quis velit nisl, volutpat viverra felis. </p>
    <h2>Heading 2 </h2>
    <ul>
    <li>List item</li>
    <li>List item</li>
    <li>List item</li>
    <li>List item</li>
    </ul>
    <!--end left column--></div>
    <!--right column-->
    <div>
    <h2>Heading 2</h2>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    Mauris vitae libero lacus, vel hendrerit nisi!
    Maecenas quis velit nisl, volutpat viverra felis.
    Vestibulum luctus mauris sed sem dapibus luctus.
    Pellentesque aliquet aliquet ligula, et sagittis justo auctor varius.
    Quisque varius scelerisque nunc eget rhoncus.
    Aenean tristique enim ut ante dignissim.</p>
    <h2>Heading 2</h2>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    Mauris vitae libero lacus, vel hendrerit nisi!
    Maecenas quis velit nisl, volutpat viverra felis.
    Vestibulum luctus mauris sed sem dapibus luctus.
    Pellentesque aliquet aliquet ligula, et sagittis justo auctor varius.
    Quisque varius scelerisque nunc eget rhoncus.
    Aenean tristique enim ut ante dignissim.</p>
    <!--end right column--></div>
    <footer> <small>© 2013 Your Company Name.  All rights reserved.</small> </footer>
    </body>
    </html>
    Nancy O.

  • How to know exact column name in following error (oracle9i)

    Hi all,
    Please telll me
    How to know exact column name in following error
    ORA-01401: inserted value too large for column
    Prashant
    null

    If you are running this in your SQL*Plus session then you can easily check it out --
    satyaki>
    satyaki>create table test_sat
      2     as
      3    select empno,ename,job
      4    from emp;
    Table created.
    satyaki>
    satyaki>
    satyaki>desc test_sat;
    Name                                      Null?    Type
    EMPNO                                              NUMBER(4)
    ENAME                                              VARCHAR2(10)
    JOB                                                VARCHAR2(9)
    satyaki>
    satyaki>
    satyaki>
    satyaki>
    satyaki>insert into test_sat values(5555,'Robin','BU');
    1 row created.
    satyaki>
    satyaki>
    satyaki>insert into test_sat values(5555,'Arama Baager Taaja','FR');
    insert into test_sat values(5555,'Arama Baager Taaja','FR')
    ERROR at line 1:
    ORA-01401: inserted value too large for column
    satyaki>insert into test_sat values(55557,'Arama','FR');
    insert into test_sat values(55557,'Arama','FR')
    ERROR at line 1:
    ORA-01438: value larger than specified precision allows for this column
    satyaki>
    satyaki>insert into test_sat values(5555,'Arama','ACCOUNTING');
    insert into test_sat values(5555,'Arama','ACCOUNTING')
    ERROR at line 1:
    ORA-01401: inserted value too large for column
    satyaki>Regards.
    Satyaki De.

  • Imp-00020 long column too large for column buffer size (22)

    Hi friends,
    I have exported (through Conventional path) a complete schema from Oracle 7 (Sco unix patform).
    Then transferred the export file to a laptop(window platform) from unix server.
    And tried to import this file into Oracle10.2. on windows XP.
    (Database Configuration of Oracle 10g is
    User tablespace 2 GB
    Temp tablespace 30 Mb
    The rollback segment of 15 mb each
    undo tablespace of 200 MB
    SGA 160MB
    PAGA 16MB)
    All the tables imported success fully except 3 tables which are having AROUND 1 million rows each.
    The error message comes during import are as following for these 3 tables
    imp-00020 long column too large for column buffer size (22)
    imp-00020 long column too large for column buffer size(7)
    The main point here is in all the 3 tables there is no long column/timestamp column (only varchar/number columns are there).
    For solving the problem I tried following options
    1.Incresed the buffer size upto 20480000/30720000.
    2.Commit=Y Indexes=N (in this case does not import complete tables).
    3.first export table structures only and then Data.
    4.Created table manually and tried to import the tables.
    but all efforts got failed.
    still getting the same errors.
    Can some one help me on this issue ?
    I will be grateful to all of you.
    Regards,
    Harvinder Singh
    [email protected]
    Edited by: user462250 on Oct 14, 2009 1:57 AM

    Thanks, but this note is for older releases, 7.3 to 8.0...
    In my case both export and import were made on a 11.2 database.
    I didn't use datapump because we use the same processes for different releases of Oracle, some of them do not comtemplate datapump. By the way, shouldn't EXP / IMP work anyway?

Maybe you are looking for

  • Why has my ipod not got any music or apps

    When i syn my ipod none of the music or apps from itunes is on the ipod

  • How to get the personnel plan work schedule

    Hi, I write a report ,need get the personnel plan work schedule of the input month. for example: at input screen : I input : 2007-01  and pernr:10000001; I hope get the plan work schedule days (rusult :25 work days)of  the  person 10000001  at  Janua

  • Dynamic data in header on each page.

    So, I would LIKE to put a text frame in a master page, which contains dynamic data (various methods have been tried, XML, Data Merge, Place TXT file) and this frame will load a different line (paragraph, xml node, row) on each page that uses the mast

  • Something was charged to my account that I didn't buy

    Not sure how this happened, but I did change my password and immediatly disscociate my visa. Its only a .99 cent charge, but I still didn't make that purchase. Is there a way to see where my account was compromised from? Also need to be refunded for

  • HT204387 Can you pair iphone to ipad2 via Bluetooth

    Just wondering if it's possible to pair apple devices to each other via Bluetooth or do I need to find an app