Flex Tabbing Issues

I'm having a problem with tabbing where one of two things
will happen on my popup windows. I have a mixture of controls such
as text fields, radio buttons, buttons, etc. on them. The first
issue is the last tab index I have set will always be skipped. The
tabs will work correctly, but when it gets to the last button I
have a tab index set on, it will skip back to the first 'tabIndex'.
The second problem is when it gets to the last 'tabIndex', Flex
seems to be giving the focus back to the browser (Only in IE) and I
will have to tab through the URL and search box before getting back
to my first tab index. Here is some sample code that is producing
these two problems.
<mx:VBox id="mainVBox" verticalGap="5" paddingBottom="10"
width="100%">
<mx:VBox width="100%">
<mx:HBox id="voucherLine1Container" paddingLeft="5"
paddingRight="5" width="100%" includeInLayout="true"
visible="true">
<mx:Text id="voucher1Label" styleName="zoneLabelText"
paddingTop="3" text="Line 1:"/>
<commoncontrols:GreatlandTextInput
id="voucher1"
focusEnabled="true"
tabIndex="1"
styleName="zoneEditorText"
width="100%"/>
<mx:Button id="voucher1Clear" label="Clear" click="{
voucher1.text = ''; }" styleName="topButton" useHandCursor="true"
buttonMode="true" tabIndex="2"/>
</mx:HBox>
<mx:HBox id="voucherLine2Container" paddingLeft="5"
paddingRight="5" width="100%" includeInLayout="true"
visible="true">
<mx:Text id="voucher2Label" styleName="zoneLabelText"
paddingTop="3" text="Line 2:"/>
<commoncontrols:GreatlandTextInput
id="voucher2"
tabIndex="3"
width="100%"
styleName="zoneEditorText"/>
<mx:Button label="Clear" click="{ voucher2.text = ''; }"
styleName="topButton" useHandCursor="true" buttonMode="true"
tabIndex="4"/>
</mx:HBox>
</mx:VBox>
<mx:HBox id="buttonBar" paddingLeft="5" paddingRight="5"
width="100%">
<mx:Button label="Update" styleName="topButton"
click="updateZone()" useHandCursor="true" buttonMode="true"
tabIndex="5"/>
<mx:Button label="Close" focusOut="voucher1.setFocus();"
styleName="topButton" click="removePopUp()" useHandCursor="true"
buttonMode="true" tabIndex="6"/>
<mx:Button label="Help" styleName="topButton"
tabIndex="7" click="openHelpfulHints(new
HelpEvent(HelpEvent.HELP_SELECTED,ApplicationConstants.GS_FILE_NAME,ApplicationConstants. GS_FILE_NAME))"
useHandCursor="true" buttonMode="true" />
</mx:HBox>
</mx:VBox>

