DEVELOPERS FORUM? (community forum)

Where can i enter community forum in developer forums since i want to see why its so laggy and slow on iphone 4

https://developer.apple.com/devforums/

Similar Messages

  • Where is the Adobe AIR SDK developers forum please...

    Hi,
    I'm told that there is a Adobe AIR SDK developers forum here somewhere.
    I'm new here and can not find it anywhere.
    Please help...
    Tomexx

    http://supportforums.blackberry.com/t5/Tablet-OS-SDK-for-Adobe-AIR/bd-p/tablet
    Files & Folders, the unified file & cloud manager for PlayBook and BB10 with SkyDrive, SugarSync, Box, Dropbox, Google Drive, Google Docs. Free 3-day trial! - Jon Webb - Innovatology - Utrecht, Netherlands

  • Adobe: Please Give Us An RoboHelp - AIR Help Forum

    Hi all,
    A client of mine is very interested in the AIR Help format
    after I showed them a test project. As with any new format, there
    are risks and bugs, and I want to know about as many of them as
    possible before I begin a large project with tight deadlines where
    I do not have a lot of time to troubleshoot, tweak, and test. I'm
    feeling a little frustrated trying to get all of the info I need
    and wondering "Is Adobe really behind this new format or not?"
    (Yes, I have the RoboHelp Packager PDF.) Those who are kind enough
    to jump in and investigate this new format are posting sometimes in
    General, sometimes in HTMLHelp, sometimes in the AIR developers
    forum, etc. (I see a link on grainge.org to a RoboHelp Packager
    forum that isn't working...perhaps a Beta forum that's now closed?)
    On that note, THANK YOU, Peter Grainge, for taking the time to
    provide very helpful information about AIR Help on your site...
    Most of you reading probably will not recognize my name simply
    because over the years, I have found almost all of the answers I
    needed by searching prior posts and putting Peter's solutions to
    work in my own projects. Now I hope to be able to give back to this
    community if I delve into AIR Help, but we all need one place to
    post :-)!
    Sincerely,
    Katie Carver
    Senior Technical Writer/Consultant
    Docs-to-You, LLC

    Ask and ye shall receive...
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7 or 8 within the day - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Developer forums login still broken

    It might be that it's just been merged with apple communities? or this is just a developers thread about the forums rather than the developers forum itself?
    Anyway, I just tried to login to the developers forum, and it brings me always to this page: https://developer.apple.com/devforums/
    It doesn't say error, nor success, nothing. Just sits there. That's the link at the bottom of every apple page like this https://developer.apple.com/
    I'll post my question about safari viewport here, but I tried to login to the forums (before communities?) months ago and I'm surprised the few times a year I tried to access to apple support I ALWAYS have one or another problem. If you check my previous posts you can tell most of them are access problems.

    I unmarked the topic as question, because of the title is rather a "report".
    Michael Superczynski wrote:
    There's nothing wrong with either of those links you posted.
    Well, that's a very strong assumption.
    That says
    a) I'm the problem
    b) Your concept of "working" is too limited
    c) Its "intended behavior" is not intuitive (it does perfectly what nobody expects)
    d) suck it up. It works for me hehe. (i.e. "I don't care about others because it works for me")
    Or any other reason that calls at least for a "question" rather than such a strong assumption.
    Besides, I never said the second page had any error. I just said the link is featured there, where all the other links are, and I wasn't accessing an old url (in case the developers forum was moved here)
    The first link keeps appearing after I log-in. No redirection to the forum. I couldn't tell wether I've got successfully logged in or not, because this page keeps showing a "sign-in" button.
    After logging in twice and getting the same "log-in" page, do you think "there's nothing wrong with that page"?

  • Why are there two separate JWS forums?

    There's this forum and http://www.javadesktop.org/forums/forum.jspa?forumID=45 - shouldn't they be merged? Why are there two? Which one is the "official" one?

    This forum, (the java developers forums) pre-date javadesktop.org, and as can be seen by the total thread count (5000+ threads vs 64 topics) has a lot more activity on the yopic of Java Web Start.
    Javadesktop.org was created in 2003, and since it has much overlap with generic java development they also created a thread in their forum for Java Web Start.
    /Andy

  • Developers account

    I have a problem at the expense of developers to AppStore
    We hope to help me sooner

    We can't help with that; we are just volunteer users like you. Post in the Developers' Forum or contact Apple directly.

  • Communication of components

    Hi,
    I have a question about how other developers implement communication of components in a Swing application.
    I'll try to explain the question whith this little example (I omit superflous code):
    public Class JFatherPannel extends JPannel {
      public JFatherPannel(){
        JPannel jSubPannel1 = new JSubPannel1();
        JPannel jSubPannel2 = new JSubPannel2();
        container.add(jSubPannel1);
        container.add(jSubPannel2);
    public Class JSubPannel1 extends JPannel {
      public JSubPannel1(){
        JButton jButtonSubPannel1 = new JButton();
        jButtonSubPannel1.addActionListener(myActionListenerSubPannel1);
        container.add(jButtonSubPannel1);
    public Class JSubPannel2 extends JPannel {
      public JSubPannel2(){
        JButton jButtonSubPannel2 = new JButton();
        jButtonSubPannel2.addActionListener(myActionListenerSubPannel2);
        container.add(jButtonSubPannel2);
    } What I want to do is call a method of JSubPannel2 when the button of JSubPannel1 is clicked. And the question is:
    �How is this used to be implemented? �Which is the smartest solution? �Do I need to pass object references at
    constructors? This last solution could be valid for little applications, but when the application grows and
    hierarchy goes bigger this is a mess of objects cross references.
    Thanks.

    It is not so messy if you use interfaces.
    Anyway, you could put the code in a different class, so that all the panel only need a reference to an instance of that class.
    Or you could use the FatherPanel as an intermediary by passing a reference to the constructors of the children, or by making it a Singleton.
    The choice is yours.

  • Have a community forum for JavaFX developers?

    have a community forum for JavaFX developers?

    There is www.javagaming.org which has a JavaFX board at http://www.javagaming.org/index.php/board,58.0.html

  • Can I know the precision and scale of a decimal field using ACEDAO?

    Using ACEDAO in VC++, I am trying to retrieve the field details of an Access database (.accdb file) table of which one field is of decimal type. I am able to get the details using the functions of
    DAO::_FieldPtr field;
    as follows:
    fieldName = field->GetName().GetBSTR();
    nType = field->GetType() // returns DAO::dbDecimal
    lSize = field->GetSize(); // returns 16
    lAttr = field->GetAttributes(); // returns 0x000002H
    nOrdinal = field->GetOrdinalPosition(); // returns 11
    bAutoIncrement = ((lAttr & DAO::dbAutoIncrField) > 0);
    DAO::PropertiesPtr props;
    DAO::PropertyPtr prop;
    int k, nProp;
    std::wstring propName, propNames;
    props = field->GetProperties();
    if(props)
    nProp = props->GetCount(); // returns 33
    for(k = 0; k < nProp; k++)
    prop = field->GetProperties()->GetItem((short) k);
    if(prop)
    propName = prop->GetName().GetBSTR();
    propNames += propName;
    propNames += L"\n";
    // After exiting the loop, propNames contain 33 properties as:
    // Value
    // Attributes
    // CollatingOrder
    // Type
    // Name
    // OrdinalPosition
    // Size
    // SourceField
    // SourceTable
    // ValidateOnSet
    // DataUpdatable
    // ForeignName
    // DefaultValue
    // ValidationRule
    // ValidationText
    // Required
    // AllowZeroLength
    // AppendOnly
    // Expression
    // FieldSize
    // OriginalValue
    // VisibleValue
    // GUID
    // ColumnWidth
    // ColumnOrder
    // ColumnHidden
    // Description
    // DecimalPlaces
    // DisplayControl
    // TextAlign
    // AggregateType
    // ResultType
    // CurrencyLCID
    //But does not have any property named "Scale" or "Precision"
    I could not find any function for retrieving the value for precision and scale for the decimal field.
    Though I am able to retrieve the field value as a decimal number and get the required information from the structure, I think it is not the right way. Because, what will happen if the data for field is not available in the table?
    Is there any other method to retrieve the precision and scale of a decimal type field using ACEDAO?
    Thanks.

    I cannot find a method or property in ACEDAO to retrieve the precision and scale of a field. Maybe you could try get the number of a decimal type and use some mathematical methods to get the precision.
    I find there are some way to get the precision by ADO or OLEDB.
    For ADO way, you could check this thread:
    https://social.msdn.microsoft.com/Forums/office/en-US/883087ba-2c25-4571-bd3c-706061466a11/how-can-i-programmatically-access-scale-property-of-a-decimal-data-type-field?forum=accessdev
    For OLE DB , you could use IColumnsInfo::GetColumnInfo to get DBCOLUMNINFO::bPrecision.
    https://msdn.microsoft.com/en-us/library/windows/desktop/ms722704(v=vs.85).aspx
    Also people in C++ may not familiar with access development, the
    Access for Developers forum is good place for access develop issue. You could try there.
    Hope this helps some.
    Shu
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Can I possible to use dual boot(windows 7 in internal hard disk and windows 8 in external hard disk)?

    i want to create dual boot(2 OS in 1 laptop) in my laptop but my internal hard disk reach maximum(3) logical partition so my genuine windows 7 os is not allow me to create new logical partition and install win8 pro. i planed to purchase
    one external hard disk and connect with my laptop and install win8 in external hard disk and use both win8 and 7. This is possible? If possible how to i create? please give me step by step instruction.

    This is a developers forum for the presentation manager windows forms classes and api's
    Try what has now a new name again user community forums, formerly answer forums.
    http://answers.microsoft.com
    Success
    Cor

  • InDesign.exe has encountered a problem and needs to close.  We are sorry for the inconvenience.

    Please help me guys....
    my in design server is not opening and am getting this error message.
    Thank in advance.

    You should probably ask this in the server developers forum: http://forums.adobe.com/community/indesign/indesign_server_developers

  • Macro for automatically sending E-mail from a folder

    I have a folder containing purchase orders (in pdf format) for many companies (say 500 companies), which I should send them manually to all the companies twice a month.
    (by insert the Purchase order and selecting the E-mail address and send separately to all of them)
    Is there any way to automate this work?

    Hi,
    Since we are not the best source for coding, if you are looking for some coding assistance, I'd recommend you to post your question to the Outlook for Developers forum:
    http://social.msdn.microsoft.com/Forums/office/en-US/home?forum=outlookdev
    In addition, you can also find some add-ins to achieve the goal. For more information, please refer to the article below:
    Send files and report updates automatically
    http://www.msoutlook.info/question/236
    Please Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft
    does not guarantee the accuracy of this information.
    Hope this helps.
    Regards,
    Steve Fan
    TechNet Community Support

  • How to get replied date & time of an email

    I am using MS outlook 2010 from this month (August 2014), So i work on so many emails from different persons and I want to see time taken to on each email from the time I recieved it till the time I replied. Once I get a column with replied time details;
    I can export it to excel so as to report to my manager about my TaT (turn around time), I am new to this forum and this is my first post, please help thanks. (I have browsed here for the same but couldn't get what I need)

    Hi,
    Several suggestions to find the replied date & time:
    1. We can find related emails in Outlook, then find the replied date & time from the related emails:
    Right click on the message in the list, Select "Find Related" -> "Messages in This Conversation" from the menu that comes up.
    2. View tab -> Conversations -> check "Show as conversations", then we can easily find other emails in the conversation, then find the replied date & time.
    Anyway, both methods above are manual and based on your request description, I don't think the whole process can be performed with the build-in feature automatically. However, the whole process may be realized via VBA, if you can accept a VBA method, I suggest
    you post the detailed request in Outlook for Developers forum:
    http://social.msdn.microsoft.com/Forums/office/en-US/home?forum=outlookdev
    Regards,
    Melon Chen
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Automatically generated Date/Time in subject line

    Hi there,
    I’m just wondering is it possible to have the date and or time automatically added to the subject line if I create a new e-mail message or if I receive or reply to an e-mail from someone?
    Any help appreciated!
    Regards,
    Bonemister

    Hi,
    We can design a custom form to achieve this goal. Since I don't know the version of Outlook you are using, just take Outlook 2013 for example. Please follow the steps below:
    1. Enable Developer tab if you haven’t done this. Go to File > Option > Customize Ribbon, tick the check box before
    Developer from the right side of the Outlook Options dialog. Click OK.
    2. Click on Developer tab in the ribbon. Tap Design a Form.
    3. Choose Message in the Standard Forms Library and click
    Open.
    4. In the form window, right click on the text box next to the Subject and select
    Properties from the pop-up menu.
    5. In the Properties dialog, click on Value tab.
    6. Tick the option ‘Set the initial value of this field to:’ and enter
    Date() in the box. (If you want to show the time, just type
    Time())
    7. Click OK. We can click Run This Form button to preview the form.
    8. After that, click Publish > Publish Form As
    to publish your form and save it to your Personal Forms Library.
    How to customize and publish a form, please refer:
    http://msdn.microsoft.com/en-us/library/office/ff868929.aspx
    Since this forum is for general questions and feedback related to Outlook, if you have any further develop problems, please post in Outlook for developers forum:
    https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=outlookdev
    Thank you for your understanding.
    Best Regards,
    Steve Fan
    TechNet Community Support

  • Problem in APP ID registration

    Hi,
    I have iOS Developer Program Enterprise license.
    In the process of Bundle ID creation I had to register iOS APP ID.
    When I clicked on "Register your APP ID", I faced an error -
    "Access Unavailable Your membership privileges do not include access to this page".
    Screenshot below.
    what to do? whom to contact? please suggest...
    Thanks,
    Tapobrata

    This would be better adressed in the developers forum: https://discussions.apple.com/community/developer_forums

Maybe you are looking for