Problem with control IDs

I have two different panels in my program with various controls. The .h file
created by Labwindows for my .uir is partially reproduced below:
#include
#ifdef __cplusplus
extern "C" {
#endif
/* Panels and Controls: */
#define PANEL 1
#define PANEL_DATE 2
#define PANEL_FILE 3
#define PANEL_EWTR 4
#define PANEL_PROCESS 5
#define PANEL_CONVERT 6
#define PANEL_DONE 7
#define PANEL_PRINT 8
#define PANEL_SAVE 9
#define PANEL_TEXTBOX 10
#define PANEL_TEMP 11
#define PANEL_RH 12
#define PANEL_ATM 13
#define PANEL_MARKER_FREQ 14
#define PANEL_MARKER_DB 15
#define PANEL_MARKER_MIN 16
#define PANEL_MARKER_MAX 17
#define PANEL_MARKER_RIGHT 18
#define PANEL_MARKER_LEFT 19
#define PANEL_GRAPH 20
#define PANEL_SCALE 21
#define PANEL_MARKER 22
#define PANEL_TEXTMSG_3 23
#define PANEL_TEXTMSG_4 24
#define PANEL_TEXTMSG_2 25
#define PANEL_TEXTMSG 26
#define PANEL_2 2
#define PANEL_2_GRAPH 2
#define PANEL_2_N_5 3
#define PANEL_2_N_4 4
#define PANEL_2_N_3 5
#define PANEL_2_N_2 6
#define PANEL_2_N_1 7
#define PANEL_2_LED_5 8
#define PANEL_2_LED_4 9
#define PANEL_2_LED_3 10
#define PANEL_2_LED_2 11
#define PANEL_2_LED_1 12
#define PANEL_2_DONE 13
#define PANEL_2_MARKER_FREQ 14
#define PANEL_2_MARKER_DB 15
#define PANEL_2_MARKER_MIN 16
#define PANEL_2_MARKER_MAX 17
#define PANEL_2_MARKER_RIGHT 18
#define PANEL_2_MARKER_LEFT 19
#define PANEL_2_PRINT 20
#define PANEL_2_BUTTON_5 21
#define PANEL_2_BUTTON_4 22
#define PANEL_2_BUTTON_3 23
#define PANEL_2_BUTTON_2 24
#define PANEL_2_BUTTON_1 25
#define PANEL_2_CURRENT 26
#define PANEL_2_TEXTMSG_2 27
#define PANEL_2_TEXTMSG_3 28
#define PANEL_2_TEXTMSG_4 29
#define PANEL_2_TEXTMSG 30
#define PANEL_2_MARKER 31
The problem is that Labwindows has assigned the same control ID to controls
in the two panels, for example, PANEL_MARKER_MIN and PANEL_2_MARKER_MIN have
the same ID, i.e. 16. If I try to use both of these controls in the same
"case" statment, I get an error "Duplicate case label '16'." If I try to
modify the .h file manually, and change the ID for PANEL_2_MARKER_MIN to
216, there is no error and the program executes but it no longer recognizes
mouse clicks on the PANEL_2_MARKER_MIN control.
Is there some way to fix this problem? Is there a way to force Labwindows
to assign different IDs for all controls, regardless of what panel they are
in?
Thank you for your help in advance.

"...The problem is that Labwindows has assigned the same control ID to
controls
in the two panels, for example, PANEL_MARKER_MIN and PANEL_2_MARKER_MIN have
the same ID, i.e. 16. If I try to use both of these controls in the same
"case" statment, I get an error "Duplicate case label '16'." ..."
UIR editor counts controls inside the single panel they are in. In your
example, PANEL_MARKER_MIN and PANEL_2_MARKER_MIN have the same ID 'cause
both are the 16th control in their panel, rare case but it happens...
There is no way to force UIR editor to assign specific IDs to controls,
unless you add in one panel decoration controls or text messages and put
them before the other control in 'panel order' (ctrl+t in the editor): with
that trick you put in one panel all controls star
ting with order 0 (that is,
with control ID starting from 1 in the .h file), while in the second you
have non-operative contrls with lower IDs and operative controls or
indicator with higher IDs. This is NOT a polite solution since it relies on
the number of controls in the panels: every time you add new controls to a
panel, you should manage how IDs are assigned to them in order to avoid this
problem...
The best solution is to have two nested cases in your code, first one to
manage different panels, second one to manage different controls:
switch (panel) {
case PANEL:
switch (control) {
case PANEL_MARKER_MIN:
break;
// other controls of PANEL must be put here
break;
case PANEL_2:
switch (control) {
case PANEL_2_MARKER_MIN:
break;
// Other controls of PANEL_2 here
break;
That way you avoid any possible confusion and control mismatching that can
c
ause bizarre beaviour to your progrma.
Hope that helps
Roberto

Similar Messages

  • Problem with controlling Annotations from Excel VBA

    Hi,
    I have a PDF document that has plenty of sticky notes attached to it. These sticky notes have been added by multiple authors on all pages of the document. I am trying to import the contents of these sticky notes, their author and the page number to an excel spreadsheet.  I am using Excel 2007 and Acrobat Professional 9.0.
    This is the code that I am currently using to import the sticky notes, but the problem that I am facing is that when I run the macro -
    Same sticky note contents, author and page numbers are imported multiple times
    Not all sticky notes are imported, only some of them appear in the final excel spreadsheet
    When I compare the number of sticky notes to that in the original PDF file, the number is correct. But the content is repeated content and that is the reason why only some of the sticky notes are imported.
    This is an activity that I need to do on regular basis and the number of sticky notes that I need to import to excel may range between 100 to 200. It is really difficult to do this task manually, so an excel VBA macro could prove really helpful.
    Sub ImportComments_Click()
    Dim Fpath As String
    Dim WordObj As Object
    Dim wbkOutput As Excel.Workbook
    Dim iRow As Integer
    Dim i, j, k As Integer
    Dim lRet As Long
    Dim objAcroAVDoc As New Acrobat.acroAVDoc
    Dim objAcroPDDoc As Acrobat.AcroPDDoc
    Dim numPages As Long
    Dim lAnnotscnt As Long
    Dim Subtype As String
    Dim NumComments As Long
    Dim AcroApp As Acrobat.AcroApp
    Dim objAcroPDPage As Acrobat.AcroPDPage
    Dim annot As Acrobat.AcroPDAnnot
    Sheets("Defect Log").Select
    Range("L3").Activate
    Fpath = ActiveCell.Value
    Sheets("Defect Log").Select
    Range("A1").Activate
    i = 0
    Do While (Not (IsEmpty(ActiveCell.Value)) Or Not (IsEmpty(ActiveCell.Offset(0, 1).Value)) Or Not (IsEmpty(ActiveCell.Offset(0, 2).Value)) Or Not (IsEmpty(ActiveCell.Offset(0, 3).Value)) Or Not (IsEmpty(ActiveCell.Offset(0, 4).Value)) Or Not (IsEmpty(ActiveCell.Offset(0, 5).Value)) Or Not (IsEmpty(ActiveCell.Offset(0, 6).Value)) Or Not (IsEmpty(ActiveCell.Offset(0, 7).Value)) Or Not (IsEmpty(ActiveCell.Offset(0, 8).Value)) Or Not (IsEmpty(ActiveCell.Offset(0, 9).Value)) Or Not (IsEmpty(ActiveCell.Offset(0, 10).Value)) Or Not (IsEmpty(ActiveCell.Offset(0, 11).Value)) Or Not (IsEmpty(ActiveCell.Offset(0, 12).Value)) Or Not (IsEmpty(ActiveCell.Offset(0, 13).Value)) Or Not (IsEmpty(ActiveCell.Offset(0, 14).Value)))
    i = i + 1
    ActiveCell.Offset(1, 0).Select
    Loop
    iRow = i + 1
    Set wbkOutput = ActiveWorkbook
    lRet = objAcroAVDoc.Open(Fpath, "")
    Set objAcroPDDoc = objAcroAVDoc.GetPDDoc
    numPages = objAcroPDDoc.GetNumPages()
    Set objAcroPDPage = objAcroPDDoc.AcquirePage(0)
    For k = 1 To numPages
    lAnnotscnt = objAcroPDPage.GetNumAnnots()
    For m = 0 To lAnnotscnt - 1
    If lAnnotscnt = 0 Then Exit For
    Set objAcroPDAnnot = objAcroPDPage.GetAnnot(m)
    If (objAcroPDAnnot.GetContents <> "" And objAcroPDAnnot.GetSubtype = "Text") Then
    Cells(iRow, 5).Value = k
    Cells(iRow, 2).Value = objAcroPDAnnot.GetContents()
    Cells(iRow, 11).Value = objAcroPDAnnot.GetTitle()
    iRow = iRow + 1
    End If
    Next m
    Set objAcroPDPage = objAcroPDDoc.AcquirePage(k)
    Next k
    lRet = objAcroAVDoc.Close(1)
    Set objAcroAVDoc = Nothing
    Set objAcroPDAnnot = Nothing
    Set objAcroPDPage = Nothing
    Set objAcroPDDoc = Nothing
    End Sub

    Make sure you are current with 9.x patches, just on general principles.
    The code seems fine – nothing jumping out at me.
    You can also look at using the JSObject methods and trying this via the JavaScript stuff – that will give you more access to the Annotation information…
    From: Adobe Forums <[email protected]<mailto:[email protected]>>
    Reply-To: "[email protected]<mailto:[email protected]>" <[email protected]<mailto:[email protected]>>
    Date: Thu, 24 Nov 2011 04:25:12 -0800
    To: Leonard Rosenthol <[email protected]<mailto:[email protected]>>
    Subject: Problem with controlling Annotations from Excel VBA
    Problem with controlling Annotations from Excel VBA
    created by apreeti<http://forums.adobe.com/people/apreeti> in Acrobat SDK - View the full discussion<http://forums.adobe.com/message/4044740#4044740

  • ABAP Objects: Problems with controls in splitter container

    Hi community,
    I have problems with the second control in a splitter container.
    In the left container I build up a <u>list tree</u>.
    On double click on a node a <u>column tree</u> in the right container is created.
    This is working fine.
    But if I double click on another node in the left container the right tree remains unchanged.
    What do I have to do to update/refresh the tree in the right splitter container.
    Thanks in advance.
    Regards
    Ferdi

    Thanks for your reply Thomas and Serdar,
    I now destroy the right container and the right tree control if it exists after the event 'double_click' on a node in the left tree.
    The result is now that the container is created (I can see it on screen) but no tree is shown.
    If I just destroy the tree control but not the container the tree from the first double click on the left tree is shown.
    In the debugger I see that the list tree instance is linked to the caontainer (after first and second creation of tree control)
    Maybe you can see in the coding below what's wrong or missing.
    Coding after EVENT DOUBLE_CLICK in left Tree: <pre>
    destroy ‘old’ tree instance and container
      if not g_container_2 is initial.
        call method g_container_2->free.
        clear: g_container_2, g_tree_2.
      endif.
    create right container
      call method g_splitter->get_container
                exporting row      = 1
                          column   = 2
                receiving container = g_container_2.
    setup the hierarchy header
      hierarchy_header-heading = 'Hierarchy Header'.
      hierarchy_header-width = 37.       
    create a column tree model instance
      create object g_tree_2
        exporting
          node_selection_mode = cl_column_tree_model=>node_sel_mode_single
          item_selection = 'X'
          hierarchy_column_name = 'C1'
          hierarchy_header = hierarchy_header.
    create tree control
      call method g_tree_2->create_tree_control
        exporting
          parent = g_container_2.
      perform add_columns.
      perform define_events.
    set registered events
      call method g_tree_2->set_registered_events
        exporting
          events = events.
      perform get_data.
      perform add_nodes_2.
    expand the root node
      call method g_tree_2->expand_node
        exporting
          node_key = 'Root'
          level_count = 3.
    </pre>
    Regards
    Ferdi
    Message was edited by: Ferdi Meyer

  • 7700 speaker problems with control Pod

    ok if anyone has speakers like this they know it comes with a little control pd that controls the volume and bass. well i think the problem is that sometimes the volume goes really high or really soft. and if you turn the volume up or down, the sound will go back to normal and you will be blasted or can't hear it. its very anoying to listen to music or game and this happens. it does this regardless of the number of speakers attached, and my drivers are up todate. i have onboard sound on a asus A8V mobo so its a newer board. some people said that the pod can get wonky, and i am checking to see if anyone has any suggestions on what i should maybe try short of RMA the speakers, its not that i don't want to RMA it but i would have to pay shipping on a set of speakers witch is kinda gay. any help would be great.. thanks

    fox_9 wrote:
    ok if anyone has speakers like this they know it comes with a little control pd that controls the volume and bass. well i think the problem is that sometimes the volume goes really high or really soft. and if you turn the volume up or down, the sound will go back to normal and you will be blasted or can't hear it. its very anoying to listen to music or game and this happens. it does this regardless of the number of speakers attached, and my drivers are up todate. i have onboard sound on a asus A8V mobo so its a newer board. some people said that the pod can get wonky, and i am checking to see if anyone has any suggestions on what i should maybe try short of RMA the speakers, its not that i don't want to RMA it but i would have to pay shipping on a set of speakers witch is kinda gay. any help would be great.. thanks
    I have the same problem with my inspire 6.'s volume pod, after well under a year of flawless perfomance, the volume lowers randomly especially when I adjust the pod's volmue or just touch or move it. If I try to simply adjust for the loss of volume by cranking it up, it likes to blast me outta nowhere when it decides to work again. The only thing I can do to shortcut the 'down time' while waiting for it to adjust to normal level is to tap on the pod repeatedly usually causing the volume to adjust quicker...but I'm sure thats not the right method for fixing this irritating problem...PLEASE wont someone HELP ME?! Feel free to e-mail me @ [email protected], thanx!
    Message Edited by BigLovan on 10-28-2004 01:16 AM

  • HT5858 Problem with control center

    When I swipe up from the bottom of my screen, the control center almost never comes up! What's going on?

    Do you have a bulky case with an edge near the bottom of the screen?
    Lots of people describe this problem with Otterbox Defender case.
    https://discussions.apple.com/message/23015788
    Sounds like maybe Apple just needs to make the CC swipe button a little bigger.

  • Problem with control hints and date formatting

    Hi,
    I have a Date attribute with a control hint 'dd.MM.yyyy' in my EO. When the user browse through the data all date values have 4 digits. But when a lazy user changes a date value to e.g. 12.12.04, the new value is stored as 12.12.0004. This is correct Java behavior.
    When I change my control hint to 'dd.MM.yy', the lazy user can enter 12.12.04, which is stored as 12.12.2004. Great, but the user want to see a 4-digit year.
    My problem is that the customer wants to enter only 2 digits for the year but the application must render the date with 4 digits.
    How can I configure ADF to solve my problem?
    Does Domains help? Is there a general switch in Java or ADF witch converts 12.12.04 to 12.12.2004?
    Any hints are welcome.
    Thanks,
    Markus

    For your 2nd problem, you can create a field of type string (create a data type which has domain STRING), which has unlimited lenght. However, you can only have 3 of these fields in your table.
    I think this will solve the # problem too.
    Regards,
    Valter Oliveira.

  • Problem with control panel in vista on gx620

    My friend and i who just recently both bought the MSi gx620 notebook have a very strange problem. After a short while some of the objects in the control panel have become not functional. Things that does not worl is:
    Windows Update
    Windows power control
    the window where you change desktop resolution and background image
    User control
    and some others
    the thing it does it that it seems to open an explorer window but then immidiately closes it again.
    Some of the things in the control panel still works such as device manger and other things.
    We suspect that it might have to do with some of the updates vista downloads and installs but we do not know which one, have anyone else had this problem or have any idea on how to solve it?

    got exactly the same problem on my gx 720. I have tried to reinstalled c drive  which helped until i tried either to update windows or install a new program.
    Im considering sending the notebook to maintainance!
    Patrick

  • Problem with controls refresh

    Hi,
    I need help with multiple controls refresh.  There must be something I don't grasp with air development because I have multuple refresh problems in my app. 
    I try to assign values to a list of DropDownList controls.  I do this action in the TreeChanged event of the Tree control (use as menu).  When the event occure, at first it display the result but if I change my Tree selection and come back, all control will not display any values.  Then if I change my menu selection and come back, all will be displayed perfect.  So my problem does not seems to be code related, there is no bug and a trace showed me that the same pice of code is used with or without the display problem.  I really need help with this 'cause it make the application unsusable or verry unpleasent ... 
    Here is the sreucture of my form ...
    <s:Panel width="100%" height="100%" id="pnlDashConfiguration"  doubleClickEnabled="true" doubleClick="util.ScreenShot(event, pnlDashConfiguration)" contentBackgroundColor="#FFFFFF" chromeColor="#CCCCCC" title="Configuration">
      <mx:HDividedBox width="100%" height="100%">
       <mx:Canvas width="250" height="100%" backgroundColor="#FFFFFF" id="CanvasInfo">
        <s:Panel title="Liste" left="8" top="8" bottom="8" right="8">
         <mx:Tree id="TreeConfig" dataProvider="{TreeConfiguration}" showRoot="false" labelField="@label" change="DashConfigurationTreeChanged(event)" width="100%" height="100%" textAlign="left"></mx:Tree>
        </s:Panel>
       </mx:Canvas>
       <mx:Canvas  width="100%" height="100%" backgroundColor="#FFFFFF"  id="CanvasDetail">
        <s:Panel title="Détail" id="pnlConfigDetail" left="8" top="8" right="8" bottom="8">
         <s:layout>
          <s:BasicLayout/>
         </s:layout>
         <mx:ViewStack id="vsConfig"  width="100%" height="100%" creationPolicy="all">
          <s:NavigatorContent label="paneDefaultTamis" width="100%" height="100%" id="vsnTamis">
           <s:Scroller width="100%"  height="100%"  left="8" right="8" top="8">
           <s:HGroup width="100%"  height="100%">
            <s:Panel width="380" height="325" id="pnlConfigurationAsphalte" title="Enrobés" left="396" top="8">
             <s:TileGroup horizontalAlign="left" requestedRowCount="10" orientation="columns" requestedColumnCount="5" horizontalGap="-50" textAlign="center" id="GroupTamis" left="8" top="8">
              <s:Label id="txtTamis01" text="Tamis 1" verticalAlign="middle"/>
              <s:Label id="txtTamis02" text="Tamis 2" verticalAlign="middle"/>
              <s:Label id="txtTamis03" text="Tamis 3" verticalAlign="middle"/>
              <s:Label id="txtTamis04" text="Tamis 4" verticalAlign="middle"/>
              <s:Label id="txtTamis05" text="Tamis 5" verticalAlign="middle"/>
              <s:Label id="txtTamis06" text="Tamis 6" verticalAlign="middle"/>
              <s:Label id="txtTamis07" text="Tamis 7" verticalAlign="middle"/>
              <s:Label id="txtTamis08" text="Tamis 8" verticalAlign="middle"/>
              <s:Label id="txtTamis09" text="Tamis 9" verticalAlign="middle"/>
              <s:Label id="txtTamis10" text="Tamis 10" verticalAlign="middle"/>
              <s:DropDownList id="ddConfigTamis01" labelField="Standard" change="CheckTamisUniqueSelection(1, ddConfigTamis01);DisplayConfigurationSave();" ></s:DropDownList>
              <s:DropDownList id="ddConfigTamis02" labelField="Standard" change="CheckTamisUniqueSelection(2, ddConfigTamis02);DisplayConfigurationSave();"></s:DropDownList>
              <s:DropDownList id="ddConfigTamis03" labelField="Standard" change="CheckTamisUniqueSelection(3, ddConfigTamis03);DisplayConfigurationSave();"></s:DropDownList>
              <s:DropDownList id="ddConfigTamis04" labelField="Standard" change="CheckTamisUniqueSelection(4, ddConfigTamis04);DisplayConfigurationSave();"></s:DropDownList>
              <s:DropDownList id="ddConfigTamis05" labelField="Standard" change="CheckTamisUniqueSelection(5, ddConfigTamis05);DisplayConfigurationSave();"></s:DropDownList>
              <s:DropDownList id="ddConfigTamis06" labelField="Standard" change="CheckTamisUniqueSelection(6, ddConfigTamis06);DisplayConfigurationSave();"></s:DropDownList>
              <s:DropDownList id="ddConfigTamis07" labelField="Standard" change="CheckTamisUniqueSelection(7, ddConfigTamis07);DisplayConfigurationSave();"></s:DropDownList>
              <s:DropDownList id="ddConfigTamis08" labelField="Standard" change="CheckTamisUniqueSelection(8, ddConfigTamis08);DisplayConfigurationSave();"></s:DropDownList>
              <s:DropDownList id="ddConfigTamis09" labelField="Standard" change="CheckTamisUniqueSelection(9, ddConfigTamis09);DisplayConfigurationSave();"></s:DropDownList>
              <s:DropDownList id="ddConfigTamis10" labelField="Standard" change="CheckTamisUniqueSelection(10, ddConfigTamis10);DisplayConfigurationSave();"></s:DropDownList>
              <s:Label  id="txtSpace01" text=""/>
              <s:Label  id="txtSpace02" text=""/>
              <s:Label  id="txtSpace03" text=""/>
              <s:Label  id="txtSpace04" text=""/>
              <s:Label  id="txtSpace05" text=""/>
              <s:Label  id="txtSpace06" text=""/>
              <s:Label  id="txtSpace07" text=""/>
              <s:Label  id="txtSpace08" text=""/>
              <s:Label  id="txtSpace09" text=""/>
              <s:Label  id="txtSpace10" text=""/>
              <s:Label  id="txtTamis11" text="Tamis 11" verticalAlign="middle"/>
              <s:Label  id="txtTamis12" text="Tamis 12" verticalAlign="middle"/>
              <s:Label  id="txtTamis13" text="Tamis 13" verticalAlign="middle"/>
              <s:Label  id="txtTamis14" text="Tamis 14" verticalAlign="middle"/>
              <s:Label  id="txtTamis15" text="Tamis 15" verticalAlign="middle"/>
              <s:Label  id="txtTamis16" text="Tamis 16" verticalAlign="middle"/>
              <s:Label  id="txtTamis17" text="Tamis 17" verticalAlign="middle"/>
              <s:Label  id="txtTamis18" text="Tamis 18" verticalAlign="middle"/>
              <s:Label  id="txtTamis19" text="Tamis 19" verticalAlign="middle"/>
              <s:Label  id="txtTamis20" text="Tamis 20" verticalAlign="middle"/>
              <s:DropDownList id="ddConfigTamis11" labelField="Standard" change="CheckTamisUniqueSelection(11, ddConfigTamis11);DisplayConfigurationSave();"></s:DropDownList>
              <s:DropDownList id="ddConfigTamis12" labelField="Standard" change="CheckTamisUniqueSelection(12, ddConfigTamis12);DisplayConfigurationSave();"></s:DropDownList>
              <s:DropDownList id="ddConfigTamis13" labelField="Standard" change="CheckTamisUniqueSelection(13, ddConfigTamis13);DisplayConfigurationSave();"></s:DropDownList>
              <s:DropDownList id="ddConfigTamis14" labelField="Standard" change="CheckTamisUniqueSelection(14, ddConfigTamis14);DisplayConfigurationSave();"></s:DropDownList>
              <s:DropDownList id="ddConfigTamis15" labelField="Standard" change="CheckTamisUniqueSelection(15, ddConfigTamis15);DisplayConfigurationSave();"></s:DropDownList>
              <s:DropDownList id="ddConfigTamis16" labelField="Standard" change="CheckTamisUniqueSelection(16, ddConfigTamis16);DisplayConfigurationSave();"></s:DropDownList>
              <s:DropDownList id="ddConfigTamis17" labelField="Standard" change="CheckTamisUniqueSelection(17, ddConfigTamis17);DisplayConfigurationSave();"></s:DropDownList>
              <s:DropDownList id="ddConfigTamis18" labelField="Standard" change="CheckTamisUniqueSelection(18, ddConfigTamis18);DisplayConfigurationSave();"></s:DropDownList>
              <s:DropDownList id="ddConfigTamis19" labelField="Standard" change="CheckTamisUniqueSelection(19, ddConfigTamis19);DisplayConfigurationSave();"></s:DropDownList>
              <s:DropDownList id="ddConfigTamis20" labelField="Standard" change="CheckTamisUniqueSelection(20, ddConfigTamis20);DisplayConfigurationSave();"></s:DropDownList>
             </s:TileGroup>
            </s:Panel>
           <s:Panel width="380" height="325" id="pnlConfigurationGranulometrie" title="Granulométrie" left="8" top="8">
            <s:TileGroup horizontalAlign="left" requestedRowCount="10" orientation="columns" requestedColumnCount="5" horizontalGap="-50" textAlign="center" id="GroupTamis0" left="8" top="8">
             <s:Label id="txtTamis0" text="Tamis 1" verticalAlign="middle"/>
             <s:Label id="txtTamis1" text="Tamis 2" verticalAlign="middle"/>
             <s:Label id="txtTamis2" text="Tamis 3" verticalAlign="middle"/>
             <s:Label id="txtTamis3" text="Tamis 4" verticalAlign="middle"/>
             <s:Label id="txtTamis4" text="Tamis 5" verticalAlign="middle"/>
             <s:Label id="txtTamis5" text="Tamis 6" verticalAlign="middle"/>
             <s:Label id="txtTamis6" text="Tamis 7" verticalAlign="middle"/>
             <s:Label id="txtTamis7" text="Tamis 8" verticalAlign="middle"/>
             <s:Label id="txtTamis8" text="Tamis 9" verticalAlign="middle"/>
             <s:Label id="txtTamis9" text="Tamis 10" verticalAlign="middle"/>
             <s:DropDownList id="ddConfigTamisGran01" labelField="Standard" valueCommit="ddConfigTamisvalidHandler(event, ddConfigTamisGran01)" change="CheckTamisUniqueSelectionGran(1, ddConfigTamisGran01);DisplayConfigurationSave();"></s:DropDownList>
             <s:DropDownList id="ddConfigTamisGran02" labelField="Standard" valueCommit="ddConfigTamisvalidHandler(event, ddConfigTamisGran02)" change="CheckTamisUniqueSelectionGran(2, ddConfigTamisGran02);DisplayConfigurationSave();"></s:DropDownList>
             <s:DropDownList id="ddConfigTamisGran03" labelField="Standard" valueCommit="ddConfigTamisvalidHandler(event, ddConfigTamisGran03)" change="CheckTamisUniqueSelectionGran(3, ddConfigTamisGran03);DisplayConfigurationSave();"></s:DropDownList>
             <s:DropDownList id="ddConfigTamisGran04" labelField="Standard" valueCommit="ddConfigTamisvalidHandler(event, ddConfigTamisGran04)" change="CheckTamisUniqueSelectionGran(4, ddConfigTamisGran04);DisplayConfigurationSave();"></s:DropDownList>
             <s:DropDownList id="ddConfigTamisGran05" labelField="Standard" valueCommit="ddConfigTamisvalidHandler(event, ddConfigTamisGran05)" change="CheckTamisUniqueSelectionGran(5, ddConfigTamisGran05);DisplayConfigurationSave();"></s:DropDownList>
             <s:DropDownList id="ddConfigTamisGran06" labelField="Standard" valueCommit="ddConfigTamisvalidHandler(event, ddConfigTamisGran06)" change="CheckTamisUniqueSelectionGran(6, ddConfigTamisGran06);DisplayConfigurationSave();"></s:DropDownList>
             <s:DropDownList id="ddConfigTamisGran07" labelField="Standard" valueCommit="ddConfigTamisvalidHandler(event, ddConfigTamisGran07)" change="CheckTamisUniqueSelectionGran(7, ddConfigTamisGran07);DisplayConfigurationSave();"></s:DropDownList>
             <s:DropDownList id="ddConfigTamisGran08" labelField="Standard" valueCommit="ddConfigTamisvalidHandler(event, ddConfigTamisGran08)" change="CheckTamisUniqueSelectionGran(8, ddConfigTamisGran08);DisplayConfigurationSave();"></s:DropDownList>
             <s:DropDownList id="ddConfigTamisGran09" labelField="Standard" valueCommit="ddConfigTamisvalidHandler(event, ddConfigTamisGran09)" change="CheckTamisUniqueSelectionGran(9, ddConfigTamisGran09);DisplayConfigurationSave();"></s:DropDownList>
             <s:DropDownList id="ddConfigTamisGran10" labelField="Standard" valueCommit="ddConfigTamisvalidHandler(event, ddConfigTamisGran10)" change="CheckTamisUniqueSelectionGran(10, ddConfigTamisGran10);DisplayConfigurationSave();"></s:DropDownList>
             <s:Label  id="txtSpace0" text=""/>
             <s:Label  id="txtSpace1" text=""/>
             <s:Label  id="txtSpace2" text=""/>
             <s:Label  id="txtSpace3" text=""/>
             <s:Label  id="txtSpace4" text=""/>
             <s:Label  id="txtSpace5" text=""/>
             <s:Label  id="txtSpace6" text=""/>
             <s:Label  id="txtSpace7" text=""/>
             <s:Label  id="txtSpace8" text=""/>
             <s:Label  id="txtSpace9" text=""/>
             <s:Label  id="txtTamis21" text="Tamis 11" verticalAlign="middle"/>
             <s:Label  id="txtTamis22" text="Tamis 12" verticalAlign="middle"/>
             <s:Label  id="txtTamis23" text="Tamis 13" verticalAlign="middle"/>
             <s:Label  id="txtTamis24" text="Tamis 14" verticalAlign="middle"/>
             <s:Label  id="txtTamis25" text="Tamis 15" verticalAlign="middle"/>
             <s:Label  id="txtTamis26" text="Tamis 16" verticalAlign="middle"/>
             <s:Label  id="txtTamis27" text="Tamis 17" verticalAlign="middle"/>
             <s:Label  id="txtTamis28" text="Tamis 18" verticalAlign="middle"/>
             <s:Label  id="txtTamis29" text="Tamis 19" verticalAlign="middle"/>
             <s:Label  id="txtTamis30" text="Tamis 20" verticalAlign="middle"/>
             <s:DropDownList id="ddConfigTamisGran11" labelField="Standard" valueCommit="ddConfigTamisvalidHandler(event, ddConfigTamisGran11)"  change="CheckTamisUniqueSelectionGran(11, ddConfigTamisGran11);DisplayConfigurationSave();"></s:DropDownList>
             <s:DropDownList id="ddConfigTamisGran12" labelField="Standard" valueCommit="ddConfigTamisvalidHandler(event, ddConfigTamisGran12)"  change="CheckTamisUniqueSelectionGran(12, ddConfigTamisGran12);DisplayConfigurationSave();"></s:DropDownList>
             <s:DropDownList id="ddConfigTamisGran13" labelField="Standard" valueCommit="ddConfigTamisvalidHandler(event, ddConfigTamisGran13)"  change="CheckTamisUniqueSelectionGran(13, ddConfigTamisGran13);DisplayConfigurationSave();"></s:DropDownList>
             <s:DropDownList id="ddConfigTamisGran14" labelField="Standard" valueCommit="ddConfigTamisvalidHandler(event, ddConfigTamisGran14)"  change="CheckTamisUniqueSelectionGran(14, ddConfigTamisGran14);DisplayConfigurationSave();"></s:DropDownList>
             <s:DropDownList id="ddConfigTamisGran15" labelField="Standard" valueCommit="ddConfigTamisvalidHandler(event, ddConfigTamisGran15)"  change="CheckTamisUniqueSelectionGran(15, ddConfigTamisGran15);DisplayConfigurationSave();"></s:DropDownList>
             <s:DropDownList id="ddConfigTamisGran16" labelField="Standard" valueCommit="ddConfigTamisvalidHandler(event, ddConfigTamisGran16)"  change="CheckTamisUniqueSelectionGran(16, ddConfigTamisGran16);DisplayConfigurationSave();"></s:DropDownList>
             <s:DropDownList id="ddConfigTamisGran17" labelField="Standard" valueCommit="ddConfigTamisvalidHandler(event, ddConfigTamisGran17)"  change="CheckTamisUniqueSelectionGran(17, ddConfigTamisGran17);DisplayConfigurationSave();"></s:DropDownList>
             <s:DropDownList id="ddConfigTamisGran18" labelField="Standard" valueCommit="ddConfigTamisvalidHandler(event, ddConfigTamisGran18)"  change="CheckTamisUniqueSelectionGran(18, ddConfigTamisGran18);DisplayConfigurationSave();"></s:DropDownList>
             <s:DropDownList id="ddConfigTamisGran19" labelField="Standard" valueCommit="ddConfigTamisvalidHandler(event, ddConfigTamisGran19)"  change="CheckTamisUniqueSelectionGran(19, ddConfigTamisGran19);DisplayConfigurationSave();"></s:DropDownList>
             <s:DropDownList id="ddConfigTamisGran20" labelField="Standard" valueCommit="ddConfigTamisvalidHandler(event, ddConfigTamisGran20)"  change="CheckTamisUniqueSelectionGran(20, ddConfigTamisGran20);DisplayConfigurationSave();"></s:DropDownList>
            </s:TileGroup>
           </s:Panel>
           </s:HGroup>
           </s:Scroller>
          </s:NavigatorContent>
         </mx:ViewStack>
         <Comp_MenuBar:Menu_Save y="-28" right="4" id="btnConfigurationSave" visible="false" click="ConfigurationSave();">
         </Comp_MenuBar:Menu_Save>
        </s:Panel>
       </mx:Canvas>
      </mx:HDividedBox>
    </s:Panel>
    I also include 2 pictures of my form.  The populated on is when it is working and the other is when the selection did not showed up.
          I put these 3 lines before assigning the values to the controls and it work.
         invalidateProperties();
         invalidateDisplayList();
         validateNow();
         I don't really get why I need to put the lines before I change the values instead of after the change.  I would like to understand this if someone can tell me but in the mean time this fixed my issue.
    Thanks

    try myList.invalidateList();

  • Multiple problems with control and screen sharing

    Hello,
    First of all, I am having a weird problem while connected to a G5 Xserve that is running OS 10.4.5 and ARD version 3.2.1. When controlling the screen, I am unable to type. It only types the character "a" or "A" whenever I type any letter. Numbers are fine. The kicker here is if I use a different vpn server connection into the same machine (vine server), I can type fine. Has anyone experienced this problem?
    My other issue is when attempting to connect to some clients using ARD, I cannot see thier screen. I receive an error message stating that Authentication failed. I can perform all other functions with ARD on those machines... but when trying to see thier screen... nothing. I can actually share my screen with them successfully though. They are not running any third-party vnc server which was my first thought.
    Thank you for any help you can provide.
    - Ken

    I got all mine working without using root or going to the machines.
    ssh into them and remove com.apple.RemoteManagement.plist with
    rm /Library/Preferences/com.apple.RemoteManagement.plist

  • MSI P55A-G55 + i5 760 (problem with Control Centre)

    Hi guys,
    Anyone gotten the control centre to work?
    My does not detect any CPU info at all.

    Quote from: mortego on 04-October-10, 09:13:08
    Hi guys,
    Anyone gotten the control centre to work?
    My does not detect any CPU info at all.
    Not working for me as well.
    Mortego does option "Restore on AC power loss" works for you? Try to switch off your PSU on back on it and power it after 1-2 seconds. I`m really interested in if only I have this problem as support says or not. In my country my reseller refused to accept RMA because they told me that it`s bios bug and I should wait for updates. It`s frustrating that it restart my PC rather than shutdown it completely.

  • Central 5.7 problem with controling multiple instances

    I have an installation of Central 5.7 pro running 12 instances on Windows 2003 server 32 bit and have noticed that all instances don't always come up when the machine is rebooted or service started. Central also doesnt handle the right instance when stoping and starting different instances even it is choosed the right way. Example: I select instance of central nr 8 for control and do "shot down central" for the instance 8, it may stop instance 10 etc. !? then start central on the same instance it says "also running" ? It seems that it doesnt have the right control which instance should be active.

    I've compared the jfmerge.ini, jfserver.ini and jfserver.jmd in the new server with the current server and most of the properties looks similar. I've tried the below things but we end-up with the same blank page issue with one Character.
    1)  We've copied the jfserver.ini file from the current server ( central server 5.5) to the new server (central server 5.7 ) and imported the transaction file.
    2)  Compiled the templates in Output Designer 5.7 and imported the same into forms directory.
    3)  Used the command line program options to load the template during calling -q and -afx.
    We do stop and start adobe server for each change. Could you please tell me what are all the settings thats needs to be considered during the migration of Adobe Output Designer 5.5 to Adobe Output Designer 5.7 ?
    Its Urgent.. Thanks!!

  • Problem with Controlling Volume on Ipod Shuffle 3rd Generation

    I recently bought new headphones for my Ipod shuffle (3rd gen) and I can't control the volume. The + and - buttons on the headphones don't seem to work, I heard my Ipod might need to be reset? Other people have experienced this problem when connecting there headphones to the Ipod shuffle, so I am unsure if the headphones are actually the problem.  Any advice on how to reset the Ipod shuffle and/or be able to control volume?

    Try restoring to factory settings. Connect to iTunes, click on your iPod under the DEVICES section, click Restore. When asked, click Set up as New iPod.
    I had this same problem the other day. The Apple Store said that if a restore doesn't fix it, then their solution is to replace the iPod. They have seen this issue before but it doesn't seem to be curable by software fixes. It usually happens on older devices.

  • Problems with controls after upgrading to ipod version 1.1

    i just downloaded new software for my ipod shuffle (version 1.1) and now my earbud control does not seem to be working (no volumne control, no forward or reverse - no control whatsoever). it was working fine before i connected to charge the unit. i was asked to upgrade to a new version of the program (which I did). does anyone have any idea what has happened and what can fix it? thx.

    Yes Paul I have, but no solution. I cannot send email. My ISP uses a smtp mail server for sending and It will not log in. Have had ISP on phone and checked all settings. Can only put it down to Mavericks.
    It worked OK for a week after upgrading then stopped. So now having to use web mail to send email.
    Strange thing is I receive mail OK, just cant send.

  • Problem with control hints and Struts tags

    hi all. i'm using jdev 10.1.2 and JSP's. I was trying to set the format mask for a couple of number fields and ran into some trouble because; "JSP 1.2 prevents control hints from being used to set input element's display properties in a Struts input form". Has anyone found a way around this.
    thanks

    in your code, are you using the name attribute?
    that's required:
    http://e-docs.bea.com/wlp/docs70/jsp/navigat.htm#999781
    there are examples of this tag in use...
    c:/bea/weblogic700/samples/portal/sampleportalDomain/beaApps/sampleportal/sampleportal/registration/new_user.jsp
    -tanya
    "Sai S Prasad" <[email protected]> wrote:
    >
    Hi,
    I am trying to populate a validatedForm text filed like this:
    <webflow:text value='<%= invoiceNumber %>' />
    I tried single and double quotes and I can't get it to work. The page
    always has
    blank value for this text field. Any suggestions are welcome. Thanks.

  • Problem with control page in menu

    hello my name is cris and my problem is that page of singlelevelmenu does not make
    scroll and exceeds the size that I have defined of the portal that is 800X600.
    i like to know to me as the portal define when a level finishes and begins following

    Add the bold...
    nav a:hover, nav a:focus, nav a:active {
        background-color: #993300;
        font-family: "PT Sans", Arial, sans-serif;

Maybe you are looking for

  • New external drive for mac and windows

    Hello, I am looking to buy a 500gb maxtor external drive. Partition it 250gb for winxp and 250gb for my imac. I am really looking to make these drives as backup drives. I currently have an old 250gb (not all used) formatted as os x entended. I use it

  • Why new Spacer Item cretaed through personalization does not appear in SSHR

    SR # 6987444.993 Customer : VIRGIN ATLANTIC LIMITED RELEASE : 11.5.10 CU 2 Patchset: FP K RUP 2 A Space Item created through Self Service Personalization Does Not Appear in Self Service HRMS Page. Responsibility : Employee Self-Service Click on "Pers

  • ADF BC/ Faces - Friendly HTTP-500's

    Hi, Is there any way to trap JBO's that cause HTTP 500's? I have a facesMessage component on my page, but occasionally I get exceptions that render just the Internal Server Error and full stack trace to the user. Is there any way to direct the user t

  • IWeb Project File

    Hi, I recently zeroed out my hard drive to do a clean install. I've now reinstalled everything but can't seem to find the project file for iWeb. I have my old system backed up so everything that used to be there should still be available. Where does

  • Mac to PC Files and External Hard Drives?

    o.k. First want to thank all those for helping here! I have been reading and researching for all the answers but I am still confused??? I am going to give you all the information possible to allow someone to offer the best solution. I have a 6 year o