I'm having a problem with tabbing where one of two things
will happen on my popup windows. I have a mixture of controls such
as text fields, radio buttons, buttons, etc. on them. The first
issue is the last tab index I have set will always be skipped. The
tabs will work correctly, but when it gets to the last button I
have a tab index set on, it will skip back to the first 'tabIndex'.
The second problem is when it gets to the last 'tabIndex', Flex
seems to be giving the focus back to the browser (Only in IE) and I
will have to tab through the URL and search box before getting back
to my first tab index. Here is some sample code that is producing
these two problems.
<mx:VBox id="mainVBox" verticalGap="5" paddingBottom="10"
width="100%">
<mx:VBox width="100%">
<mx:HBox id="voucherLine1Container" paddingLeft="5"
paddingRight="5" width="100%" includeInLayout="true"
visible="true">
<mx:Text id="voucher1Label" styleName="zoneLabelText"
paddingTop="3" text="Line 1:"/>
<commoncontrols:GreatlandTextInput
id="voucher1"
focusEnabled="true"
tabIndex="1"
styleName="zoneEditorText"
width="100%"/>
<mx:Button id="voucher1Clear" label="Clear" click="{
voucher1.text = ''; }" styleName="topButton" useHandCursor="true"
buttonMode="true" tabIndex="2"/>
</mx:HBox>
<mx:HBox id="voucherLine2Container" paddingLeft="5"
paddingRight="5" width="100%" includeInLayout="true"
visible="true">
<mx:Text id="voucher2Label" styleName="zoneLabelText"
paddingTop="3" text="Line 2:"/>
<commoncontrols:GreatlandTextInput
id="voucher2"
tabIndex="3"
width="100%"
styleName="zoneEditorText"/>
<mx:Button label="Clear" click="{ voucher2.text = ''; }"
styleName="topButton" useHandCursor="true" buttonMode="true"
tabIndex="4"/>
</mx:HBox>
</mx:VBox>
<mx:HBox id="buttonBar" paddingLeft="5" paddingRight="5"
width="100%">
<mx:Button label="Update" styleName="topButton"
click="updateZone()" useHandCursor="true" buttonMode="true"
tabIndex="5"/>
<mx:Button label="Close" focusOut="voucher1.setFocus();"
styleName="topButton" click="removePopUp()" useHandCursor="true"
buttonMode="true" tabIndex="6"/>
<mx:Button label="Help" styleName="topButton"
tabIndex="7" click="openHelpfulHints(new
HelpEvent(HelpEvent.HELP_SELECTED,ApplicationConstants.GS_FILE_NAME,ApplicationConstants. GS_FILE_NAME))"
useHandCursor="true" buttonMode="true" />
</mx:HBox>
</mx:VBox>

