Modaler ADM Dialog mit Tabs

Hallo,
Ich möchte einen modalen ADM Dialog entwickeln in dem ich wie bei dem "Neue Kompositioins" Dialog von After Effects über Tabs auf unterschiedliche Einstellungen zugreifen kann. Ich habe es schon erfolglos mit zwei kADMTabbedFloatingDialogStyle probiert.
Gibt es villeicht noch ein Sample das mir nicht bekannt ist, in dem diese Art von Dialogen behandelt werden??
Vielen Dank
Andre Sick

sadly enough this is an issue with safari in general. it isn't just for macs either, it is also for PC's. i would suggest downloading another internet browser.

Similar Messages

  • Problem with non modal ADM dialog

    I have problem with focus and mouse and keyboard event passing to non modal dialog if some modal window was opened and closed on Windows platform.
    I have this problem in my plugin, but also I did some tests with SDK WordFinder Plugin.There are 2 dialogs open there : CountDialog-non modal dialog and PromtDialog-modal one. I commented all lines in function DeleteCountDialog to leave this dialog on the screen. So, first, when "create page map" menu is selected, CountDialog is appearing and stays on the screen. At this stage, it can be moved and get focus when is clicked.After that, I click on "find word by word offset" and then PromtDialog is appearing. when I close Promtdialog by clicking on OK or Cancel, CountDialog is "freezing" - means, it can not be moved and does not get focus when I click on it.
    Is it known problem ? Is there is some workaround there ?
    thanks in advance,
    Lidia.

    Thanks a lot for your response.
    I did changes as you recommended, but still have the same result.
    So I have WordFinder from Acrobat SDK 8 with only one file changed:WordFinderDlg.cpp - see below.The result is the same:
    1. I open Acrobat->Open some file
    2. Click on "Advanced->Acrobat SDK->Word Finder->create Page Map" menu
    3. "count" non Modal Dialog is opened and working and then stays on the screen and can be moved without problem.
    4. Now I click on "Advanced->Acrobat SDK->Word Finder->find Word By Offset" - Modal Promt Dialog is opened. click some number and then click ok - choosen word is selected in Acrobat. From this moment, first "Count" dialog is frosen - can be selected, can not be moved.
    The only workaround I see here is to create non Modal dialog every time I close Modal one.
    Could you please advice ? May I please send to you project in zip ?
    I really need it ASAP ?
    thanks in advance,
    Lidia.
    ADOBE SYSTEMS INCORPORATED
    Copyright (C) 1994-2006 Adobe Systems Incorporated
    All rights reserved.
    NOTICE: Adobe permits you to use, modify, and distribute this file
    in accordance with the terms of the Adobe license agreement
    accompanying it. If you have received this file from a source other
    than Adobe, then your use, modification, or distribution of it
    requires the prior written permission of Adobe.
    \file WordFinderDlg.cpp
    - Implements a modeless progress dialog and a generic prompt dialog.
    // Acrobat headers
    #ifdef WIN_PLATFORM
    #include "PIHeaders.h"
    #endif
    #include "ADMAcroSDK.h"
    #include "resource.h"
    Constants/Declarations
    static ADMDialogRef countDialog;
    static AVWindow gAVWindow = NULL;
    // Global variables used for simplicity
    const ASInt32 MaxLen = 80;
    static char textStr[MaxLen];
    static char titleStr[MaxLen];
    static char msgStr[MaxLen];
    Modeless Progress Dialog
    /* UpdateCountDialog
    ** Updates the dialog with a new GUI function to show count number
    void UpdateCountDialog(ASInt32 cnt)
    ADMItemRef itemRef;
    itemRef = sADMDialog->GetItem(countDialog, IDC_COUNT);
    sADMItem->SetIntValue(itemRef, cnt);
    sADMDialog->Update(countDialog);
    /* CreateCountDialog
    /** GUI function to delete the count dialog
    void DeleteCountDialog(void)
    // destroy dialog
    /*if (countDialog) {
    sADMDialog->Destroy(countDialog);
    countDialog = NULL;
    // Release ADM
    ADMUtils::ReleaseADM();*/
    /* SettingsCountDialogOnInit
    ** Called to initialize the the dialog controls
    ASErr ASAPI CountDialogOnInit(ADMDialogRef dialogRef)
    ADMItemRef itemRef;
    itemRef = sADMDialog->GetItem(dialogRef, IDC_COUNT);
    sADMItem->SetUnits(itemRef, kADMNoUnits);
    sADMItem->SetIntValue(itemRef, 0);
    return kSPNoError;
    /* CreateCountDialog
    ** Creates the modeless dialog.
    void CreateCountDialog(void)
    // Initialize ADM.
    ADMUtils::InitializeADM();
    // Display modeless dialog.
    countDialog = sADMDialog->Create(sADMPluginRef, "ADBE:Wordfinder", IDD_COUNT_DIALOG,
    kADMNoCloseFloatingDialogStyle, CountDialogOnInit, NULL, NULL);
    Generic Prompt Dialog
    /* PromptOnOK
    ** Called when the user clicks OK. Stores the string entered by the
    ** user.
    static void ASAPI PromptOnOK(ADMItemRef item, ADMNotifierRef inNotifier )
    sADMItem->DefaultNotify(item, inNotifier);
    // get user input string
    ADMDialogRef dialog = sADMItem->GetDialog(item);
    ADMItemRef item1 = sADMDialog->GetItem(dialog, ID_PROMPT_FIELD);
    sADMItem->GetText(item1, textStr, MaxLen);
    sADMDialog->EndModal(dialog,IDOK,FALSE);
    AVAppEndModal();
    AVWindowDestroy(gAVWindow);
    /* PromptDialogOnInit
    ** Called to initialize the dialog controls.
    ASErr ASAPI PromptDialogOnInit(ADMDialogRef dialogRef)
    gAVWindow = AVWindowNewFromPlatformThing (AVWLmodal, AVWIN_WANTSKEY, NULL, gExtensionID, sADMDialog->GetWindowRef(dialogRef));
    AVAppBeginModal (gAVWindow);
    sADMDialog->SetText(dialogRef, titleStr);
    sADMDialog->SetDefaultItemID(dialogRef, IDOK);
    sADMDialog->SetCancelItemID(dialogRef, IDCANCEL);
    ADMItemRef itemRef;
    itemRef = sADMDialog->GetItem(dialogRef, IDOK);
    sADMItem->SetNotifyProc(itemRef, PromptOnOK);
    itemRef = sADMDialog->GetItem(dialogRef, ID_PROMPT_FIELD);
    sADMItem->SetUnits(itemRef, kADMNoUnits);
    sADMItem->SetMinIntValue(itemRef, 1);
    itemRef = sADMDialog->GetItem(dialogRef, ID_PROMPT_NAME);
    sADMItem->SetText(itemRef, msgStr);
    return kSPNoError;
    /* PromptForInfo
    /** Generic prompt dialog that gets a text string from the user.
    /** @return IDOK or IDCANCEL.
    ASInt32 PromptForInfo(const char *title, const char *msg, char *buf, ASInt32 bufLen)
    if (!buf || (bufLen == 0))
    ASRaise (GenError(genErrBadParm));
    // Initialize ADM.
    ADMUtils::InitializeADM();
    // init data
    buf[0] = 0;
    strncpy(titleStr, title, sizeof(titleStr) - 1);
    strncpy(msgStr, msg, sizeof(msgStr) - 1);
    // Dispaly modal dialog to get user input
    ASInt32 rc = sADMDialog->Modal(sADMPluginRef, "ADBE:Wordfinder", IDD_PROMPT_DIALOG,
    kADMModalDialogStyle, PromptDialogOnInit, NULL, NULL);
    // get user input data
    if (rc==IDOK)
    strcpy(buf, textStr);
    // Release ADM
    ADMUtils::ReleaseADM();
    return rc;

  • Non-Modal SUD Dialog Possible?

    Is it possible to have a non-modal SUD dialog box?  I would like to use a SUD dialog box to show some things going on while a script is running, and would like it to operate much like a non-modal message box. 
    Thanks!  Julia

    Thank you for your reply, I was hoping to display a table (with changing values) or some images while scripts were executing, but I will be content with the non-modal MsgBoxDisp dialog boxes 

  • Selectable Dialog Panel Tab Order Reversed when Plug-In compiled with XCode 3

    Hi,
    I'm not sure if anyone has seen this before, but I am experiencing
    a problem with the order of the panel tabs in a selectable dialog when compiling
    a CS3 plug-in using the following configuration.
    OSX 10.5.4
    XCode 3.
    ID SDK 5.0.3
    The problem is evident in the sample SDK plug-in "BasicSelectableDialog"
    Other than the obvious ( i.e. use XCode 2.4.1 ) is there a simple configuration fix for this??
    Regards,
    Mike.

    Update::
    Seems to be a problem with the ResourceEnabler or the call to CDialogCreator::GetOrderedPanelIDs() in the GetOrderedPanelIDs call in the dialog creator.
    The list returned is always empty when compiled in XCode 3, but filled in when compiled using XCode 241.
    Regards,
    Mike.

  • Please, help with simple modal progress dialog

    Progress dialog will create a reader thread and block user input to main form until read is completed. It will have only a number of bytes received text message and one cancel button. It will be closed when user presses the button or thread is done with reading.
    I understand the principles of IO and thread communication very well. I'm asking for modal dialog candidate. Should I override JDialog or it is possible to use JOptionPane or something else? The modal dialog should be able to register some listener to get progress messages from the reader thread.

    JOptionPane should be really easy way to go, since you can pass in an Object, and that object
    could be a JPanel containing your JProgressBar and any other components/layout you want.

  • ADM dialog hangs but on debugging it works fine. Can't spot the problem

    Hello,
    I have developed an automate plugin which submits a design on a server using libcurl library. There is a dialog(made using ADM) to submit a design which consists of a submit button and a progress bar. On clicking the submit button, the progress bar starts getting updated. When the progress bar is completely updated the dialog seems to hang. The dialog is supposed to close after submit. The obvious way to search for the problem was to debug the source code, but it appears that whenever the source code is debugged then it runs smoothly. But without any debug points the problem reverts. How can we spot the problem without debugging?
    Please guide.

    In developing plug-ins over the past years I have encountered a few cases where the presence of the debugger seemed to work around a problem.  The debugger necessarily changes the timing and resource allocations some.
    In every case the problem turned out to be a legitmate bug - a mistake we had made in our code, and in some cases finding that bug required other measures beyond using the debugger to help us track it down.  We ended up implementing a very sophisticated logging facility that we use in all our products now.  It appends lines of text containing pertinent info into a log file that's created for each run.  The detailed logging commands compile-out in a Release build, so we just leave them in the source code all the time and they add no overhead.
    Unfortunately, there's no easy answer for your dilemma, other than to advise you to implement your own logging facility - or at least the ability to add printf statements (or similar) into your code so you can trace the progress in sticky situations.
    Though I saw your message and am a plug-in developer myself, you might find you can get more direct help in the SDK forum...
    http://forums.adobe.com/community/photoshop/photoshop_sdk
    Good luck!
    -Noel

  • [UI] Adding Tab dialog within Tab dialog

    Hi,
        I have a dialog containg four tabs, I have a requirement that, first tab should contain two more sub-tabs. I stuck at following point -
    The main dialog boss is derived from the kTabSelectableDialogBoss and the tabs are derived from the kPrimaryResourcePanelWidgetBoss, As I want to add the subtab to the first tab I changed the kPrimaryResourcePanelWidgetBoss to the kTabSelectableDialogBoss for the first tab, but observed that the CreateDialog method is not calling.
    Note: While changing the Boss I removed the line "IID_IK2SERVICEPROVIDER, kDialogPanelServiceImpl," as with the presence of this line application crashes.
    Please, HELP......... Give any kind suggestion.
    Thanks,
    Praveen Mamdge

    Early boot uses /dev/console, which seems to be incapable of supporting the ioctls that ncurses relies on.

  • Create Modal Preferences Dialog

    I have a program that I want to add a Preferences Dialog to so if the user clicks Preferences, a Modal dialog opens. Then after the user clicks OK on the modal dialog, I want to retrieve all the updated values and if the user clicks Cancel, do not grab the changes the user may have made. I am having problems trying to figure out how to do this? I originally thought I should create a new JFrame and create my window like any other JFrames. But I discovered it is very difficult to try and make the JFrame modal. The easiest way seems to be to use a JDialog, but how can I create my own GUI for the JDialog? I have searched for examples and cannot find any. I must be using bad search terms or something. Thanks for all your help!

    CeciNEstPasUnProgrammeur wrote:
    Do what exactly? Did you try listeners?So when I have the 2 buttons in the dialog, how do I connect the listeners to the parent window? Since I will create the JPanel in another class, the parent class won't know about the OK and Cancel buttons to know how to add listeners. I know in Qt with C++, you can connect signals to slots, but what listeners would you do this with for the buttons?
    It's no different from creating an JFrame. It's a dialog with a content pane that you can fill.
    Aaaaargh! The API docs even link to the "how to make dialogs" tutorial. Reading them is too difficult I suppose.No, you suppose wrong, reading the tutorials is not too difficult, I just missed the bit where it showed you can set the content pane of the JDialog just like you can with the JFrame. So sorry I just missed this in the tutorial, most of it seemed how to create nice little convenience dialogs and not custom dialogs, Thanks!

  • Modal INLINE dialog windows

    Hello,
    I'm facing some issues with the modal dialog windows that are embedded in an window and are not opened as a separate window. I saw the "tutorials" in different weblogs and the book of Jung/McKellar for the "F4-Help". It works well unless I integrate it into the portal. There, I do have two issues:
    1. It looks much different as if I would open it directly from the backened system. The close/maximize buttons are different and the ok button at the botton is on the right side and not on the left side. It's not tragical but I'm asking why.
    2. It's only possible to open ist once. If I open it the second time I dont see any buttons like maximizing etc.
    I really hope anyone of you can help me. It's a great feature and I would appreciate any help and reward point therefore.
    thanks and regards
    Markus Armbruster

    hi
    good
    go through this link,might give you some solution
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCDWBERG/BCDWBERG.pdf
    http://www1.sapdesignguild.org/resources/ma_guidelines_2/ma_guidelines_2.pdf
    thanks
    mrutyun^

  • Übergabeob​jekt bei nicht-moda​len Dialog mit SUDDlgCrea​te möglich ?

    Hallo,
    verwende in DIAdem11 die neue Funktion eines nicht-modalen Dialogs. Erzeugt habe ich das Dialogobjekt mit dem Befehl "SUDDlgCreate". Funktioniert bisher auch alles bestens.
    Nun wollte ich jedoch ein Objekt (welches verschiedene Variablen enthält) an den Dialog übergeben.
    Bei dem Befehl "SUDDlgShow" gibt es ja den optionalen Übergabeparameter "SudDlgArgument". Diesen vermisse ich jedoch bei "SUDDlgCreate".
    Wie kann ich ein Objekt an einen nicht-modalen Dialog übergeben?
    Mit globalen Variablen "Call GlobalDim("Variable")" geht es, möchte ich aber nicht so gerne verwenden.
    Vielen Dank
    M.Schneiders

    Habe mittlerweile in einem anderen Forum Hilfe erhalten.
    Zur Info:
    Eine Übergabe wie beim Befehl "SUDDlgShow" ist nicht möglich. Bleibt nur die Variante mit der globalen Variable oder aber mit den Befehlen "EventCustomAction(Param)" und "RunCustomAction" Daten auszutauschen.
    Gruß
    M.Schneiders

  • UI Problem: Selectable Dialogs with Tab & IListBoxController

    Hi,
    I'm trying to implement a configuration dialog with some tabs like the BasicSelectableDialog example from the sdk. I'm pretty sure I did all the relevant steps like defining LocaleIndex, IDList, IDListPair, Bosses etc. as well as the creator implementations. However when trying to pop up the dialog I get this error message:
    "Cannot find IListBoxController on this selectable dialog. Is it a dropdown selectable dialog?"
    In the ActionComponent I've implemented this:
    if (dialogSwitcher == nil)
    ASSERT_FAIL("BscSlDlgActionComponent::DoBasicSelectableDialog:DialogSwitcher invalid");
    break;
    } //ASSERT does not fail, I get the dialogswitcher
    //still ok
    dialogSwitcher->SetDialogServiceID(kConfigDialogTabService);
    // this produces the error stated above:
    dialogSwitcher->SwitchDialogPanelByID(kProjectTabWidgetID);
    As a matter of fact, I don't know what Indesign wants to tell me with this, Listboxcontroller? Why would I want something like that on my dialog? ; ) Ok seriously, I guess I'm missing _some_ list definitions/declaration, propably of what should be in the panel, but the IDList is(are) defined in the fr file, so what else is missing?
    Below some snippets from my code, the resource defs for the dialogs are missing but they are just the same as in the sdk example.
    //Dialog holding the tabs
    type ConfigDialog(kViewRsrcType) : DialogBoss(ClassID = kALConfigDialogBoss)
    //a tab (other tabs are just the same, so I'm leaving them out
    type ProjectTabWidget(kViewRsrcType) : PrimaryResourcePanelWidget(ClassID = kALProjectTabBoss)
    //tab list
    resource IDList (kConfigDialogTabOrderingResourceID)
    kALProjectTabBoss, //correspondingWidgetID is kProjectTabWidgetID
    kALOtherTabBoss,
    kALAnotherTabBoss,
    resource IDList (kProjectTabCreatorResourceID)
    kConfigDialogTabService,
    resource IDListPair (kProjectTabCreatorResourceID)
    kConfigDialogTabService, kProjectTabResourceID, kALPluginID,
    resource LocaleIndex (kProjectTabResourceID)
    kViewRsrcType,
    kWildFS, k_Wild, kProjectTabResourceID
    //and the class defs, they CreatorImpl's were adapted from the sdk example
    Class
    kALConfigDialogBoss,
    kTabSelectableDialogBoss,
    IID_IDIALOGCREATOR, kConfigDialogTabCreatorImpl,
    IID_IOBSERVER, kConfigDialogTabObserverImpl,
    Class
    kALProjectTabBoss,
    kPrimaryResourcePanelWidgetBoss,
    IID_IPANELCREATOR, kProjectTabCreatorImpl,
    IID_IK2SERVICEPROVIDER, kDialogPanelServiceImpl,
    Any help would be greatly appreciated, I know I can allways try to repeat the process of importing/adapting from the example until it works, but I really wan't to understand this and not just copy some code ; )
    Thanks,
    Marc

    Solved, and ist really a "doh!": when defining the
    NativeTabsWidget for the parent dialog holding the tabs I defined my own WidgetID for it instead of using SDK defined "kSelectDialogSelectionWidgetID" as ID. Don't ever do this ; )

  • Modal progress dialog

    Hi all
    I am having an interesting problem that hopefully some java guru can help me with. I would like to display a modal dialog while I do some database processing. The problem of course is that once you have shown the modal dialog, nothing can be done until it is disposed. Any ideas gratefully received.

    One way to do this is to create a new thread to do your database processing. This thread can then update the progress bar as it executes.

  • How to implements a modal message dialog

    Hi~~
    I am developing a game and I need to show a question dialog .Player can start game after answering this question, but I find it difficult to implement it. Can anyone know how to implement it?
    thank..

    Look at the API for JOptionPane.showXXXXDialog()

  • How to create a new tab to a dialog box in Illustrator CS3 Plug-in?

    Hi,
    Im creating a dialog using Plugin in Visual Studio 2005. I need to add another dialog in tab.
    For example in the existing sample dialog another dialog Test has to be added.. How this can be done?
    Anyone guide me..

    It sounds like you're trying to get a floating panel dialog to dock with another one -- is that the case? If so, that's what I was trying to clarify earlier in the thread; there are tabs on modal dialogs, and there are tabbed docked panels, and they're two different things
    If you're trying to dock two panels, you're on the right track -- you can definitely use sADMDialogGroup->SetTabGroup(). It does require you to know the name of the dialog group you're adding it to though. Typically, you use this functionality to restore a panel to wherever it was when Illustrator was last running, and you use preferences to store the value in the meantime. If you're just trying to stick two dialogs together, you need to make sure of a few things:
    1) They're both using a dialog style from this list: kADMResizingFloatingDialogStyle, kADMFloatingDialogStyle or kADMTabbedFloatingDialogStyle.
    2) They have to both have their Tab Group set to the same string value.
    That should dock them together, but again, typically you just grab the tab group on shutdown and save it to preferences, then on load read it from preferences and set it on the dialog again. That way they get regrouped wherever they last were.

  • In the expression editor dialog box my TAB key doesn't function correctly

    This is bizarre behavior that seems to have started recently.
    In Visual Studio 2012, an SSRS project, any expression editor dialog:
    The tab key doesn't work right.
    Open the expression editor and:
    * I see a blinking cursor and I can type in the expression box.
    * If I hit the tab key, the cursor disappears and I cannot type.  I appear to lose focus in the editor but focus doesn't appear to go anywhere else in the dialog box.
    * If I hit the tab key a 2nd time, the cursor is still gone and I cannot type. 
    * If I hit the tab key a 3rd time, I can finally type again and note that I am now
    3 tabstops in.  In other words it seems like the tabs were working but I lost the ability to type anything until I "tab" 3 magical times. 
    I can work around this by hitting tab key then grabbing the mouse and clicking where the cursor SHOULD be which returns focus to the text area.
    Hopefully this image helps clarify:
    Anybody know what is wrong?
    Microsoft Visual Studio Professional 2012
    Version 11.0.61030.00 Update 4
    Microsoft .NET Framework
    Version 4.5.50709
    Installed Version: Professional
    LightSwitch for Visual Studio 2012   04938-004-0034007-02367
    Microsoft LightSwitch for Visual Studio 2012
    Office Developer Tools   04938-004-0034007-02367
    Microsoft Office Developer Tools
    Team Explorer for Visual Studio 2012   04938-004-0034007-02367
    Microsoft Team Explorer for Visual Studio 2012
    Visual Basic 2012   04938-004-0034007-02367
    Microsoft Visual Basic 2012
    Visual C# 2012   04938-004-0034007-02367
    Microsoft Visual C# 2012
    Visual C++ 2012   04938-004-0034007-02367
    Microsoft Visual C++ 2012
    Visual F# 2012   04938-004-0034007-02367
    Microsoft Visual F# 2012
    Visual Studio 2012 Code Analysis Spell Checker   04938-004-0034007-02367
    Microsoft® Visual Studio® 2012 Code Analysis Spell Checker
    Portions of International CorrectSpell™ spelling correction system © 1993 by Lernout & Hauspie Speech Products N.V. All rights reserved.
    The American Heritage® Dictionary of the English Language, Third Edition Copyright © 1992 Houghton Mifflin Company. Electronic version licensed from Lernout & Hauspie Speech Products N.V. All rights reserved.
    Visual Studio 2012 SharePoint Developer Tools   04938-004-0034007-02367
    Microsoft Visual Studio 2012 SharePoint Developer Tools
    ASP.NET and Web Tools   2012.3.41009
    Microsoft Web Developer Tools contains the following components:
    Support for creating and opening ASP.NET web projects
    Browser Link: A communication channel between Visual Studio and browsers
    Editor extensions for HTML, CSS, and JavaScript
    Page Inspector: Inspection tool for ASP.NET web projects
    Scaffolding: A framework for building and running code generators
    Server Explorer extensions for Windows Azure Web Sites
    Web publishing: Extensions for publishing ASP.NET web projects to hosting providers, on-premises servers, or Windows Azure
    Color Theme Designer   1.0
    Designer for creating new color themes
    NuGet Package Manager   2.8.50126.400
    NuGet Package Manager in Visual Studio. For more information about NuGet, visit http://docs.nuget.org/.
    PreEmptive Analytics Visualizer   1.0
    Microsoft Visual Studio extension to visualize aggregated summaries from the PreEmptive Analytics product.
    SQL Server Analysis Services   
    Microsoft SQL Server Analysis Services Designer 
    Version 11.0.3369.0
    SQL Server Data Tools   11.1.40706.0
    Microsoft SQL Server Data Tools
    SQL Server Integration Services   
    Microsoft SQL Server Integration Services Designer
    Version 11.0.3369.0
    SQL Server Reporting Services   
    Microsoft SQL Server Reporting Services Designers 
    Version 11.0.3369.0
    BIDSHelper
    BIDS Helper 2012 - An add-in to extend SQL Server Data Tools - Business Intelligence (SSDTBI formerly BI Development Studio)
    (c) 2014 Version 1.6.6.0
    http://www.codeplex.com/bidshelper
    SQL Prompt 6
    For more information about SQL Prompt, see the Red Gate website at
    http://www.red-gate.com
    For customer support, call 1-866-733-4283.
    Copyright © 2006–2009 Red Gate Software Ltd

    Hi Bostaevski,
    Thank you for posting in MSDN forum.
    According to your description, as you said that the cursor disappears and cannot type issue. It seems that the issue may be not Visual Studio the VS IDE issue.
    In addition, I find a similar thread about the
    Expression Editor Cursor Issue,
    please see:  
    http://www.beta.microsoft.com/VisualStudio/feedbackdetail/view/780682/vs-2012-rdlc-expression-editor-cursor-issue#.
    Therefore, I suggest you could also try to press alt with left and right arrow keys and check if it is works fine.
    Thnank for your understanding!
    Best Regards,
    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.

Maybe you are looking for

  • Is mpd the right solution for me?[more questions!]

    My scenario is as follows: I'm at work all day, but I want to listen to my music at home. I have complete access to SSH to my computer at home, I can open ports and all that from here. When I was running windows, I could just TS into my box, and hit

  • Phatnoise Mass USB Storage Device : Not being detected anymore by my Mac...

    Basically as the title says really. It worked perfectly fine a few months ago and now nothing at all. When I plug the USB lead in it used to be recognized straight away. I have tried rebooting my Mac with the device already connected and that still h

  • Image in MAIL

    I know that some time ago I put a picture (of myself) to be used in outgoing Mail. In the meantime, I lost/misplaced my "how-to" reference. I'd like to change again it, but can't find any instructions Tried this "Support," Google without any luck how

  • I just rented a movie on my 4s but now I can't find it...where is it?

    I just rented a movie on my 4s but now I cant find it. Anyone know how to watch it?

  • Deep Cloning problem

    I am having problems deep cloning a LinkedList object which contains serializable objects. I have tried using hand coded deep cloning and using the byteArray output and input streams. But nothing is working :(. My code currently looks like this: publ