Object properties window minor "feature"

In LV 2011, when you right click on a diagram object and select "Properties", the window flashes (its front panel is updated AFTER the window is opened).

I haven't seen what you are describing.
But it does seem to me that the properties dialog is slower to load than it used to be.  I right clicked on a BD terminal for a numeric, and it took 5 seconds to load.  This was even after it had already been opened.  An object that has fewer properties to display was a bit quicker, anywhere from 1-3 seconds.  For comparison, a numeric terminal in 2009 took 7 seconds to load the first time, but 2-3 seconds at later times (but there was a lot of cursor blinking from arrow to wait to arrow to wait).

Similar Messages

  • Unable to view components in Object Browser & Properties window- Xcelsius

    Hi - I have prepared a dashboard which consits of many labels and just a few components. But as I proceed with taking more components on the dashboard ,I am unable to see the components  in the object browser and properties window (it is just visible placed on the canvas but not visible in obj browser and Property window)....can any1 suggest the reason and how to proceed ?

    HI,
    Check in the object browser, whether there is any group element. if all your components are grouped, then they will appear under that group. if you click on any component which is grouped the property window of the group will be displayed.
    if you want to see the propery of each individual component, in the object browser-- expand the node and double click the component to see its properties.
    hope this helps
    uma

  • Properties window does not open

    Hi everyone,
    the table property window of my relational diagram refuses to open. The problem seems to be related to the physical data model, and in particular to the structured type MDSYS.SDO_GEOMETRY, that seems to be there by default, but is not used by my diagram (and cannot be deleted either). In the log file I find the entry
    2011-02-21 14:25:19,542 [Thread-14] ERROR XMLTransformationManager - Unable to load object from XML: D:\temp\VDV2\VDV2\rel\9C6B6054-37FA3277E4A3\phys\D9582E4E-2ED963CB9D32\SType\seg_0\47E390DE-0671-C4B1-8428-0F45CBEE18F8.xml
    java.io.FileNotFoundException: D:\temp\VDV2\VDV2\rel\9C6B6054-37FA3277E4A3\phys\D9582E4E-2ED963CB9D32\SType\seg_0\47E390DE-0671-C4B1-8428-0F45CBEE18F8.xml (Das System kann den angegebenen Pfad nicht finden)
         at java.io.FileInputStream.open(Native Method)
         at java.io.FileInputStream.<init>(FileInputStream.java:106)
         at oracle.dbtools.crest.model.metadata.XMLToObjectTransformer.transformToObject(Unknown Source)
         at oracle.dbtools.crest.model.metadata.XMLTransformationManager.transformFromXMLToObject(Unknown Source)
         at oracle.dbtools.crest.model.metadata.XMLTransformationManager.openPhysicalModel(Unknown Source)
         at oracle.dbtools.crest.swingui.browser.BrowserPanel$80.run(Unknown Source)
    I can find the following references to the object:
    D:\temp\VDV2\VDV2\datatypes\structuredtype\seg_0\47E390DE-0671-C4B1-8428-0F45CBEE18F8.xml
    2: <StructuredType class="oracle.dbtools.crest.model.design.datatypes.StructuredType" name="SDO_GEOMETRY" id="47E390DE-0671-C4B1-8428-0F45CBEE18F8" directorySegmentName="seg_0">
    D:\temp\VDV2\VDV2\datatypes\subviews\16735978-292B-49DD-F89B-982D97E1D016.xml
    16: <OView class="oracle.dbtools.crest.swingui.datatypes.TVStructuredType" oid="47E390DE-0671-C4B1-8428-0F45CBEE18F8" otype="StructuredType" vid="B645E126-1354-AD82-7505-C25ACA751982">
    D:\temp\VDV2\VDV2\rel\9C6B6054-37FA3277E4A3\phys\D9582E4E-2ED963CB9D32\Objects.local
    3: <object objectType="SType" objectID="47E390DE-0671-C4B1-8428-0F45CBEE18F8" name="SDO_GEOMETRY" seqName="seg_0"/>
    I am quite at a loss. Any ideas how to get rid of the problem?
    Thanks in advance for any help!
    PS. Did some more research: The error message from the logfile seems to be unrelated to the recalcitrant properties window.
    To get the properties window I have to close Datamodeler down and restart it. Quite a nuisance!
    Edited by: qwe15056 on Feb 21, 2011 2:51 PM

    Hi,
    does it happen for all tables or it's related to specific set of tables (or just one table)?
    PS. Did some more research: The error message from the logfile seems to be unrelated to the recalcitrant properties window. Yes, those errors are not related to problem.
    properties dialog won't appear if there are some errors during initialization of dialog and its related to table that cause the problem. You should be able to open dialog for another table.
    It'll be great if you can find out after what changes dialog for some tables doesn't appear.
    Thanks,
    Philip

  • Custom SSIS Source: How do I make it create a new connection manager and display its properties window?

    I am writing a custom SSIS source that uses a standard SSIS Flat File Connection Manager. I have got a working UI that shows all usable connection managers in a dropdown list and allows the user to pick one. I would like to be able to have a button that
    the user can click on to create a new connection manager, and it would open the properties window for the new connection manager so it can be set up.
    Abridged code:
    Public Class MyNewSourceUI
    Implements IDtsComponentUI
    Private MetaData As IDTSComponentMetaData100
    Public Function Edit(ByVal parentWindow As IWin32Window, _
    ByVal variables As Variables, _
    ByVal connections As Connections) As Boolean _
    Implements Microsoft.SqlServer.Dts.Pipeline.Design.IDtsComponentUI.Edit
    Dim UIwin As New MyNewSourcePropertiesWindow(MetaData, connections)
    Return (UIwin.ShowDialog() = DialogResult.OK)
    End Function
    Public Sub Initialize(ByVal dtsComponentMetadata As IDTSComponentMetaData100, _
    ByVal serviceProvider As System.IServiceProvider) _
    Implements Microsoft.SqlServer.Dts.Pipeline.Design.IDtsComponentUI.Initialize
    MetaData = dtsComponentMetadata
    End Sub
    End Class
    Public Class MyNewSourcePropertiesWindow
    Inherits System.Windows.Forms.Form
    Private _metadata As IDTSComponentMetaData100
    Private _cnxions As Connections
    Public Sub New(ByVal ComponentMetaData As IDTSComponentMetaData100, ByVal connections As Connections)
    InitializeComponent()
    _metadata = ComponentMetaData
    _cnxions = connections
    ShowConnections()
    'Setup Existing Metadata '
    End Sub
    Private Sub ShowConnections()
    Me.cboConnection.Items.Clear()
    Me.cboConnection.Items.AddRange((
    From i As ConnectionManager In _cnxions _
    Where CType(i.Properties("CreationName").GetValue(i), String) = "FLATFILE" _
    AndAlso CType(i.Properties("Format").GetValue(i), String) = "Delimited" _
    Select i.Name).ToArray())
    End Sub
    Private Sub btnNewConnection_Click(ByVal sender as Object, ByVal e as System.EventArgs) Handles btnNewConnection.Click
    Dim newconn As ConnectionManager = _cnxions.Add("FLATFILE")
    ShowConnections()
    Me.cboConnection.SelectedItem = newconn.Name
    End Sub
    Private Sub btnCancel_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnCancel.Click
    Me.DialogResult = DialogResult.Cancel
    Me.Close()
    End Sub
    Private Sub btnOK_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnOK.Click
    'Store any metadata changes '
    Me.DialogResult = DialogResult.OK
    Me.Close()
    End Sub
    End Class
    That's what I've got so far. I had assumed that adding a new connection would automatically display the properties window to the user (right?). However, in my tests, what actually happens is that it creates the new source with a random GUID for a name and no
    other properties set up, and puts it in the connections pane, and that's it. Not real useful.
    Obviously, something else is required to make the properties window appear, but I can't find what it is. There's no ShowUI() member on any of the classes I have, and I haven't been able to find out the name of the UI class that's used by the flat file source.
    Does anyone know how this is done? I know it can be done, because such a button exists in the normal Flat File Source UI.

    Yes, you need to drive the UI creation. I see you create a custom connection manager, in this case on how to build its UI please refer to http://kzhendev.wordpress.com/2013/08/07/part-2-adding-a-custom-ui-to-the-connection-manager/
    Arthur My Blog

  • WYSIWYG element HTML object properties disabled

    Hi,
    In WYSIWYG element HTML object properties link is getting disabled after entering value into the element. Is there any way to make it enable even after entering value.
    Thanks & Regards
    Prasad
    Server details:
    UCM 10gR3
    Site Studio 7.7
    Unix
    verity search

    Hi,
    you have to divide the process into several steps:
    get the image tag at the caret position
    read it' properties
    bring up a window with ooptions to change those properties
    remove the existing image tag
    place a new image tag with the new properties at the caret position
    alternately you can change the properties of the existing image tag.
    There a reloads of threads in this forum about how to change tag properties or the tag structure of a HTML document, so I omit this. Please try to do a search for such topics in this forum.
    A GUI (Java classes ImageDialog and ImagePreview) for entering image properties is available at http://www.calcom.de/eng/dev/index.htm
    Directly changing a table's width with the mouse is more complex, because you'd have to constantly write new width properties for the table and update the document while the mouse is moved. Probably better would be to bring up a dialog window to change the table properties instead.
    Hope this helps
    Ulrich

  • Attribute does not appear in WEBUI document properties windows

    I've created a classObject using the xml parser of Ifs' WEBUI:
    <?xml version="1.0" standalone="yes"?>
    <ClassObject>
    <Name>ArquivoXsl</Name>
    <Superclass RefType="Name">Document</Superclass>
    <Description>Classe de Teste do arquivo de layout de Faturas</Description>
    <Abstract>false</Abstract>
    <Final>true</Final>
    <Attributes>
         <Attribute>
    <Name>usuarioCadastro</Name>
    <Datatype>String</Datatype>
    <Required>true</Required>
    </Attribute>
         <Attribute>
    <Name>operadora</Name>
    <Datatype>String</Datatype>
    <Required>true</Required>
    </Attribute>
         <Attribute>
    <Name>modeloFatura</Name>
    <Datatype>String</Datatype>
    <Required>true</Required>
    </Attribute>
         <Attribute>
    <Name>dataInicioValidade</Name>
    <Datatype>Long</Datatype>
    <Required>true</Required>
    </Attribute>
         <Attribute>
    <Name>dataFimValidade</Name>
    <Datatype>Long</Datatype>
    <Required>false</Required>
    </Attribute>
    </Attributes>
    </ClassObject>
    After that we've had to update the class with two new attibutes (String, not required) using the iFS Manager. But now, when i select a document (ArquivoXsl) the properties window in WEBUI does not show that attribute.
    is there a bug in the iFS 9.0.1 version.
    If i create a new class with all these attributes, the WEBUI show them all, even they've being null valued.
    Thanks anyone!

    Hi
    Even after making the attributes as nav attribute in Master data they ought to be marked as navigation attribute on the infoprovider on which you are creating the report.
    If the report is based on the cube that uses company code then you need to check it as navigational att in the cube and incase you have a multiprovider at the top of the cube then you again need to check this attribute as navigational in the multiprovider too.
    Thus by making comp_code_zregion as nav att in the master data you will not see it in the report you need to make it as nav in the report as well as multiprovider incase the report is based on multiprovider
    Thanks
    Puneet

  • The properties window does not open properly for bookmarks.

    When I go to Bookmarks > Bookmark This Page, the window that opens should have the information filled in, correct? Because mine is always blank. The bookmark does get made if I click Done, even with everything looking blank. Also, when I right-click on a bookmark & select Properties, the Properties window that opens only shows the blue bar at the top, nothing else. I can't expand the window. It's been doing this since the previous version that I had. Also, keep in mind that I'm a computer technician, so I know what I'm doing.

    Hi,
    does it happen for all tables or it's related to specific set of tables (or just one table)?
    PS. Did some more research: The error message from the logfile seems to be unrelated to the recalcitrant properties window. Yes, those errors are not related to problem.
    properties dialog won't appear if there are some errors during initialization of dialog and its related to table that cause the problem. You should be able to open dialog for another table.
    It'll be great if you can find out after what changes dialog for some tables doesn't appear.
    Thanks,
    Philip

  • In Object Properties dialog box, modify "tab path"...

    For FrameMaker versions up to and including 8 (and I suspect 9).
    Select a graphic, then click in sequence
    ESC g o to open the
    Object Properties dialog box. By default the dialog box opens with the insertion point in the
    Width text entry area.
    Now press TAB four times: The insertion point moves sequentially to the
    Height,
    Top,
    Left, and then
    Color text entry areas.
    I wish the last movement, to the
    Color text entry area, was replaced with movement to the
    Percent text entry area. This would enable me to use the keyboard to efficiently configure the size, position, and scaling of a graphic.
    As it is, I virtually never need to select the graphic's
    Color text entry area and the movement of the insertion point to that essentially useless tool drives me crazy: It makes me TAB all the way 'round the dialog box or grab the pointing device to get it to the
    Percent text entry area...
    Cheers,
    Riley

    Odd... What does your properties dialog look like? Can you post a screenshot of the dialog box? Also, what version of LabVIEW are you running?
    Message Edited by smercurio_fc on 06-03-2008 04:56 PM

  • Windows 8 features not working.

     I had Windows 8 pro then i upgraded to 8.1 and have noticed a problem, sometimes I cannot access any Windows 8 features. (This includes the charms bar, start button, etc.) My Windows key on my keyboard works and it brings me to my start menu but it's
    the only way I can get into it. I cannot also multitask with other apps.
    I have made a video of my problem and uploaded it on YouTube, it can be watched here: https://www.youtube.com/watch?v=x9Q4-V5JcZA&feature=youtu.be
    I hope somebody can help me out with my problem here.

     I had Windows 8 pro then i upgraded to 8.1 and have noticed a problem, sometimes I cannot access any Windows 8 features. (This includes the charms bar, start button, etc.) My Windows key on my keyboard works and it brings me to my start menu but it's
    the only way I can get into it. I cannot also multitask with other apps.
    I have made a video of my problem and uploaded it on YouTube, it can be watched here: https://www.youtube.com/watch?v=x9Q4-V5JcZA&feature=youtu.be
    I hope somebody can help me out with my problem here.
    you probably will have to refresh Windows to get it back to normal
    install all updates first before installing apps
    Corsair Carbide 300R with window
    Corsair TX850V2 70A@12V
    Asus M5A99FX PRO R2.0 CFX/SLI
    AMD Phenom II 965 C3 Black Edition @ 4.0 GHz
    G.SKILL RipjawsX DDR3-2133 8 GB
    EVGA GTX 6600 Ti FTW Signature 2(Gk104 Kepler)
    Asus PA238QR IPS LED HDMI DP 1080p
    ST2000DM001 & Windows 8.1 Enterprise x64
    Microsoft Wireless Desktop 2000
    Wacom Bamboo CHT470M
    Place your rig specifics into your signature like I have, makes it 100x easier to understand!
    Hardcore Games Legendary is the Only Way to Play!

  • File Server Resource Manager will not load WMI Objects on Windows 8.0/8.1 Preview with Hyper-V and Server Tools Loaded

    Hi Folks,
    I have a problem getting "File Server Resource Manager" to start properly because WMI objects are not loading??? I don't understand this at all because I am able to access them with other Apps, etc. I have been over my Services list as well but
    have not yet discovered which Service turns on/off "File Server Resource Manager". I have looked in Windows\System32\ and I can not find SrmSvc. I found other Srm's there though. I also found the FSRM Snapin which generates the Figure below but I
    can not find it in the WMI Browser. I believe the Firewall is OKAY since I have been over that thoroughly. I do have the Server Tools Installed for Windows 8.0 or Windows 8.1 Clients as well as the Windows Updates applied, which is where I got "File Server
    Resource Manager" in the first place. I have had WMI and Powershell 3.0 Package, installed since Windows 7 but I run a repair on them anyway.
    I have read through "File Server Resource Manager could not load WMI objects on Windows Server 2012
    Article ID: 2831687" but since I don't seem to have SrmSvc the solution doesn't help me. I haven't been able to find a similar one for the Windows Client.
    If there is anything you could share on this problem I would be much obliged.
    Thanks again,
    Crysta
    PhotM Phantom of the Mobile

    Hello,
    The Windows Desktop Perfmon and Diagnostic tools forum is to discuss performance monitor (perfmon), resource monitor (resmon), and task manager, focusing on HOW-TO, Errors/Problems, and usage scenarios.
    As the question is off topic here, I am moving it to the
    Where is the Forum... forum.
    Karl
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer.
    My Blog: Unlock PowerShell
    My Book:
    Windows PowerShell 2.0 Bible
    My E-mail: -join ('6F6C646B61726C406F75746C6F6F6B2E636F6D'-split'(?<=\G.{2})'|%{if($_){[char][int]"0x$_"}})

  • Editing metadata in the file properties window

    Hi,
    I’m using Win XP SP3 on a “normal” Desktop-PC. Since my problem is not connected to hardware I think that description is enough but I do not know which software information is required. So you may ask. Important is maybe that I am running Adobe Acrobat and Reader simultaneously on the same machine.
    The problem: I always changed and edited some of the metadata of my PDF files by bringing up the file properties window of the PDF (right click - properties). Next to the “General”-Tab is the “PDF”-Tab. You can see the title, author, topic, dates and PDF-Version of the document. The first four fields where always editable textboxes. I get used to put in some comments and other important information because I didn’t want to use any tool. Now the complete window is locked. Is this because of the new 9.3.3 Reader update? I updated so many times and never anything like this happened. How can I turn back to the old behavior?
    I do not want to edit those information in Acrobat by choosing File and then propertis because it takes much more time because i have to open the file (if it is one its fine) but if there are more where the same info shall be in I'd like to use the built in function of the properties sheet in windows.
    With kind regards
    DragJo

    At first I asked that question by mistake in the wrong forum so I put in it here. But it has been answered there http://forums.adobe.com/message/2973589
    so I mark this as answered, too.

  • Problem with Page properties window

    In Page properties window,the window is too small some part
    are invisible,example: in apearance i cant access right
    margin,bottom margin,page font exept if i use tab,but i cant see
    what i type in the box.Where I can post picture coz picture is
    milion words?Please help me.

    Page Properties is not resizable. Sounds like the user has
    their system
    fonts set to large.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "SnakEyez02" <[email protected]> wrote in
    message
    news:fl1qqc$p7o$[email protected]..
    > Just upload the picture to some web space and post a
    link.
    >
    > If I am understanding your question correctly though,
    can you not just
    > drag the bottom right corner to make the window bigger?

  • Spry Menu Bar vs Properties Window

    Dreamweaver CS4, Mac OSX 10.6.4
    Not sure how I did it, but when I add a Spry Menu Bar from the Insert>Spry>Spry Menu Bar, I first get the correct dialog, asking Horizontal or Vertical (I choose Horizontal), but it comes up with a Menu Bar with Item 1, Item 2, Item 3, and Item 4. (No further dialog shows up, and Properties Window does NOT change)
    How does one add a Item 5, or sub-menus???
    Every video/help doc refers going to Window>Properties and adding it there. The only problem is, my Properties window looks nothing like the tutorials!!!
    Again, once I choose Horizontal or Vertical, the menu appears, but the Properties window does not change.
    If I click in the same Frameset pane as the menu I just created, it looks like:
    And if I click on a Menu item it looks like:
    It is supposed to look something like:
    Where the Properties window shows the Menu Bar. How do you get to that?
    I've tried reseting Dreamweaver by following the support docs, even resetting the site, and still no luck. The very first time I tried this, the Properties window did show the correct window, but I messed that doc up and trashed it. I tried starting over, and now I have the problem listed above.
    Any help would be greatly appreciated! Thanks!

    vw2ureg wrote:
    I assume that you are working in design view in which case you should click the blue part of the menu to get the correct properties window
    I hope this helps.
    Ben
    Ben, I would be fine if I just could see that blue area! For some reason it will not come up, and that is my problem!  -Bill

  • Changing Buttons in Gallery Folder not Showing Up in Properties Window

    If you change the button size of custom buttons with Photoshop and replace the files in your Gallery folder, how to you get rid of the old buttons in Captivate's properties window?

    I have the same problem with the bmp-files in the gallery captions folder. I made some tests and one was, deleting the caption folder in the gallery. The captions are still accessable in the programm, even in new projects. So where are the gallery files really stored? Any idea?

  • The Windows 7 pop up screen at the bottom toolbar does not function with Firefox 4. Instead there are now tabs on top. The Windows 7 feature was handy because one could easily see which pages you're working on. How can I fix this?

    One of the Windows 7 features is the pop up box icon at the bottom toolbar which displays which pages are open when scrolling over it. After installing Firefox 4 this function does not work anymore, instead it was replaced by Firefox tabs above.

    I believe you are talking about taskbar previews. To enable them you need to change a hidden preference.
    # Type '''about:config''' into the location bar and press enter
    # Accept the warning message that appears, you will be taken to a list of preferences
    # Locate the preference '''browser.taskbar.previews.enable''' and double-click on it to change its value to '''true'''

Maybe you are looking for