Similar Messages

  • Flex Module issue with Panel

    Hello everyone. I have the following problem.
    In my application I have several modules and each of them have components CollapsableTitleWindow (extends Panel). After opening the window it is added to the container which is in the main application (CollapsableTitleWindowContainer). In these windows you can open another window (and so on).
    Now, what is the problem. When I change (reload) any module and I want to open a new window (sub window) with the already loaded window I get this error:
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at mx.containers::Panel/layoutChrome()[C:\autobuild\3.2.0\frameworks\projects\framework\src\mx\containers\Panel.as:1405]
    at com::CollapsableTitleWindow/layoutChrome()[D:\Flex 3 Workspace\WesobCrm\src\com\CollapsableTitleWindow.as:216]
    at mx.core::Container/updateDisplayList()[C:\autobuild\3.2.0\frameworks\projects\framework\src\mx\core\Container.as:2867] (...)
    Indicates that the main applications have object Panel
    Please help.
    P.S. I found a similar problem on http://www.nabble.com/Flex-Module-issue-with-Panel-td20168053.html
    ADDED: I extendes the Panel class and do something like that:
    override protected function layoutChrome(unscaledWidth:Number, unscaledHeight:Number):void
                    use namespace mx_internal;
                    if(!(mx_internal::titleBarBackground is TitleBackground)) {
                            mx_internal::titleBarBackground = new TitleBackground();
                    super.layoutChrome(unscaledWidth, unscaledHeight);                     
    But now i had something like that: Before After
    You can see that it loos style declaration.H

    Thanks for the anserw.
    I don't exacly understand all but i found a solution for my problem and it works.
    Could you tell me if this is ok ?
    I Add in my main app
    public function getProductWindow():ProductWindow {
        return new ProductWindow();
    And in the module i change
    From var productWindow:ProductWindow = new ProductWindow();
    To var productWindow:ProductWindow = Application.application.getProductWindow();

  • Flex performance issues

    hi
    By using an mvc architecture ,is it possible to overcome Flex performance issues...???
    Thanks
    Saritha S

    Excuse me ? If you develop a large scale application, you had better use a MVC architectural framework (with or without dependency injection) and additional design patterns like the presentation model. Otherwise, you will end up with code complexity as you try to overcome the inevitable structural problems as the application grows and THIS will end up in performance degradation.
    -          Run the profiler to identify bottlenecks and memory leaks: number of instances of a given class, execution time of methods, memory usage … E.g item renderers
    -          How much data is loaded, processed and displayed at any one time can have a big impact on performance. Reduce the amount of data: paging via parameter to the service
    -          Reduce the layout complexity: remove containers so nestLevel <= 4
    -          Remove event listeners: addEventListener () calls with corresponding removeEventListener() calls (do not use addEventListener() with weak reference as it decreases performance)
    -          Deferred instantiation of UIComponents (e.g Viewstack children) aka lazy instantiation
    -          Garbage collection: check Grant Skinner’s checklist
    -          Interrupted execution of complex functions (especially when looping on a large data set): the function monitors its execution time and yields (returns) when the current call exceeds a given duration (usually, that of a frame at 24 fps, which is the default Flex framerate). It is called again on the next frame and so on and so forth until processing is complete. You can use callLater() for that.
    -          Lazy loading of data
    -          Use more efficient code. Favour re-use of existing code in the Flex framework rather than re-writing what exists. Favour simple solutions over complex ones when possible.
    -          UID getter/setter in DTOs for improved performance in sorting / filtering of Array Collections
    -          Too many data bindings decrease performance. Mainly use data binding to bind views to the presentation models. Use the ChangeWatcher class or direct assignment of values when possible.
    -          Limit the number of calls to setStyle(). Use style declarations in CSS when possible.

  • Can you please fix your browser's tab issue? (I've switched over to Chrome)

    Can you please fix your browser's tab issue? (I've switched over to Chrome until this issue has been resolved)
    == This happened ==
    Every time Firefox opened
    == I upgraded to 3.6.6

    What issues do you have with Tabs in Firefox?

  • Compiz alt-tab issue

    Hi all!
    My problem is Compiz window switcher acts kind a weird on my system. Sometimes it works, sometimes not. I dont even have to restart my gnome session - for example, it can work for five minutes and than suddenly become buggy again (i guess bug on/off `triggers` when new windows are opened).
    These 2 videos are recorded on same gnome-session, with 1-2 minutes gap between.
    http://not.justdied.com/vid/001/alt-tab-fine.ogv
    http://not.justdied.com/vid/001/alt-tab-fail.ogv
    As you can see, compiz switcher fails @ drawing window titles.
    Anyone have ideas how to solve this? I got up-to-date arch with gnome, nvidia driver 190.53. If u need some additional info, pls ask.
    Tnx in advance!
    Last edited by shb- (2010-03-09 12:45:33)

    Moose9999 wrote:The bug with the borders happened to me to on my fedora setup.  I can't remember for sure, but the alt-tab issue might have been there too.  Wish I could be more help.  I will say if you want a DE with similar functionality and a lot more customibility try compiz-fusion with fusion-icon, lxpanel, and myGtkMenu from the AUR.  Thats my setup and it is pretty user friendly.  myGtkMenu uses a text file for configuration and has an example one that shows the syntax; its really easy.  lxpanel is a little large for a panel program but it has a lot of nice little extras.
    Why fusion-icon? Which program to you use to log out of X? For me, I use Compiz itself, so if I switched window managers with fusion-icon, it would kill X. Different Strokes.
    I recommend Xfce4-panel if you do use Compiz Standalone. It has a lot of excellent plugins and it still very lightweight. Plus its taskbar and workspace switcher work properly with Compiz.

  • Flex tab movement in mdi windows

    Hi All,
    In our flex mdi application, we have multiple windows. And if two or more windows have same field names, tab key travel to
    multiple windows rather than stay on the current window. How we can restrict tab to stay only on the current focused window.
    Any help in this regard is very appreciated.
    Regards,

    Thanks Alex, it does help us to understand the issue as you explained the concept of IFocusManagerContainer, Yes we are having same kind of problem as you explained. we are adding canvas windows to main canvas so all windows shared same focus manager. if we enable only active window and disable all other windows, the tab focus issue solved but it looks quite odd.
    And also tried to deactivate focus manager but did not work. So, can we remove a focus manager to a window and add it when it get focus.
    Many thanks.
    Regards,
    M. Hasan

  • Restoring pre-migration DPM Database - Reporting Tab issue

    Before migration, upgraded DPM 2010 to 2012 thru to 2012 R2. Took backup of database.
    Built new Windows 2012 R2, SQL 2012 SP1 & DPM 2012 R2. While database is blank, DPM seems to work fine.
    Restored pre-migration backup of DPM database over this new blank database. Most of DPM seems fine so far. Tape autoloader and attached disks are recognised and previous backups are all available. Protection Groups seem fine.
    Accessing the reporting tab causes MMC to quit with error.
    Description:
      AppName: mmc AppVer: 4.2.1205.0 ModName: mmc.exe
    ModVer: 6.3.9600.16384 StackHash: 9EAE70C3
    Problem signature:
      Problem Event Name: DPMException
      Application Name: mmc
      Application Version: 4.2.1205.0
      Module Name: mmc.exe
      Module Version: 6.3.9600.16384
      Exception Name: System.NullReferenceException
      Exception Point: Microsoft.Internal.EnterpriseStorage.Dls.UI.ReportingPage.Reporting.RefreshListView
      Other: 9EAE70C3
      OS Version: 6.3.9600.2.0.0.272.7
      Locale ID: 6153
    Event Log:
    An unexpected error caused a failure for process 'mmc'.  Restart the DPM process 'mmc'.
    Problem Details:
    <FatalServiceError><__System><ID>19</ID><Seq>0</Seq><TimeCreated>31/03/2014 10:37:37</TimeCreated><Source>DpmThreadPool.cs</Source><Line>163</Line><HasError>True</HasError></__System><ExceptionType>NullReferenceException</ExceptionType><ExceptionMessage>Object
    reference not set to an instance of an object.</ExceptionMessage><ExceptionDetails>System.NullReferenceException: Object reference not set to an instance of an object.
       at Microsoft.Internal.EnterpriseStorage.Dls.UI.ReportingPage.Reporting.RefreshListView()
       at Microsoft.Internal.EnterpriseStorage.Dls.UI.ReportingPage.Reporting.DisplayAppropriateListView()
       at Microsoft.Internal.EnterpriseStorage.Dls.UI.ReportingPage.Reporting.CheckAccountStatusAndUpdateUI()
       at Microsoft.Internal.EnterpriseStorage.Dls.UI.ReportingPage.Reporting.UpdateReportingUI()
       at Microsoft.Internal.EnterpriseStorage.Dls.UI.ReportingPage.Reporting.UpdateReportingPage()</ExceptionDetails></FatalServiceError>
    Accessing reporting using Internet Explorer and the URL for Reporting in SQL seems Okay.
    Seeing as the database restore is the single factor that causes functionality to break I have been trying to ascertain what I might correct incside the pre-migration database.
    While the new machine has the same computer name, the accounts for services and SQL were changed in line with what was suggested/recommended by the setup comments I came across (domain accounts instead of local etc.) So there would be a discrepancy between
    the pre-migration security accounts and the new servers security accounts.
    Should I try and correct this specific issue and can anyone help with that (seeing as rest seems to be working okay)?
    OR
    Can you point me to the recommended steps that I should follow (post-restore) to get this setup working for reporting?

    You're not alone. I have the exact same issue (report tab results in MMC crash) after upgrading from DPM 2012sp1 to DPM 2012R2.
    I installed fresh windows 2012r2, then installed DPM 2012sp1, restored database, then upgraded to DPM 2012r2. Now I can't access the report TAB even though
    http://dpmserver/reports works just fine for viewing DPM reports.
    My error codes are identical to what you posted.
    Additionally, here is the crash log where I thought it was relevant to our situation:
    NORMAL ConnectToReportServerUrl: Try connecting with url [http://dpmserver/ReportServer]
     0D68 0938 05/07 21:18:58.102 42 Reporter.cs(2177)   NORMAL GetReportServerUrl: return [http://dpmserver/ReportServer]
     0D68 0938 05/07 21:18:58.133 42 Reporter.cs(255)   NORMAL  connected to the ReportServer :http://dpmserver/ReportServer/ReportService2005.asmx
    0D68 0938 05/07 21:18:59.915 42 Reporter.cs(396)   NORMAL There is no report in the rootFolderPath :
    0D68 0E30 05/07 21:18:59.930 09 AppAssert.cs(130)   WARNING ASSERT: (FileName:Reporting.cs; LineNumber:612)
    0D68 0E30 05/07 21:18:59.930 09 AppAssert.cs(130)   WARNING There is no DPM report deployed on the report server
     0D68 0E30 05/07 21:18:59.930 34 PageController.cs(1970)   WARNING Attempting to handle fatal error: System.NullReferenceException: Object reference not set to an instance of an object.
     0D68 0E30 05/07 21:18:59.930 34 PageController.cs(1970)   WARNING    at Microsoft.Internal.EnterpriseStorage.Dls.UI.ReportingPage.Reporting.RefreshListView()
     0D68 0E30 05/07 21:18:59.930 34 PageController.cs(1970)   WARNING    at Microsoft.Internal.EnterpriseStorage.Dls.UI.ReportingPage.Reporting.DisplayAppropriateListView()
     0D68 0E30 05/07 21:18:59.930 34 PageController.cs(1970)   WARNING    at Microsoft.Internal.EnterpriseStorage.Dls.UI.ReportingPage.Reporting.CheckAccountStatusAndUpdateUI()
     0D68 0E30 05/07 21:18:59.930 34 PageController.cs(1970)   WARNING    at Microsoft.Internal.EnterpriseStorage.Dls.UI.ReportingPage.Reporting.UpdateReportingUI()
     0D68 0E30 05/07 21:18:59.930 34 PageController.cs(1970)   WARNING    at Microsoft.Internal.EnterpriseStorage.Dls.UI.ReportingPage.Reporting.UpdateReportingPage()
     0D68 0E30 05/07 21:18:59.946 34 PageController.cs(2012)   NORMAL Will  invoke Watson
     0D68 0E30 05/07 21:18:59.946 34 PageController.cs(2102)   WARNING UI Thread Exception: System.NullReferenceException
     0D68 0E30 05/07 21:18:59.946 34 PageController.cs(2109)   WARNING --------------------

  • Flex 3 Issues - case noise, heat, fan

    Just got the Flex 3 15.6" (i7, 1 TB HDD + 8 GB SSD), and I am noticing a few issues: 1) When I push down with a finger on the base underneath the hard drive area, it gives in and makes a clicking noise (the case, not the hard drive). Kind of annoying, especially since I hear it sometimes when I pick up the laptop depending on where I hold it.
    2) It runs rather hot. I feel the heat on my leg pretty quickly.
    3) The fan is often noticeable, staying on quite a bit and loud enough to hear (but not loud).

    I think it is defective. You need to apply for a guarantee or to open the case and check everything. But if you do it yourself, then maybe you can lose the guarantee.

  • Flex incompatibility issue with SDK 3.5.0.12683 and IE6

    Anyone have experience with issues for IE6 and Flex SDK 3.5.0.12683?
    As a secondary issue, does anyone know of a way to force a browser cache refresh?
    thanks
    Simon

    Add a random number as a parameter to the url.
    Something like:
    url = url + "?t=" + new Date().time;

  • Adobe Flex Performance iSSUE

    hI,
    I need to build UI using ADobe flex that will connect BPM system. I have concurrent 500 users. Is this is feasible to develop application(UI) using Flex for such kind of application.
    Thanks,
    Vikash

    Hello Victor,
    We are using Flex at Taleo for an application that can have much more than 1,000 concurrent users. You just need to make sure that your architecture can scale horizontally and vertically. Flex isn't the best here, we also do have performance issues. If speed is your primary target, I suggests you to go pure HTML (5) and Javascript (jQuery, Dojo, etc.)
    Good luck.
    Nicolas Boulet-Lavoie
    Développeur logiciel
    Software Developer
    T. 418.524.5665 x 1454
    F: 418.524.8899
    C. [email protected]
    Ce courriel et toute pièce jointe peuvent contenir des renseignements confidentiels, particuliers ou protégés pour l'usage exclusif du destinataire du message original. Toute révision, copie ou distribution du présent courriel (ou de toute pièce jointe) par autrui est formellement interdite. Si vous n'êtes pas le destinataire prévu, veuillez retourner immédiatement le courriel à l'expéditeur et effacer définitivement l'original, les copies et les pièces jointes.
    This email and any attachments thereto may contain private, confidential, and privileged material for the sole use of the intended recipient named in the original email to which this message was attached. Any review, copying, or distribution of this email (or any attachments thereto) by others is strictly prohibited. If you are not the intended recipient, please return this email to the sender immediately and permanently delete the original and any copies of this email and any attachments thereto.

  • Cross Tab issue , Need a Help

    HI Expery
    In BO Webi report  need to show dynamic columns in Report after transposing rows to columns.
    Data in Table is  like below:
    Col1     Col2     Col3
    101     Abc     801
    101     Abc     802
    101     Abc     803
    101     Abc     804
    101     Abc     805
    102     RNM     2009
    102     RNM     2010
    102     RNM     2011
    103     RYZ     3465
    In Report It should be as
    Col1     Col2     Col3     Col3     Col3     Col3     Col3
    101     Abc     801     802     803     804     805
    102     RNM     2009     2010     2011           
    103     RYZ     3465                       
    We have tried implementing the same using cross tab , but issue is in Cross  col3  grows with all values present for all records. Here, if we use cross tab  we are getting result as below:
    Col1     Col2     Col3     Col3     Col3     Col3     Col3     Col3     Col3     Col3     Col3
    101     Abc     801     802     803     804     805     2009     2010     2011     3465
    102     RNM     801     802     803     804     805     2009     2010     2011     3465
    103     RYZ     801     802     803     804     805     2009     2010     2011     3465

    Hi Ahmed
    You can use the below logic.
    col1 & col2 u can keep it as columns in a cross tab. Now keep col3 as row but here you need to do one thing . Click on the formula button for col3 field and then write the following syntax in it.
    = col3 IN ([Col1];[col2])
    By using this calculation context it will fetch only the data which is related to the first two columns. so the extra data which u were mentioning about will got to the next row.
    Regards
    Shyam
    Edited by: Shyam Rapeti on Jan 25, 2012 3:20 PM

  • Google maps in jquery tabs issue

    Can't get the map to zoom in, with one of the Business Catalyst templates, see: http://winedineoxnard.businesscatalyst.com/visit/magnavino-cellars
    The jquery tabs are causing this, but I can't figure out how to fix the issue.
    Any help would be appriciated.

    This is not a specific issue in related to BC, it is associated to map rendering when in tabbed content controlled by jQuery:
    http://stackoverflow.com/questions/9458215/google-maps-not-working-in-jquery-tabs
    You can google if it is spcecific to say bootstrap tabs or something else for other sollutions.

  • Ringtone/Sync Tab Issues

    I know this question has been posted numerous times, but none of them with the specifics of my own issue, so I'm starting this thread in hopes of a little help. =)
    I have no 'sync ringtones' option whatsoever in my iTunes and to no avail, I've yet to figure out why/how/WHY/HOW. Haha. In light of this, I can't get my ringtones where they need to be.
    I have an iPhone 4, had it about a week I think. I just updated my iTunes to 10.4 but that didn't bring a ringtones tab up. I have the tab on the left for ringtones in both my iTunes and iPhone options. It's the one at the top of iTunes that's not there. I'm currently using a PC for my iTunes but I don't know if that matters? I've now tried 3 or 4 different apps to make ringtones, loading each tone into iTunes and trying again and still nothing, zilch, negative, nada. Oh and the ringtones are under 30 seconds. I took a screen shot of the one's I've tried. I'm a visual one myself so I do better to find things when I've seen
    them? If that makes sense. I don't think I've left anything out, but it's very possible. Please let me know if more info is needed and what not.
    Thank you in advance for any help on this.

    I did that and it did not help. i also tried to see if updating my iphone softwear would help but I kept getting an error message at end of download.

  • Material Master, Warehouse mgmt2 tab, Issue in change in LE quantity

    In the Material Master, in Warehouse mgmt2 tab, When I have tried to change the LE quantity in Palletization data section.
    to 1763.68 lbs, it's not take 1763.68, but taking 1763.681.
    Whenever I put the data with 2 decimal point, it take 3'rd digit also which is 1.
    So a small difference of 0.001 is occuring.
    How can we rectified this issue ?

    Ya, Base unit is KG and WM unit is LB.
    But in my issue, I am entering the quantity in the unit of LB.
    i.e. if I am entering 1763.92 then it is in LB .
    So I think conversion factor should not play any role in this case.

  • Flex License Issue.....?

    HI All
            We are testing the application using qtp. When we are testing the application we are getting flex license error after recording 30 test cases..
                        I developed my application using sdk version 3.2.0 and i implemented license information in the pom.xml..  I Included the automated.swc related stuff also ..
               Can any one tell me as early as possible solution for this issue?
    Thanks
    Ram..

    Hi,
    The Flex 2 serial numbers do not unlock beta 3, however we
    did make sure that beta 3 would not timeout before we release the
    final version. This may be heresy from Adobe but if you purchased
    FB 2 in the last few days simply because of FB 3 you might consider
    returning it and waiting until the release so you don't have pay
    the upgrade fee (not that it's too bad). The Beta will last you
    until then. If however you did intend to use the charting
    components and want those unlocked for beta 3, keep your FB 2 and
    mail me offlist at mchotin AT adobe DOT com with your FB2 charting
    serial and I can help you out.
    Matt

Maybe you are looking for

  • How can i install a 64 bit version on PS CC?

    in my cc-center only ps cc is metioned, no hint of 64 or 32 bit version, after installing only the 32 bit version starts? How ca i install the 64 bit evrsion on my windows 7-64 bit system?

  • DB_KEEP_CACHE_SIZE  and  DB_RECYCLE_CACHE_SIZE  -- -- question

    db version = 10.2 db block size = 8k I just added followiong two parameters to my init.ora: DB_KEEP_CACHE_SIZE=8k DB_RECYCLE_CACHE_SIZE=8k Question: I want to keep few lookup tables in 'KEEP' and 'RECYCLE'. Am I configuring the above two parameters c

  • Need to generate a CSR for a new Lync 2013 Edge server

    I am upgrading my Lync 2010 Edge to 2013. Part of the process is exporting all the certificates on the 2010, some public, and eventually importing them into my 2013 Edge. I have a problem with one certificate that was generated by our internal CA for

  • Detail data in relational, summary in OLAP?

    Hi, I've had a lot of practice now with the new AW wizards (version 10.1.0.3) and loading from a relational star schema. However, what I really want to do is build an AW that only has the "summary" levels, and have queries against the AW drill down i

  • Is there any hope of older Canon CRW RAW format being supported?

    I have many RAW pictures taken on a Canon Powershot G1 that uses the older CRW format. These import, but do not render in Aperture. Is there any hope that this format will ever be supported? (As an aside, these have never rendered in iPhoto either).