Parameter "BASE" in .fmx properties? :(

Hello friends,
I have a doubt: I have in my desktop a direct access to myform.fmx
fmx extension is asociated with ifrun60.exe
I want to click on the direct access and make the aplication connects to the database and runs... (or at least, that appears the logon window to introduce user, password and database...)
The problem is that when I click on the icon, it appears a TNS error (ORA-12154-cannot resolve name service) after that, it appears the logon screen with other Database name... I have to change de database name and introduce my user and pass, and after that... I can enter into the application.
Is it possible to add a parameter in icon properties menu, In destiny I put:
C:\oraDESA\ora92\BIN\ifrun60.EXE C:\JLFM\MYFORM.FMX BASE=MYDB
but it appears an error message saying that it doesn`t appears the parameter BASE in the myform form. I had a look to other direct access with other parameter and to the corresponding fmb and that fmb doesn't have any parameter but it works!! ANy idea??
Thanks a lot.

Hi Jose,
For this problem, instead of using a the exe as an icon directly, you could use a batch script.
Refer the thread
Re: Developer 10g
on how to achieve this.
Also, for your question to Francois,
You could hardocode the username in the forms itself in the ON-LOGON trigger
Refer the thread
connecting through runtime
HTH.
Regards,
Arun

Similar Messages

  • Hide Parameter Pane using Report Properties Code

    Hi,
    I want to collapse the Parameters pane by default when the users view the report through the URL.
    I have read other similar threads and understood the below.
    It is possible by appending the command rc:Parameters=Collapsed. But this is only in ReportServer URL and not in Reports URL.
    This works fine. But, when the user accessing the report from
    http://servername/ReportServer, you cant expect him to append this text everytime. I also found that it can be somehow achieved using Report Properties Code. But, since Im new to that, unable to get how to achieve the same.
    Could someone share an example of how to set the default property of rc:Parameters to Collapsed using Code?
    Thanks,
    Akalya

    Hi Akalya,
    According to your description, you want to hide parameter pane when the user accessing the report from Report Manager. To achieve this goal, we can click “Show/Hide Parameters” arrow to hide the parameter pane after view the report from Report Manager.
    Besides, if I understand correctly, you had specify default values for all report parameters, so you want to hide parameter pane. If in this scenario, we can hide all parameters and then the parameter pane will be hidden.
    For example, open the report Properties page on Report Manager and go to Parameter tab, click the "Hide" selection for all parameters. We can also hide the parameters by specify the parameter visibility with "Hidden" before you deploy the report to Report
    Server.
    If there are any other questions, please feel free to ask.
    Regards,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • How to make a parameter base report?

    I am making a report on employees and departments but i want to choose employees for some required departments for that i need to use parameter, and i need help that how will i make a parameter in reports builder 10g.
    I am able to do it by writing a where clause in query but now i want to do it from user parameters. Seek help here.
    Maz

    Here is a list of things to do. Let me know if anything is not clear.
    1) In your main query create a lexical parameter at the very end of you where clause ( dont put and &p_where just &p_where)
    &p_where
    2)Create a user parameter with datatype character and width 200
    ex: P_departments
    3) Create a field on the Paper Parameter Form
    4) Click on that field and go to the List of Values (if you want a lov...) and insert the following
    Ex:
    select 'All',' All Departments' from dual
    union
    select to_char(department),to_char(department)||' - '||department_name
    from departments
    order by 1
    5) Go to Report Triggers > After Parameters and insert the following
    Ex:
    begin
    :p_where := null;
    if :p_departments not like '%All%' then
    :p_where := :p_where ||' and table.department = '||:p_departments;
    end if;
    return (true);
    end;
    This will allow you to select a department or leave it at the default of all departments. It will also allow you to remove the hardcoded statement in your where clause such as
    where department = 'HR'
    Edited by: DOUBLE U on Aug 3, 2011 3:32 PM

  • Discoverer Report parameter based on subquery

    Hi Guys,
    I have following query which i need to convert into discoverer report
    select hpah.EMPLOYEE_NUMBER,hpah.FIRST_NAME,hpah.LAST_NAME,hpah.PERSON_NAME,
    --hpah.JOB_NAME,hpah.ASSIGNMENT_ORGANIZATION_NAME,
    hpah.ASSIGNMENT_TYPE,hpah.USER_ASSIGNMENT_STATUS,
    SUBSTR(pj.name, 1, instr(pj.name, '.', 1, 2) -1) job_code,
    SUBSTR(pj.name, instr(pj.name, '.', 1, 2) + 1) job_title,
    (select haou.ATTRIBUTE1 from hr_all_organization_units haou
    where haou.ORGANIZATION_ID = hpah.ASSIGNMENT_ORGANIZATION_ID ) Function,
    (select haou.ATTRIBUTE2 from hr_all_organization_units haou
    where haou.ORGANIZATION_ID = hpah.ASSIGNMENT_ORGANIZATION_ID ) org_desc,
    SUBSTR(hpah.ASSIGNMENT_ORGANIZATION_NAME, 1, 6) dept_code,
    SUBSTR(hpah.ASSIGNMENT_ORGANIZATION_NAME, 7, LENGTH(hpah.ASSIGNMENT_ORGANIZATION_NAME)) dept_title,
    hpah.GRADE_NAME,hpah.LOCATION_NAME,hpah.SUPERVISOR_NAME,
    hpah.PERSON_START_DATE,hpah.ORIGINAL_DATE_OF_HIRE ,
    hpah.SALARY_BASIS,hpah.BUSINESS_GROUP_ID,hpah.ASSIGNMENT_ID,
    decode( hpah.SALARY_BASIS, 'ANNUAL', ppp.proposed_salary_n,
    'HOURLY', (ppp.proposed_salary_n *2080),
    ppp.proposed_salary_n
    ) salary,
    sysdate run_date
    from
    hrfg_person_assignment_history hpah ,
    per_pay_proposals ppp,
    per_pay_bases ppb,
    per_grades pg,
    per_jobs pj
    where hpah.ASSIGNMENT_ID = ppp.ASSIGNMENT_ID
    and hpah.SALARY_BASIS = ppb.PAY_BASIS
    and hpah.BUSINESS_GROUP_ID = ppb.BUSINESS_GROUP_ID
    and hpah.GRADE_ID = pg.GRADE_ID(+)
    and hpah.JOB_ID = pj.JOB_ID (+)
    --and   hpah.EMPLOYEE_NUMBER = 100779
    and hpah.PERSON_START_DATE IN
    (SELECT MAX(hpah2.PERSON_START_DATE)
    FROM hrfg_person_assignment_history hpah2
    WHERE hpah2.EMPLOYEE_NUMBER = hpah.EMPLOYEE_NUMBER
    AND hpah2.PERSON_START_DATE <= sysdate )
    order by hpah.EMPLOYEE_NUMBER
    i need to have sysdate as parameter in my report. I want data based on the date i provide.
    how can i make this as an parameter?

    Hi Prashant,
    Subqueries are not Supported in Conditions..As of Disco Plus Rel 10.1.2.54.25
    A plausible workaround can be:
    1. Create a View with foll. Query
    create or replace view TEST_VIEW as
    select hpah.EMPLOYEE_NUMBER emp_no,hpah.FIRST_NAME,hpah.LAST_NAME,hpah.PERSON_NAME,
    --hpah.JOB_NAME,hpah.ASSIGNMENT_ORGANIZATION_NAME,
    hpah.ASSIGNMENT_TYPE,hpah.USER_ASSIGNMENT_STATUS,
    SUBSTR(pj.name, 1, instr(pj.name, '.', 1, 2) -1) job_code,
    SUBSTR(pj.name, instr(pj.name, '.', 1, 2) + 1) job_title,
    (select haou.ATTRIBUTE1 from hr_all_organization_units haou
    where haou.ORGANIZATION_ID = hpah.ASSIGNMENT_ORGANIZATION_ID ) Function,
    (select haou.ATTRIBUTE2 from hr_all_organization_units haou
    where haou.ORGANIZATION_ID = hpah.ASSIGNMENT_ORGANIZATION_ID ) org_desc,
    SUBSTR(hpah.ASSIGNMENT_ORGANIZATION_NAME, 1, 6) dept_code,
    SUBSTR(hpah.ASSIGNMENT_ORGANIZATION_NAME, 7, LENGTH(hpah.ASSIGNMENT_ORGANIZATION_NAME)) dept_title,
    hpah.GRADE_NAME,hpah.LOCATION_NAME,hpah.SUPERVISOR_NAME,
    hpah.PERSON_START_DATE,hpah.ORIGINAL_DATE_OF_HIRE ,
    hpah.SALARY_BASIS,hpah.BUSINESS_GROUP_ID,hpah.ASSIGNMENT_ID,
    decode( hpah.SALARY_BASIS, 'ANNUAL', ppp.proposed_salary_n,
    'HOURLY', (ppp.proposed_salary_n *2080),
    ppp.proposed_salary_n
    ) salary,
    sysdate run_date
    from
    hrfg_person_assignment_history hpah ,
    per_pay_proposals ppp,
    per_pay_bases ppb,
    per_grades pg,
    per_jobs pj
    where hpah.ASSIGNMENT_ID = ppp.ASSIGNMENT_ID
    and hpah.SALARY_BASIS = ppb.PAY_BASIS
    and hpah.BUSINESS_GROUP_ID = ppb.BUSINESS_GROUP_ID
    and hpah.GRADE_ID = pg.GRADE_ID(+)
    and hpah.JOB_ID = pj.JOB_ID (+)
    --and hpah.EMPLOYEE_NUMBER = 100779
    order by hpah.EMPLOYEE_NUMBER
    2. Create another table say TEST_TAB
    create table TEST_TAB (emp_no, start_dt) as
    SELECT hpah2.EMPLOYEE_NUMBER , MAX(hpah2.PERSON_START_DATE) PERSON_START_DATE
    FROM hrfg_person_assignment_history hpah2
    GROUP BY hpah2.EMPLOYEE_NUMBER
    3. Add both of them in Disco Admin and create a join between TEST_VIEW.emp_no and TEST_TAB.emp_no
    4. Bring both these Objects in a new report in Disco Plus
    5. Create a New Parameter (Base it on PERSON_START_DATE Col of TEST_TAB)
    6. Choose Option Create Condition with operator <=
    7. Checkmark "Require User to Enter a Value
    8. Execute Report
    I believe this should work. Either ways let me know if it helps or u get another workaround. (This scenario looks quite interesting)
    Thanks,
    Chinmay

  • How do I use the UHRY_ACTIVE_ROWS parameter?

    We want to create a button to display the rows as a hierarchy (as available in query properties). To do this I realise I need to use the UHRY_ACTIVE_ROWS parameter in the template properties so to change the properties dynamically (as we require this functionality in a button) we started with the javascript command
    newurl = "&CMD=LDOC&TEMPLATE_ID=YTEST_TEMPLATE&UHRY_ACTIVE_ROWS=X";
    SAPBWOpenURL(SAP_BW_URL_Get()+newurl);
    This successfully sets the flag in the query properties but as we have mandatory variables the variable screen is shown which we don't want to see as the users have already entered the variables previously.
    Is it possible therefore to
    1) Avoid the Variables screen showing as they are already populated?
    or
    2) Set UHRY_ACTIVE_ROWS in another method?

    Hi Neal,
    Not sure if this would help..
    You can try using an additional parameter in your URL
    VARIABLE_SCREEN=%20 or VARIABLE_SCREEN=' '
    This should supress the Variable screen.
    Cheers,
    Praveen.

  • Issue with parameter in my package

    Hi !
    I have a problem and I don't know how resolve it ... and I don't know where searching an answer ...
    So my problem is that :
    I create a concurrent program with a parameter : p_type_edition (in lower case)
    I create a dataTemplate with the parameter (in lower case) and a beforeReport:
    <dataTemplate name="XXAPINMOXML" description="SUIVI DES INTERETS MORATOIRES" defaultPackage="XXAPINMO_PKG">
    <parameters>
    <parameter name="p_type_edition"/>
    </parameters>
    <dataTrigger name="beforeReportTrigger" source="XXAPINMO_PKG.beforeReport"/>
    Then I create my Package XXAPINMO_PKG as :
    CREATE OR REPLACE PACKAGE XXAPINMO_PKG AS
    p_type_edition varchar2(150);
    FUNCTION beforeReport return boolean;
    END XXAPINMO_PKG;
    show errors package XXAPINMO_PKG;
    CREATE OR REPLACE PACKAGE BODY XXAPINMO_PKG
    AS
    FUNCTION beforeReport return boolean is
    BEGIN
    fnd_file.put_line(FND_FILE.LOG,'p_type_edition ' || p_type_edition );
    return true;
    END beforeReport;
    END XXAPINMO_PKG;
    show errors package body XXAPINMO_PKG;
    My problem is that I can not see the value of the parameter in my trace ...
    It seems that the parameter is not "entered" in the package ...
    I'm sorry I'm French so my english is bad :(
    Someone can help me please ?!? I don't know what to do !
    I use XDODTEXE and my version is 5.6.3.
    Thanks a lot !!
    Frédérique
    Message was edited by:
    user586891

    Hi Darshan,
    Thanks for your answer.
    I change my package to do an another test.
    My XML :
    <dataTemplate name="XXAPINMOXML" description="SUIVI DES INTERETS MORATOIRES" defaultPackage="XXAPINMO_PKG">
    <dataQuery>
    <parameters>
    <parameter name="p_type_edition"/>
    </parameters>
    <PROPERTIES>
    <property name="include_parameters" value="true"/>
    </PROPERTIES>
    My package :
    CREATE OR REPLACE PACKAGE XXAPINMO_PKG AS
    p_type_edition varchar2(150);
    FUNCTION beforeReport return boolean;
    END XXAPINMO_PKG;
    show errors package XXAPINMO_PKG;
    CREATE OR REPLACE PACKAGE BODY XXAPINMO_PKG
    AS
    FUNCTION beforeReport return boolean is
    BEGIN
    fnd_file.put_line(FND_FILE.LOG,'p_type_edition ' || p_type_edition);
    IF p_type_edition = 'Y' THEN
         fnd_file.put_line(FND_FILE.LOG,'Case Y');
    ELSE
         fnd_file.put_line(FND_FILE.LOG,'Case N');
    END IF;
    return true;
    END beforeReport;
    END XXAPINMO_PKG;
    show errors package body XXAPINMO_PKG;
    Then I launch my concurrent program with 'Y' in parameter and I see the log of my concurrent program :
    XDO Data Engine Version No: 5.6.3
    Resp: 51213
    Org ID : 45
    Request ID: 2468909
    All Parameters: p_type_edition=Y
    Data Template Code: XXAPINMOXML
    Data Template Application Short Name: XXAP
    Debug Flag: N
    {p_type_edition=Y}
    Calling XDO Data Engine...
    Début des messages de journalisation à partir du fichier FND_FILE.
    p_type_edition
    Case N
    Fin des messages de journalisation à partir du fichier FND_FILE.
    But normally it should be 'Case Y' which would be written ...
    And when I see the XML via Diagnostic I don't see the parameter however I add <property ...>
    I really don't understand ...
    Maybe do you have an another idea ?
    Frédérique

  • Parameter problem in Crystal Reports for Eclipse

    i m using cr4e-all-in-one-win_2.0.1. I had created .rpt file. In preview, parameters are working fine. when the application is deployed into tomcat server, the report is not asking for the parameter. i tried with properties but still it remains the same issue. need a help to resolve this.....
    Thanks in advance.
    Regards,
    Ram
    Edited by: Ramchan on Aug 21, 2009 3:21 PM

    Don,
    Thanks for your suggestions. I will follow your instruction to connect to SQL Server Express 2008 database latelly. I can connect successfully with different Oracle databases (10g) in CR4E. I will try to connect MySQL database and Postgres database in CR4E  to see if they can be  successful or not. My project involves international entities with emphsizing  in using OPEN SOURCE softwares (which means FREE - no license fees) in .NET platform for Oracle, SQL Server Express, MySQL and Postgres database servers. I am responsible for reports generation. I hope that CR4E can be connected successfully to SQL Server Express 2008 database server, otherwise I have to use JFreeReport/JFreeChart tools to do reports generation .

  • How Can i specify multiple server names in rwservlet.properties  file?

    How Can i specify multiple server names in rwservlet.properties file without clustering?
    I am using oracle 10g Application server. we have 3 servers Repsvr1, RepSvr2 and RepSvr3. Now i need to configure rwservlet.properties file to point to these servers based on any running report. i got 3 keymap files with reports info.
    Sample entry in the key map file is:
    key1: server=Repsvr1 userid=xxx/yyy@dbname report=D:\Web\path1\path2\reports\Report1.rdf destype=cache desformat=PDF %*
    key2: server=Repsvr2 userid=xxx/yyy@dbname report=D:\Web\path1\path3\reports\Report2.rdf destype=cache desformat=PDF %*
    rwservlet.properties file letting me to enter only one servername. Even though i merged all 3 keymap files into 1, still i have the server name issue. If i leave the server to the default name still i am getting the below error.
    REP-51002: Bind to Reports Server Repsvr1 failed. However, i know the default rep_<servername> would be used incase we dont have SERVER=<value> parameter in the rwservlet.properties file.
    If i specify the servername in the rwservlet.properties file then only Repsvr1 reports are working fine and other 2 server reports are giving the same error like
    REP-51002: Bind to Reports Server <<Server Name>> failed.
    how can i configure the info which will work all 3 reports. 2 Port servers are invoking using oracle forms and report server is invoking using ASP pages.
    If i specify Server name & Key map file in rwservlet.properties one at a time, all the reports are working without any error, whenever i am trying to integrate all 3 to workable i am getting binding error. if i exclude the server from rwservlet.properties still i am getting the same error.

    My RELOAD_KEYMAP setting is YES only.As i said If i specify Server name & Key map file in rwservlet.properties one at a time, all the reports are working without any error.
    keymap file entries
    key1: server=Repsvr1 userid=xxx/yyy@dbname report=D:\Web\path1\path2\reports\Report1.rdf destype=cache desformat=PDF %*
    key2: server=Repsvr2 userid=xxx/yyy@dbname report=D:\Web\path1\path3\reports\Report2.rdf destype=cache desformat=PDF %*
    If i use http://server.domain:port/reports/rwservlet? cmdkey = key1 should bring the report from Repsvr1 and http://server.domain:port/reports/rwservlet? cmdkey = key2 should bring the report from Repsvr2, but i am getting an error from Repsvr2 saying that REP-51002: Bind to Reports Server repsvr2 failed.
    Only Servername Repsvr1 is in rwservlet.properties file. Now what is the best option to by pass the server from rwservlet.properties file and should be from keymap file. if i comment server name in rwservlet.properties file still i am getting REP-51002: Bind to Reports Server <<Server Name>> failed error for both keys.

  • How to bind a VO :variable in a WHERE clause to a page parameter

    Hello,
    I have a VO. This VO has a variable :v in the WHERE clause of the query.
    This VO is used by different UI components in a page (a table, a tree). The page already has a parameter defined in his properties #{viewScope.myparam}
    What I want is to bind :v to the #{viewScope.myparam}, so that I can specify :v from a parameter in the URL, so that the table immeditaly shows the proper results.
    Is there a way to Bind :v to #{viewScope.myparam} directly in the VO definition in the model project? (It seems it is not possilble)
    The other alternative is to use ExecuteWithParams, but in this case I do not know how to perform the query without user actions in a trasparent way. I dont want to associate execute operations to UI components.
    thanks

    Hi,
    +Is there a way to Bind :v to #{viewScope.myparam} directly in the VO definition in the model project? (It seems it is not possilble)+
    No, this can't be done
    The other alternative is to use ExecuteWithParams, but in this case I do not know how to perform the query without user actions in a trasparent way. I dont want to associate execute operations to UI components.
    If you are within a bounded task flow or in an unbounded task flow that does not have this page as its first view (home page) then you can drag and drop executeWithParams as a method call activity. The attribute then should be saved in the pageFlowScope (not the viewScope).
    In addition I would use a ViewCriteria instead of "hard wiring" the bind variable to the VO definition. You can then - in the AM data model section - associate the View Criteria with the VO instance yo use in the UI
    Frank

  • How to bind mapping input parameter in process flow using OMB Plus

    Hi
    I have created a process flow with a mapping.
    This mapping has a input parameter, that I want to bind to a variable using OMBPlus
    OMBALTER PROCESS_FLOW '$process' MODIFY PARAMETER 'P_EOD_DATE_IN' SET PROPERTIES (BINDING) VALUES ('V_EOD_DATE') does not work as P_EOD_DATE is NOT a process parameter
    neither does
    OMBALTER PROCESS_FLOW '$process' MODIFY PARAMETER '$mapname/P_EOD_DATE_IN' SET PROPERTIES (BINDING) VALUES ('V_EOD_DATE') as the reference '$mapname/P_EOD_DATE_IN' is not valid.
    Any suggestions ?
    Best Regards
    Klaus

    Hi Klaus,
    look here {thread:id=640397}
    Regards,
    oleg

  • Faster way ?  properties file vs weblogic.xml jndi context

    Anyone knows what is faster way to get a value from a parameter,
    a) using a properties file
    b) using jndi context ( env-entries )
    Anyway to get new values from a runtime changed files ?
    Regards
    jsanza

    The real question is what are you trying to do, since that may make the
    decision. If you need to be able to change a parameter, either build
    parameter maintenance into your app (a page for example) or use the file
    method so you actually edit the stuff.
    JNDI is in-memory, which is fast. Pulling from disk will be pretty fast too
    on most systems (typically it is from memory if the file has been changed,
    since everything used gets cached by most OSs).
    Peace,
    Cameron Purdy
    Tangosol Inc.
    << Tangosol Server: How Weblogic applications are customized >>
    << Download now from http://www.tangosol.com/download.jsp >>
    "jsanza" <[email protected]> wrote in message
    news:3b72c402$[email protected]..
    >
    >
    Anyone knows what is faster way to get a value from a parameter,
    a) using a properties file
    b) using jndi context ( env-entries )
    Anyway to get new values from a runtime changed files ?
    Regards
    jsanza

  • Java applet cache parameter

    I'm sorry if that what I'm looking for is described elsewhere. I couldn't find it. I seem to have a bug with the latest Apple's java implementation (1.5) downloaded with the latest Software Update.
    I have to switch off applet caching for a certain applet and tried to do this via the Java preference app. It seems that it doesn't work using the offered checkbox. Because everytime when I check it and leave the dialog and turn back it's still checked. I tried it with the deployment properties file but had no luck not knowing (finding) the correct parameter to set false.
    As setting the cache size to zero didn't resolve the problem finally I tried to set the cache path to "/dev/zero" what for sure is the worst solution but it works out. Caching is disabled (This way I discovered that trying to write the cache path in the box in the preference pane you can write it only in reverse manner! llun/ved/ No, it's not a joke)
    Anyone could tell me the right parameter for the deployment properties file that I can correct this situation?
    Thanks
    Powerbook   Mac OS X (10.4.6)  

    Unfortunately, this did not resolve the issue. I have been doing a bit more looking and it appears I'm getting a null resource error on reload/refresh:
    public abstract class SimpleWindow extends JInternalFram
       public SimpleWindow()
          initComponents();
    public class FancyWindow extends SimpleWindow
       public FancyWindow()
          initComponents();
    }During startup, it tries to create a new FancyWindow, which calls initComponents(). Inside initComponents is a call to create a JEditorPane.
    The function runs fine, and I am able to create a new JEditorPane; however, when I do:
    jedit.setText("Text Here");I get my null error (tracing through the calls, it looks like it's unable to initialize the editorkit.
    This does not happen on a normal first-time load. It does not happen if I completely close the browser and restart it to re-run the applet, but if I just try to refresh it, it seemingly can't get memory for this?
    Edit: It looks like this may be a regression in 1.6.0_22 and later: 1.6.0_22 HTMLEditorKit throws NullPointerException when reloaded
    Edited by: Jamie.McPeek on Jan 15, 2011 12:28 AM

  • Windows 7 RC - Portege M200 - Base System Device

    Windows 7 RC is running nicely on my M200 but the Device Manager is showing an 'Other Device' with no driver loaded. It is described as 'Base System Device' and Properties shows its location as 'PCI Bus 2, Device 13, Function 0'.
    I have tried on-line searches and browsing within my M200 for a driver with no success. I have read elsewhere in these forums that the 'Base System Device' could be tied up with the SD Utilities. I have downloaded a fresh copy of the SD Utilities and installed them but still no luck. Certainly the SD Format utility won't work - it does not recognise when an SD card in inserted - so may be the SD Utilities need revision for Windows 7.
    Not a major problem as I can format SD cards elsewhere but it would be nice to get a clean bill of health from Device Manager.
    Has anyone else run into this problem and, even better, found a solution?
    Keith Woolf

    Some progress! I have checked out the IR device; it has a 'later' driver installed than the one listed on the laptopvideo2go website so I have left it alone. It report 'working OK' although I have no means of checking it.
    I found the VENdor and DEVice numbers under Base System Device\Properties\Details\Hardware Ids; they are VEN 1179 and DEV 0805. The 'pcidatabase' decodes these as VENdor Toshiba America Info Systems and DEVice SD Card Controller.
    This seems to confirm that, as I guessed from a thread on another forum, it is the SD Card Controller that lacks a driver and that it is 'Toshiba' who - we hope - will come up with an updated driver 'in due course'.
    Thanks very much for your help; I have learned how to identify PCI problems and have bookmarked the M200 Impressions site - very interesting and I shall keep an eye on your work.
    Thanks again, all.

  • Display descipition in a parameter of a selection screen

    hi all,
    i have here a requirement to display the description of the parameter base on the input value,
    it should be displayed in the right corner after the parameter
    do you have any idea?
    thanks

    Moderator message -please post in the correct forum and do not ask basic questions.
    post locked
    Rob

  • Parameter behaviors

    Motion 5 crashes every time I try to apply the parameter behaviors in the properties, like a wriggle for example...and I know that it´s not a RAM problem, because I change my RAM and it´s still the same...

    I see you also have Motion 4 installed. Is your FCP Studio installed in a separate folder. All studio aps should be together in a separate folder not individually in the applications folder. That is Apples recommendation to avoid conflicts. Do you have any other problems with Motion 5 or FCPX ( If you have that as well). If that is not an issue then I would trash Motion 5 preferences. Preference manager from Digital Rebellion which is a free download does this very safely and easily though you can do it manually if you like. I can not repeat your problem. I can apply parameter behaviors to properties in the inspector or from the behavior button in the tool bar with no issues. If trashing preferences doesn't help then try a new user and see if the issue is there as well. Next step if none of this works would be to reinstall Motion. Good Luck!

Maybe you are looking for

  • New System Build Help

    Video Editing Build Premiere Pro & AE Drive layout C: SSD - OS and Programs SAMSUNG 840 Pro Series MZ-7PD256BW 2.5" 256GB SATA III MLC Internal Solid State Drive (SSD) D: 1TB - Projects/Scratch Western Digital WD Black WD2002FAEX 2TB 7200 RPM SATA 6.

  • My iBook just shuts off when it is still partially charged. Help?

    Hello, I have an 14" iBook G4, and have been having problems lately with the computer shutting off (going dead, and not into sleep mode) after it has been running on battery power for awhile. It usually shuts off when the battery is at around 45-60 p

  • Can I sync my Lotus Organizer 6 (XP PC) with the iPod touch?

    I wish to purchase the iPod touch and would like to use my Lotus Organizer 6.0 on my PC (Windows XP Pro) as my work calendar as I have been using it for many years.  Will the PC sync with the iPod so that calendar and address information can be excha

  • AUs Not Showing in List

    I have a few audio units that refuse to appear in the list in Logic 8.0.2. I trashed AU and Logic cashes. They pass AU validation. But they are still not available. Any clues? thanks, skeeW

  • Midio 1.3 doesn't work with garageband 10.0.1 can anybody help me?

    To work with my songs that i created on my ipad i installed garageband 10.0.1 so i can transfer the songs from ipad to imac garageband. Than came the message that the midio plugin doesn't work anymore.  Is there any plugin like midio to work with gar