Two dependent SelectOneChoise objects...

Hi, everyone! I have two dependent select one choice objects! See: http://my.jetscreenshot.com/2677/20100715-6suo-55kb
Then I run my jspx page. First time when I choose values from first LOV, then secend LOV shows needed values. But when I repeat action - choose from first LOV value and then try to choose second LOV values then I see: http://my.jetscreenshot.com/2677/20100715-cgax-8kb
But when I click on empty places then the correct values appears on secod LOV. Why it is so? Maybe there are problems with momory, because when I try to choose from first LOV that was first time, then all values are rendered and I can see them? PLEASE Help!
Best regards!
Edited by: Debuger on Jul 15, 2010 6:05 AM
Edited by: Debuger on Jul 15, 2010 6:05 AM

Hi Debuger,
i worked simple testcase working fine.
<af:inputListOfValues id="BankAreaId" autoSubmit="true"
popupTitle="Search and Select: #{bindings.BankArea.hints.label}"
value="#{bindings.BankArea.inputValue}"
label="#{bindings.BankArea.hints.label}"
model="#{bindings.BankArea.listOfValuesModel}"
shortDesc="#{bindings.BankArea.hints.tooltip}">
<f:validator binding="#{bindings.BankArea.validator}"/>
</af:inputListOfValues>
<af:inputListOfValues id="BankbankNameId" autoSubmit="true"
popupTitle="Search and Select: #{bindings.BankName.hints.label}"
value="#{bindings.BankName.inputValue}"
label="#{bindings.BankName.hints.label}"
partialTriggers="BankAreaId"
model="#{bindings.BankName.listOfValuesModel}"
shortDesc="#{bindings.BankName.hints.tooltip}"
searchDesc="#{bindings.BankName.hints.tooltip}">
<f:validator binding="#{bindings.BankName.validator}"/>
</af:inputListOfValues>
Regards,
Kavitha

Similar Messages

  • How to implement two dependent dropdown lists in an input  table row?

    Hi all,
    I am new in Jdev 11g. I try to develop an input table with two dependent dropdown list. I can create independent dropdown list in such table. When I try to implement dependent one following some examples do it in a form using bind variable in the view object I get an empty listbox. How can I do this? Is it possible. I cannot find any documents about this.
    Thanks in advance

    Hi,
    it hasn't changed between 10.1.3 and 11. The basic outline of how you do it is
    - use a managed bean to query the data
    - populate the list with f:selectItems that point to the managed bean ArrayList<SelectItem> for the master and the detail
    - obtain the master ID in the managed bean by parsing the #{row} variable when the table renders
    - then bulild the detail list
    - have the detail list referencing the ArrayList<SelectItem> you expose for the details
    Note that without proper caching, the action is quite expensive
    Frank

  • TYPE OR TABLE DEPENDENCY OF OBJECT TYPE (ORA-2303)

    제품 : SQL*PLUS
    작성날짜 : 2004-05-20
    ==================================================
    TYPE OR TABLE DEPENDENCY OF OBJECT TYPE (ORA-2303)
    ==================================================
    PURPOSE
    Type이나 table의 dependency가 있는 type을 drop하거나 replace하고자
    하면 ORA-02303 error가 난다. 이 error의 원인을 알아보도록 한다.
    Explanation
    Object의 attribute나 method를 수정하기 위해서는 object type을 drop하고 재생성
    해야 한다. Type이나 table의 dependency가 있는 type을 drop하거나 replace하고자
    하면 ORA-02303 error가 난다. Object type은 type (nested table 또는 VARRAY)
    또는 object table로써 구체적으로 표현된다. 만약 data의 보존이 필요하다면
    temporary table에 manual하게 옮겨놓아야 한다.
    SQL Reference guide에 의하면 DROP TYPE FORCE 옵션은 recommend하지 않는다.
    왜냐하면 이 옵션을 쓰게 되면 복구가 불가능하고 dependency가 있던 table들은
    access하지 못하는 결과를 초래한다.
    Example
    아래의 query 1, 2, 3은 dependency을 확인하는 query문이다.
    1. Find nested tables
    select owner, parent_table_name, parent_table_column
    from dba_nested_tables
    where (table_type_owner, table_type_name) in
    (select owner, type_name
    from dba_coll_types
    where elem_type_owner = '<typeOwner>'
    and elem_type_name = '<typeName>');
    2. Find VARRAYs
    select owner, parent_table_name, parent_table_column
    from dba_varrays
    where (type_owner, type_name) in
    (select owner, type_name
    from dba_coll_types
    where elem_type_owner = '<typeOwner>'
    and elem_type_name = '<typeName');
    3. Find object tables
    select owner, table_name
    from dba_object_tables
    where table_type_owner = '<typeOwner>'
    and table_type = '<typeName>'
    and nested = 'NO';
    Example ) Logon as Scott
    /* Create an user defined object type */
    SQL> create type object_type as object (
    col1 number,
    col2 varchar2(20))
    Type created.
    /* Create nested table type */
    SQL> create type object_ntable as table of object_type
    Type created.
    /* Create varray type*/
    SQL> create type object_varray as varray(5) of object_type
    Type created.
    /* Create parent table with nested table and varray */
    SQL> create table master (
    col1 number primary key,
    col2_list object_ntable,
    col3_list object_varray)
    nested table col2_list store as master_col2
    Table created.
    /* Create object table */
    SQL> create table object_table of object_type (col1 primary key)
    object id primary key;
    Table created.
    ORA-2303 results if attempt to drop type with dependencies
    SQL> drop type object_type;
    drop type object_type
    ERROR at line 1:
    ORA-02303: cannot drop or replace a type with type or table dependents
    위의 queery 1,2,3을 이용하여 object type dependency을 확인한다.
    -- Find nested tables utilizing object type
    SQL> select owner, parent_table_name, parent_table_column
    from dba_nested_tables
    where (table_type_owner, table_type_name) in
    (select owner, type_name
    from dba_coll_types
    where elem_type_owner = 'SCOTT'
    and elem_type_name = 'OBJECT_TYPE');
    OWNER PARENT_TABLE_NAME PARENT_TABLE_COLUMN
    SCOTT MASTER COL2_LIST
    -- Find VARRAYs utilizing object type
    SQL> select owner, parent_table_name, parent_table_column
    from dba_varrays
    where (type_owner, type_name) in
    (select owner, type_name
    from dba_coll_types
    where elem_type_owner = 'SCOTT'
    and elem_type_name = 'OBJECT_TYPE');
    OWNER PARENT_TABLE_NAME PARENT_TABLE_COLUMN
    SCOTT MASTER COL3_LIST
    -- Find object tables
    SQL> select owner, table_name
    from dba_object_tables
    where table_type_owner = 'SCOTT'
    and table_type = 'OBJECT_TYPE'
    and nested = 'NO';
    OWNER TABLE_NAME
    SCOTT OBJECT_TABLE
    참고)
    bulletin : 11576 처럼 utility을 이용하는 방법이 있다.
    우리는 여기서 주의하여야 할 것은 script $ORACLE_HOME/rdbms/admin/utldtree.sql
    을 내가 보고자 하는 user에서 돌려야 한다는 것이다.
    $sqlplus scott/tiger
    SQL> @$ORACLE_HOME/rdbms/admin/utldtree.sql
    SQL> exec deptree_fill('TYPE','SCOTT','OBJECT_TYPE');
    PL/SQL procedure successfully completed.
    SQL> select * from ideptree;
    DEPENDENCIES
    TYPE SCOTT.OBJECT_TYPE
    TYPE SCOTT.OBJECT_NTABLE
    TABLE SCOTT.MASTER
    TYPE SCOTT.OBJECT_VARRAY
    TABLE SCOTT.MASTER
    TABLE SCOTT.MASTER_COL2
    TABLE SCOTT.OBJECT_TABLE
    Reference Documents
    Korean bulletin : 11576
    <Note:69661.1>

    Hi Carsten,
    Thanks for the sharp hint. It works.
    However, when I create a table using the schema, it gives me this error:
    varray DOC."LISTOFASSIGNEDNUMBER"."ASSIGNEDNUMBER"
    ERROR at line 14:
    ORA-02337: not an object type column
    Here is the script:
    CREATE TABLE CUSTOMMANIFEST (
    ID NUMBER PRIMARY KEY,
    DOC sys.XMLTYPE
    xmltype column doc
    XMLSCHEMA "http://www.abc.com/cm.xsd"
    element "CustomManifest"
    varray DOC."LISTOFMANIFESTPORTINFO"."MANIFESTPORTINFO"
    store as table MANIFESTPORTINFO_TABLE
    (primary key (NESTED_TABLE_ID, ARRAY_INDEX))
    organization index overflow
    varray DOC."LISTOFASSIGNEDNUMBER"."ASSIGNEDNUMBER"
    store as table ASSIGNEDNUMBER_TABLE
    (primary key (NESTED_TABLE_ID, ARRAY_INDEX))
    organization index overflow
    LISTOFASSIGNEDNUMBER itself is complexType and not sure where is the error....
    You may note there are more than two hierachy/levels...
    Thanks.

  • Infoset on two Master Data Objects

    Hi,
    I have two Master data objects one is time dependent ZABC and another master data object 0Material.
    Currently I have a report on ZABC which is time dependent master data object which is built on complex logic to get the data.
    There is a time interval  variable in the selection list.
    Business does not allow me to modify the time dependent master data (ZABC) that means to add new attributes division and Material deletion flag.
    The ZABC object does not have Division and Material Flag for Deletion attributes.
    The business requirment is to add Division and exclude materials which are marked for deletion as 'Y' to the existing report.
    Since Division and Material Flag for Deletion is not there in ZABC, I have gone for Infoset  between time dependent master data object and  0Material and did left outer join (which pulls all the records from time dependent master data object) and the join condition is Material.
    I built new report in query designer exactly like the current report.
    When I run both the reports , the newly developed report is not pulling exactly the same records as the current report.
    New report is pulling extra records. I mean the new report should pull only the records which are in the time interval.
    This is the issue. Please help in this regard.
    Thanks
    Madhav

    Hi,
    I could resolve the issue.
    Thanks & Regards,
    Madhav

  • View Link on two programmatic view objects

    Hello,
    I use Build JDEVADF_11.1.1.1.0_GENERIC_090615.0017.5407
    I have two programmatic View Objects with data from other sources (an ArrayList in my example).
    Now I would like to create a View Link on it. How can I do this?
    I'm quite new on Java and ADF...
    I know it is possible because I already found Steve's example 132 here [http://blogs.oracle.com/smuenchadf/examples/|http://blogs.oracle.com/smuenchadf/examples/]
    But could somebody create a simple example based on my example classes below (which is understandable for a newbie like me ;-) ?
    Has been asked already here, but I did not found a solution as yet.
    Error with view link and ADF table Tree
    This is my example code for the view objects:
    Employee.java:
    private Number empno;
    private String ename;
    private Number dept;
    with getters and setters...
    Department.java
    private Number deptno;
    private String dname;
    with getters and setters...
    public class StaticDataDepartmentsImpl extends ViewObjectImpl {
    int rows = -1;
    private List<Department> departments = new ArrayList<Department>();
    protected void executeQueryForCollection(Object rowset, Object[] params,
    int noUserParams) {
    // Initialize our fetch position for the query collection
    setFetchPos(rowset, 0);
    super.executeQueryForCollection(rowset, params, noUserParams);
    // Help the hasNext() method know if there are more rows to fetch or not
    protected boolean hasNextForCollection(Object rowset) {
    return getFetchPos(rowset) < rows;
    // Create and populate the "next" row in the rowset when needed
    protected ViewRowImpl createRowFromResultSet(Object rowset,ResultSet rs) {
    ViewRowImpl r = createNewRowForCollection(rowset);
    int pos = getFetchPos(rowset);
    populateAttributeForRow(r, 0, departments.get(pos).getDeptno());
    populateAttributeForRow(r, 1, departments.get(pos).getDname());
    setFetchPos(rowset, pos + 1);
    return r;
    // When created, initialize static data and remove trace of any SQL query
    protected void create() {
    super.create();
    // Setup string arrays of codes and values from VO custom properties
    initializeStaticData();
    rows = (departments != null) ? departments.size() : 0;
    // Wipe out all traces of a query for this VO
    getViewDef().setQuery(null);
    getViewDef().setSelectClause(null);
    setQuery(null);
    // Return the estimatedRowCount of the collection
    public long getQueryHitCount(ViewRowSetImpl viewRowSet) {
    return rows;
    // Subclasses override this to initialize their static data
    protected void initializeStaticData() {
    Department d1 = new Department();
    d1.setDeptno(new Number(10));
    d1.setDname("IT");
    Department d2 = new Department();
    d2.setDeptno(new Number(20));
    d2.setDname("HR");
    departments.add(d1);
    departments.add(d2);
    // Store the current fetch position in the user data context
    private void setFetchPos(Object rowset, int pos) {
    if (pos == rows) {
    setFetchCompleteForCollection(rowset, true);
    setUserDataForCollection(rowset, new Integer(pos));
    // Get the current fetch position from the user data context
    private int getFetchPos(Object rowset) {
    return ((Integer)getUserDataForCollection(rowset)).intValue();
    public class StaticDataEmployeesImpl extends ViewObjectImpl {
    int rows = -1;
    private List<Employee> employees = new ArrayList<Employee>();
    protected void executeQueryForCollection(Object rowset, Object[] params,
    int noUserParams) {
    // Initialize our fetch position for the query collection
    setFetchPos(rowset, 0);
    System.out.println("in executeQueryForCollection");
    super.executeQueryForCollection(rowset, params, noUserParams);
    // Help the hasNext() method know if there are more rows to fetch or not
    protected boolean hasNextForCollection(Object rowset) {
    System.out.println("in hasNextForCollection. Rows:" + rows);
    return getFetchPos(rowset) < rows;
    // Create and populate the "next" row in the rowset when needed
    protected ViewRowImpl createRowFromResultSet(Object rowset,ResultSet rs) {
    ViewRowImpl r = createNewRowForCollection(rowset);
    int pos = getFetchPos(rowset);
    System.out.println("in createRowFromResultSet. Pos=" + pos);
    populateAttributeForRow(r, 0, employees.get(pos).getEmpno());
    populateAttributeForRow(r, 1, employees.get(pos).getEname());
    populateAttributeForRow(r, 2, employees.get(pos).getDept());
    setFetchPos(rowset, pos + 1);
    return r;
    // When created, initialize static data and remove trace of any SQL query
    protected void create() {
    super.create();
    // Setup string arrays of codes and values from VO custom properties
    initializeStaticData();
    rows = (employees != null) ? employees.size() : 0;
    System.out.println("in create(). Rows=" + rows);
    // Wipe out all traces of a query for this VO
    getViewDef().setQuery(null);
    getViewDef().setSelectClause(null);
    setQuery(null);
    // Return the estimatedRowCount of the collection
    public long getQueryHitCount(ViewRowSetImpl viewRowSet) {
    return rows;
    // Subclasses override this to initialize their static data
    protected void initializeStaticData() {
    Employee e1 = new Employee();
    e1.setEmpno(new Number(2333));
    e1.setEname("Emp1");
    e1.setDept(new Number(10));
    Employee e2 = new Employee();
    e2.setEmpno(new Number(1199));
    e2.setEname("Emp2");
    e2.setDept(new Number(20));
    Employee e3 = new Employee();
    e3.setEmpno(new Number(3433));
    e3.setEname("Emp3");
    e3.setDept(new Number(10));
    Employee e4 = new Employee();
    e4.setEmpno(new Number(5599));
    e4.setEname("Emp4");
    e4.setDept(new Number(20));
    Employee e5 = new Employee();
    e5.setEmpno(new Number(5676));
    e5.setEname("Emp5");
    e5.setDept(new Number(10));
    Employee e6 = new Employee();
    e6.setEmpno(new Number(7867));
    e6.setEname("Emp6");
    e6.setDept(new Number(20));
    employees.add(e1);
    employees.add(e2);
    employees.add(e3);
    employees.add(e4);
    employees.add(e5);
    employees.add(e6);
    // Store the current fetch position in the user data context
    private void setFetchPos(Object rowset, int pos) {
    if (pos == rows) {
    setFetchCompleteForCollection(rowset, true);
    setUserDataForCollection(rowset, new Integer(pos));
    // Get the current fetch position from the user data context
    private int getFetchPos(Object rowset) {
    return ((Integer)getUserDataForCollection(rowset)).intValue();
    Who can help?
    Thnx in advance!
    Rolf

    Rolf,
    I guess when we try to do it for you, we end up with almost the sample code provided by Steve Muench.
    So there from my point of view it doesn't make sense to do it all over.
    Take some time and study the sample code, run it without changes and after that try some changes which suits your use case better.
    If you don't understand what's going on in the sample post the question here and we try to help you.
    Timo

  • Query on Time Dependent Info object

    Hi ,
    I am trying to create a query out of a time dependent info object.The info object is 0employee and since it is time dependent it has the date from and date to automatically in the infoobject master data. However these fields do not come up as characteristics when a create a query out of this infoobject.
    Can you please let me know why or am I missing something ? I know I can get it if i use it in a cube or DSO but i want to create from this infoobject. Please help.
    Thanks ,
    Regards
    Ashwin G

    Hi
    0employee_attr datasource have start and end date is mapped 1:1. target is 0employee? but when i check at 0employee attribute tab i have seen any start  and end date attributes.
    If you have it in attr u should be able to assign as read from master data.
    Otherwise routine will be
    SELECT STARTDATE from /BI0/MEMPLOYEE where employee = source_fields-employee.
    for start date and
    SELECT ENDDATE from /BI0/MEMPLOYEE where employee = source_fields-employee.
    for enddate
    Reagards,
    Nagaraju.V

  • Maintain language-dependent MIME objects

    Hi all,
    I have created a web dynpro view where an IFRAME is embedded which displays a PDF document. The PDF is uploaded as a language-dependent MIME object (so it also appears in the 'MIMEs' folder in SE80). Everything works fine.
    But how to translate resp. uploading different language versions of the PDF? In the log. document properties I have set 'Translation-Relevant=Set'. In my understanding it should be possible to use one single PDF name in development, upload different language versions and depending on the logon language the right PDF language version should be displayed. But I cannot find anything in SE80 or SE63. Who can help?
    Thanks in advance,
    Michael.

    Hi,
    If it's a document why don't you use the document object instead? You can find it in CV04n set of transactions.
    Yann

  • Error in master data load in time dependent info object

    hi,
    while loading master data(Texts) to time dependent info object i am getting error like      <b>"INFODEP1 : Data record 8 ('00000512 ') : Invalid "to" date '1-2-2004 '</b>     
    can anyone help where exactly is the error and how to remove it.
    Thanks
    Ashish

    hi,
      the date format should be yyyymmdd.
    regards
    pls assign points if helpful.

  • Two dependent lists in a search form

    How can i create two dependent lists in a search form?
    Am using jdev 10.1.3?
    Is there any sample wich can help me?
    THanks in advance !
    cheers,

    REPOST !

  • Displaying a Master with two detail view objects

    Hi,
    I have a situation where I need to relate a Master view object to two Detail view objects. Currently I am doing the lookup manually (using viewcriteria!) but I would much rather have the framework handle this. Does anyone know of a way to A: Link two details to one master and B: Display them on the same page.
    I am using Jdeveloper 9.0.3.3 (1205) and currently have a straight BC4J/JSP application with no struts or UIX.
    Thank you in advance for any help you can provide

    If I understand you correctly. You should just have to create two separate viewLinks. Add the datasource tags for the master and the two views via the viewlinks. Then use a rowKey to get the correct master.
    Hope that helps!

  • How do I read two dimentional string object in C through JNI

    HI,
    I am new to JNI and Java as well. I want to read two dimentional string object passed by java to a native method written in C/C++. Say for example I have declared a two dimentional string object as below:
    In Java
    class InstanceFieldAccess {
    private String [][] originalAddress = new String[][13];
    private static native String [] accessField(String [][] referenceAddress);
    public static void main(String args[]) {
    /// Java code to get the string object and pass the string object to native method
    new InstanceFieldAccess ().accessField(referenceAddress);
    static {
    System.loadLibrary("ReadStr");
    In C/C++
    I want to read the passed two dimentional string array in C/C++ native code and do the further processing and pass the string
    back to Java class.
    Could anybody tell me how to write the corresponding C/C++ native method.
    Thanks in Advance.
    Pramod.

    i got it thanks.

  • Language dependent system objects

    We have implemented EP60 SP12 and have 16 languages to cater for. We have created 16 different system objects, one per language. There are only two differences in these objects.
    One is the name (System name)
    The second is <b></b>ISA B2B Relative Path<b></b>. This is set to <b>/b2b/init.do?portal=YES&shop=UK_SHOP</b>. UK_SHOP changes in each system object. Is it possible to use a parameter in place of hardcoding the shop name. This would allow us to then only have one system object. All the language dependant entries are delta's from a base object, but it would ne neater if we could only have one entry.

    x

  • Extraction into Time dependent info object

    Dear all,
    In r/3 the field is time independent and want to extract the data into time dependent infoobject in bw.
    what is the procedure to do it.
    Regards,
    BPNR.

    Hi BPNR,
    You have two options:
    1. Make the info-object time independent and pull the data from R/3.
    2. Hard code the Date to and Date from fields in the infopackage to extreme values say 01/01/1900 to 31/12/9999 and extract the data from R/3.
    Hope this helps.

  • How to use two activex class objects in same vi

    HI
    I am using labview to read ECU data from INCA software .INCA providing COMTOOL API(incacom.dll). I am using ACTIVEX for  communication between INCA & Labview. My problem is If I have used single activex class object  I am able to read Inca version, getting the database path etc. If I have used two activex class in same vi (one to open Inca & other one is to read the folder structure) I am not getting output.I have attached snapshot for referance
    Attachments:
    activex1.JPG ‏114 KB
    activex2.JPG ‏107 KB

    It wasnt in the first two images you posted, or I couldnt see it anyway! That was the only reason.
    Did you try the database block on its own, just to confirm that it is working?
    Beginner? Try LabVIEW Basics
    Sharing bits of code? Try Snippets or LAVA Code Capture Tool
    Have you tried Quick Drop?, Visit QD Community.

  • Source System Dependent BI Objects

    When working with Source System Dependent Objects like
    1) DataSources (based on source system ABC)
    2) InfoPackage (based on source system ABC)
    3) DTP (source is datasource that is based on source system ABC)
    Question 1)
    Once we create the obove objects in DEV system.
    If we update the IMG activty in QA (Source system conversion after transport).
    and transport the above objects to QA system.
    All the above objects should be available with new source system in QA? Is this the right way to do it?
    Question 2)
    Once we create the obove objects in DEV system.
    If we DO NOT update the IMG activty in QA (Source system conversion after transport).
    and transport the above objects to QA system.
    Some of the above objects are not available with the new source system?
    Workaround: Go to RSA1 (Top Menu -> tools --> they are couple of options where we can enter 1) source and target source system info AND 2) do a check, activate and replicate source systems.
    After this some more objects are visible but not all? Is there any other way i can complete the conversion?
    Question 3) I tried the below in an other landscape
    Once we create the obove objects in DEV system.
    we DID NOT update the IMG activty in QA (Source system conversion after transport).
    and transported the above objects to QA system.
    FYI: All objects with source system in QA are available. I am wondering how the source system conversion took place?
    Question 4) When we enter source system for DEV and QA in QA system, Do we need to enter even PC file source systems?
    Example:
    1) ABC in DEV = BCD in QA
    2) PC_FILE in DEV = PC_FILE in QA
    Thanks for your help.

    Below are the following ways to do the mapping in Target System for Sourse System Conversion:
    1) rsa1->tools->source system mapping OR
    2)rsa1->transport connection->'conversion of log.system'(yellow box with 'x' and 'conversion' icon) OR
    3) spro->bus info warehouse->transport settings->change source system name after transport (transaction rslgmp) OR
    4)maintain table RSLOGSYSMAP (sm30)
    Que1.
    Yup
    Que2.
    if no maintenance done, system will transport as the same source system name. You have to convert everything manually...cumbersome process.
    Que4.
    Normaly for flat file we use the same name, to avoid any warnings, we just maintain the 'conversion' with the same name

Maybe you are looking for

  • Audio from flash sources is playing in the background, even though the sources of these have been closed.

    Audio from flash sources are still playing in the background after their sources have been closed; audio also starts playing when I start the browser. Closing plugin-container.exe in task manager solves this, but I do not want to do this every time I

  • Can't add printer: "request-value-too-long"

    When I try to add a printer that appears in Print Browser (HP Laserjet 6MP) to the Printer List, I get the error message shown in subject line. I've installed the most recent HP driver (before realizing it may not have been necessary since the driver

  • How can i change VBAK-Faksk of VAO1 at header level using BAPI_SALESORD_CHA

    Hi Experts, How can i change the value of VBAK-FAKSK (Billing doc value) at header level . by using the bapi_salesorder_change.Could you please send the sample code how to change the value of any field in VBAk . so that i can take as reference and wo

  • Indesign for weddingalbums

    Hello, My name is Ashvin Ghisyawan and I'm from Holland. I'm a professional wedding photographer. Since a few months a use Indesign to make the spread of my wedding albums. Does anyone know a company of templates that I can use to quickly make my spr

  • Having problems on MacBook Pro with Retina Display

    I am having the problem on the display of MacBook Pro Retina Display Mid 2012. I bought my MacBook with OS X Lion installed with it. Last year, I got the problem where there is vertical lines in my display. So, I had to replace my whole screen to fix