Problem with MFC Dialog!

Hi,all!
I use Acrobat Plugin wizzard to create a plugin support MFC,and add a dialog resource into it.
I want to know whether there is other way to show dialog except using ADM. The dialog contains some controls not supported by ADM,such as CListCtrl in MFC. Thanks.

Sure - just use standard Windows/MFC calls all you want.
Leonard

Similar Messages

  • Secure printing problems with the dialog box

    Hi!
    Some one which has problem with the scure dialog box then using secure printing?
    then we print in Adobe acrobat reader X 10.0.1 the dialog box for entring your pin nummer appearing under acrobat, causeing the program to locking until you go to the dialog box and clicking on it and enter the pin. The problem is that adobe not showing the dialog box in front of the printing overall dialog.
    had nog problem with the old 9, it started then we uppgraded. Haw tride a nother driver but haw same issue. And all other programs works greate, word, notepat etc so it is just Adobe that has the problem.. ?
    /J

    Hi!
    Its´s XP sp3 and the printer is a network printer(Toshiba e-studio 4520c)  running a PCL6 driver.
    Screen capture is not so much to see i think, running Swedish interface to. The ordinary dialogbox för printing is the first thing thats pops up, and then adobe reader frezes because the secund box pops up under adobe, you can click on it in the "toolbar" to continue. One thing that is diffrent when you print in adobe is that you can se on the "toolbar" for the popup box for the pin/password box is a Adobe icon on it. It is not so in example when printing in word, ie8 etc.
    The problem is that many users dont see it and thinks the program has stopt working.
    Im now going to try the PS driver from toshibas homepage..
    thanks for help!

  • Problems with Print dialog

    Hello!
    I have two problems with a print dialog. First, I can not set the default page size to A4. Secondly, the program, or at least GUI, hangs, after the dialog is closed. It did not happen in Java 1.4, but it does in Java 1.5. Using the debugger in Netbeans to pause the hung program shows no thread position, and the stack trace window is empty too.
    Here is the code of the method that opend the print dialog and then prints the image. The setEnabled() method disactivates the main window while the dialog is shown.
    * Prints the tactile image. If the printing fails, shows an
    * error message.
    void printTactileImage() throws ImageException, InterruptedException,
         InvocationTargetException {
         DocumentPrint documentPrint = new DocumentPrint(document);
         final PrinterJob printerJob = PrinterJob.getPrinterJob();
         printerJob.setPrintable(documentPrint);
         final HashPrintRequestAttributeSet attributes =
              new HashPrintRequestAttributeSet();
         attributes.add(MediaName.ISO_A4_WHITE);
         final boolean[] print = new boolean[1];
         javax.swing.SwingUtilities.invokeAndWait(new Runnable() {
              public void run() {
                   setEnabled(false);
                   print[0] = printerJob.printDialog(attributes);
         if(print[0]) {
              showStatus(tlte( "printing_dots" ));
              try {
                   printerJob.print(attributes);
              } catch(PrinterException e) {
                   final JFrame thisFrame = this;
                   final String titleString = tlte("shared_error");
                   final String messageString =
                        tlte("shared_could_not_print_document") +
                        e.toString() +
                   javax.swing.SwingUtilities.invokeAndWait(new Runnable() {
                        public void run() {
                             JOptionPane.showMessageDialog(thisFrame,
                                  messageString,
                                  titleString,
                                  JOptionPane.ERROR_MESSAGE);
         javax.swing.SwingUtilities.invokeLater(new Runnable() {
              public void run() {
                   setEnabled(true);
    }Thanks!
    Artur

    An additional info about the error dialog: the `OK' button in the dialog did not work, yet the animation in the main window was running at the same time.
    The program was also a bit different when I ran it in Java 1.4 - the print method was probably the same though.
    I have just disabled the animation to check if it causes the problem, but the print dialog and the error dialog were still not responding after opening.
    The method for opening files:
    * Opens a document. Should not be called from the event dispatch
    * thread. If the opening fails, an error message dialog is shown.
    * @param fileName                         file name of the opened document
    void openDocument(String fileName) throws InterruptedException,
         InvocationTargetException {
         final boolean firstDocument = document == null;
         try {
              javax.swing.SwingUtilities.invokeAndWait(new Runnable() {
                   public void run() {
                        setEnabled(false);
              File file = new File(fileName);
              String name = file.getName();
              document = new Document(name, fileName,
                   edgeThreshold, textureScale,
                   variableTextureDensity,
                   textureMappingOptions,
                   this);
                   javax.swing.SwingUtilities.invokeAndWait(new Runnable() {
                   public void run() {
                        documentView.setDocument(document);
                        documentView.setViewMode(viewMode);
              document.setPrintImageType(tactileImageType);
              setTitle(WINDOW_TITLE_PREFIX + " - " + name);
              javax.swing.SwingUtilities.invokeLater(new Runnable() {
                   public void run() {
                        if(firstDocument)
                             setEnabledDocumentOperationComponents(true);
                        setEnabled(true);
         } catch(DocumentException e) {
              final JFrame thisFrame = this;
              Object[] messageArguments = {
                   new String(fileName)
              final String messageString =
                   new MessageFormat(tlte( "shared_could_not_open_file" ), getLocale()).
                        format(messageArguments) +
                   ":\n" + e.toString() + ".";
              javax.swing.SwingUtilities.invokeAndWait(new Runnable() {
                   public void run() {
                        JOptionPane.showMessageDialog(thisFrame,
                             messageString,
                             tlte("shared_error"),
                             JOptionPane.ERROR_MESSAGE);
              setEnabled(true);
    }

  • Problem with file dialog (root frame)

    Hi guys
    I�m having a problem with open up a filedialog.
    I have a rendered jlist and the are some items inside. The user, can right click any item and choose from a list some commands (print, save, update etc)
    Everything works fine but when he clicks the SAVE option (again, right click and choose save)
    FileDialog fd = new FileDialog(new JFrame(),"Save PAX list",FileDialog.SAVE);
    I cannot use new JFrame() (as I did above) because it might block the application.
    For this I�m trying to get the root by:
    Component c = SwingUtilities.getRoot((Component)e.getSource());
    JFrame myFrame = (JFrame)c;
    And than:
    FileDialog fd = new FileDialog myFrame,"Save PAX list",FileDialog.SAVE);
    This get me a null frame :- (
    Anyone?

    The following worked on a "normal" menu item. I didn't test it on a "popup" menu item:
    JMenuItem mi = (JMenuItem)e.getSource();
    JPopupMenu popup = (JPopupMenu)mi.getParent();
    Component c = SwingUtilities.windowForComponent(popup.getInvoker());
    System.out.println(c);

  • Customized KeyboardFocusManager problems with JOptionPane-Dialogs

    Hi,
    I have a problem I'm not able to solve: With Java 1.4.2 unter Linux, as well as all newer Java Versions (1.4, 1.5, 1.6) under Windows, dialogs created by JOptionPane.showXXXDialog do not react to keyboard events like <Tab> any more when using a customized KeyboardFocusManager. Java 1.5 and 1.6 under Linux work fine.
    Here is what I did:
    I have a JFrame and want some customized focus control when navigating through the Frame with <Tab>. Therefore I've implemented a class
    public class EfaFrameFocusManager extends DefaultKeyboardFocusManagereand said in the main JFrame:
    EfaFrameFocusManager myFocusManager = new EfaFrameFocusManager(this,FocusManager.getCurrentKeyboardFocusManager());
    FocusManager.setCurrentKeyboardFocusManager(myFocusManager);The constructor of my EfaFrameFocusManager stores the JFrame (this) and the original KeyboardFocusManager (2nd arg) for later use. Within my own FocusManager, I've implemented the method
    public void processKeyEvent(Component cur, KeyEvent e)which is checking whether the desired Frame (efaFrame) is currently active or not. If it is active, it's performing my customized operations which is working well. If it is not active (e.g. because a dialog created with JOptionPane.showConfirmDialog() is open), it should perform default actions. So I said within processKeyEvent:
    if (!efaFrame.isActive()) { // efaFrame is the previous "this" arg
      fm.processKeyEvent(cur,e); // fm is the previously stored CurrentKeyboardFocusManager
      return;
    }Instead of invoking processKeyEvent on the original KeyboardFocusManager fm, I also tried super.processKeyEvent(cur,e);, but without any change in behavior.
    As I said before, this is working well under Java 1.5 and 1.6 with Linux.
    However, it is not working unter Windows (any Java version I tried, including 1.4, 1.5 and 1.6) and also not unter Linux with Java 1.4. With these combinations, dialogs created by JOptionPane.showXXXDialog(...) do not respond to the <Tab> key. I do see that my own FocusManagers processKeyEvent method is invoked, and I also see that it invokes the one of the original FocusManager, but the Dialog doesn't react.
    What am I doing wrong?
    Nick.

    I have a JFrame and want some customized focus control when navigating
    through the Frame with <Tab>. sounds like you should be doing this via a FocusTraversalPolicy
    http://java.sun.com/docs/books/tutorial/uiswing/misc/focus.html#customFocusTraversal

  • Problems with message dialog

    import javax.swing.*;
    JFrame frame = new JFrame();
    JOptionPane.showMessageDialog(frame, "message');
    the only problem is that my message is too long for the dialog box, is there any way I can shrink the size of it, or perhaps stack the lines on top of each other within the same dialog box

    the html code did not work, it instead was just shown as part of the string. the program did not seperate it and break the line. any other suggestions???

  • AS Droplet in XCode - Problem with display dialog with title

    hi,
    i am using XCode to create an AS droplet.
    wondering why i cant set a title to my display dialog code.
    during search in this forum i found this thread:
    http://discussions.apple.com/thread.jspa?messageID=6364939&#6364939
    but to be honest, i didn't expect that i am limited in Xcode too.
    Short code example:
    display dialog "foo"
    works
    but
    this code:
    display dialog "foo" with title "bar"
    not.
    Would be great to find a workaround to get dialogs with titles.
    And on the other hand to understand why i cant use title in Xcode.
    btw: is it possible to format the output of a display dialog ?
    i.e. creating new lines ?
    best regards
    fidel

    Hello
    I'm not sure but you may try 'run script' to invoke 'display dialog' of Standard Additions.
    Something like this.
    --SNIPPET
    set t to "line 1
    line 2
    line 3
    line 4"
    run script "display dialog \"" & t & "\" ¬
    with title \"Testing\" ¬
    buttons {\"OK\"} default button 1"
    --END OF SNIPPET
    As for 'display dialog' in AS Studio, it differs from and overrides 'display dialog' command in Standard Additions. Don't know why it does not have 'with title' which is rather new parameter introduced with AS 1.10 (OSX 10.4).
    cf.
    AppleScript Studio Terminology Reference (pdf)
    Panel Suite > Terminology > Commands > display dialog
    Regards,
    H
    Message was edited by: Hiroto

  • Problems with Java dialog instance after System Copy

    Hi Folks,
    I've performed a System Copy from PRD to QAS both ABAP and JAVA Stack (Netweaver 2004s SEM-BW). The ABAP is up and running and the central instance JAVA too. But there was two applications (dialog instances JAVA) that desappeared after the HSC. I can't see them in Visual Administrator and can' t start them as well.
    Will you give a hand on it? I know this is a pretty weird situation but if somebody experienced this please help me. As far as I know I've double-check the procedure used for this System Copy and everything has been followed.
    Best regards,

    Hi Prem,
    Yes, this sap note is very useful, but there is no reference to Java Dialog Instance, which in this case SAP said that we need to re-install all Dialog instance, in my case I have two Appl Servers which has Java Dialog Instance installed so I have to re-install twice.
    Regards,
    Washington Neves

  • Problem With File Download Dialog Box

    Hi all,
    I have jsp page that allows a user to export oracle data to excel.
    I have these code in my page:
    <%@ page contentType="application/vnd.ms-excel" %>
    response.setContentType ("application/vnd.ms-excel");
    response.setHeader ("Content Disposition",
    "filename=\"historicalrate.xls\"");
    I run the page and it popups a file download dialog box with Open and Save buttons.
    When I click the Save button a Save As window opens with a hr.xsl file name and Microsoft Excel Workbook(*.xls) as save type. It is what I want.
    The problem I have is when I click the Open button on the file download dialog box it displays data in excel format on a browser well. Then I click File > save as on browser's tool bar the Save As window pop up with no file name and a default Text(tab delimited)(*.txt).
    I need the file name and Microsoft Excel Workbook(*.xls) as default save type.
    Any help would be greatly appreciated.
    Please help
    Thanks

    I have the same problem with hui_ling.
    When user click on "Open", Excel start and open excel file correctly but the file name on excel title bar. 'Cause the file name is in Japanese characters. Any one can help me?
    Message was edited by:
    TNTVN

  • Annoying problem with shift key in limit dialog Brio 6.6.4

    <p>My company uses Brio Insight & Designer v6.6.4.  We (meaning almost all users) are encountering an annoying problem whenadding a limit to a query using the limit dialog.  When try toenter a limit value using the shift key, as in Shift T to enter acapital T, the limit value field ends up with a value like"TTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTT".  Thisis very annoying and widespread problem with us.  It seemed tostart when we upgraded to Win XP SP2.  Is there a solution forother than to "upgrade to the latest version"?</p>

    Unfortunately not. The only way we avoided this issue was to upgrade or write the text into a text editor and cut and paste the text into the section name box.

  • 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;

  • Problem with PJC (Print Dialog) - Forms 10g

    I have a problem with my PJC for Forms 10g r2. When I try to connect and run my PJC (raise Print dialog and put printer name in some text item) I get following message:
    oracle.forms.net.ConnectionException: Forms session <2> aborted: unable to communicate with runtime process.
         at oracle.forms.net.ConnectionException.createConnectionException(Unknown Source)
         at oracle.forms.net.HTTPNStream.getResponse(Unknown Source)
         at oracle.forms.net.HTTPNStream.doFlush(Unknown Source)
         at oracle.forms.net.HTTPNStream.flush(Unknown Source)
         at java.io.DataOutputStream.flush(Unknown Source)
         at oracle.forms.net.StreamMessageWriter.run(Unknown Source)
    When I started application, on Java console I saw this message, so I think the server configuration is fine (I change everything I need in Default.env and FormsWeb.cfg files):
    Loading http://devsrv/forms/java/jESPrintDialog.jar from JAR cache
    What can I change with server configuration or deploying my project to this PJC can work normaly?
    Thanks....

    Hi and thanks!
    I resolve one part of my problem. Tt was about diferent compiler (in JDeveloper 10.1.3 compiler is 1.5 and in my oc4j server JRE is earlier version, so it can`t work normaly).
    I comiled PJC in 1.4 version of compiler and now I can start and run my PJC.
    But, there is another problem:
    this is my part of java code (note: everything work fine except one line when I want to get printer name from select printer dialog):
    try {
    boolean b;
    PrinterJob job = PrinterJob.getPrinterJob();
    b = job.printDialog();
    try {
    return job.getPrintService().getName();
    catch (Exception e) {
    System.out.println("Error: "+e.getMessage());
    return "My error:";
    } catch (Exception e) {
    System.out.println("ERROR: " + e.getMessage());
    return "Problem with PJC [esoft]";
    So, when pjc want to get back printer name
    return job.getPrintService().getName();
    i get following error (on Java console):
    java.lang.NoSuchMethodError
         at happypjc.PDialog.getProperty(PDialog.java:50)
         at oracle.forms.handler.UICommon.onGet(Unknown Source)
         at oracle.forms.engine.Runform.onGetHandler(Unknown Source)
         at oracle.forms.engine.Runform.processMessage(Unknown Source)
         at oracle.forms.engine.Runform.processSet(Unknown Source)
         at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
         at oracle.forms.engine.Runform.onMessage(Unknown Source)
         at oracle.forms.engine.Runform.processEventEnd(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.redispatchEvent(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    Can you give me some hint about it. Everything is OK now, except this (very important) peace of code!
    best regards
    mret

  • "Dialog box "PROBLEM WITH SHORTCUT"

    When my T40 p starts up I keep getting the following message, over and over again until I close the system tray IBM Connect bar. 
    "Dialog box “PROBLEM WITH SHORTCUT”
    The drive or network connection that the shortcut IBM Access Support.lnk refers to is unavailable.  Make sure that the disc is properly inserted to the network resource is available, and then try again. "
    Help!

    You'll need to find your iTunes folder. It's usually located on your main hard disk under My Documents/My Music/iTunes. Copy this whole folder to another hard drive (if possible) or burn it on a CD (probably will take more than one--depending upon how large your library is) or DVD. Once you have a good backup of your library, try downloading and reinstalling iTunes.

  • Problem with 'Save as' dialog

    Hi,
    i have a strange problem with my 'Save as' dialog in all my appications, whenever i 'save as' it goes to my documents folder all the time, it used to go to the last folder i'd saved to. anybody have any clues as to what's going on? also, it doesn't seem to have the little traingles beside the folders anymore, so you can't click on them to quickly see what's in the folders.
    this is on a powerbook Ti 1Ghz running 10.4.7
    thanks

    thanks Peter for trying to help
    ok, i've narrowed down the problem, it seems that when i try and save a file onto one partition of one of my ext drives it won't save to my last save dir but if i save to another partition/drive it works ok, also if i rename the 'dodgy' partition it also seems to work ok, so somehow the name of the drive has become corrupted.
    anybody ever heard of this? or how i could fix this as it's a quite annoying because alot of my audio files are referenced on this partition, so itunes or Cubase (audio sequencer) can't find my files now.

  • Cursor problem with dialogs

    Hello all!
    I'm having this problem with cursors:
    I have a frame, and when an action in process, a modal dialog is displayed with the message "Please wait...". During the operation I set the cursor of the modal dialog and the frame to "Cursor.WAIT_CURSOR".
    My problem is that only when the mouse is over the modal dialog, only then the cursor is WAIT_CURSOR (I want to be WAIT_CURSOR all over the frame). Most probably this is because the frame is not active (because of the modal dialog) and so the cursor is not changed there.

    stebou, adammc, welcome to the forum,
    you could try turning off the touchpad tapping feature, or reducing it's sensitivity. It maybe that you are brushing the touchpad whilst typing. Using the Fn + F8 key combination will get you to the UltraNav settings.
    Hope this helps
    Andy  ______________________________________
    Please remember to come back and mark the post that you feel solved your question as the solution, it earns the member + points
    Did you find a post helpfull? You can thank the member by clicking on the star to the left awarding them Kudos Please add your type, model number and OS to your signature, it helps to help you. Forum Search Option T430 2347-G7U W8 x64, Yoga 10 HD+, Tablet 1838-2BG, T61p 6460-67G W7 x64, T43p 2668-G2G XP, T23 2647-9LG XP, plus a few more. FYI Unsolicited Personal Messages will be ignored.
      Deutsche Community     Comunidad en Español    English Community Русскоязычное Сообщество
    PepperonI blog 

Maybe you are looking for

  • Gettin Error While activating Device Mapping Rule

    Hi all,         I am getting below error while generating Device attribute mapping Rule : Err:Metainfo FM MMW_DM_DSMS_METH_META - Class Name not specified Any idea how to resolve this problem. Regards, Abhishek

  • Counting date transactions for last six months

    Post Author: crystalrook CA Forum: Formula Any help is greatly appreciated.  I am running Crystal XI. I have an order field (PurchaseOders.PODatePlaced) for each item. There can be multiple orders in the same month for each item of course.  I would l

  • MOTOROKR T505 Bluetooth In-Car Speakerphone with Digital FM Transmitter

    Hi, Has anyone tried this product yet with their iPhone? Does anyone have any other products like this one they recommend? Thanks, Jerry

  • Scanned jpeg file crashes computer

    I have a Canon 8800F printer.  It's worked fine using Mavericks, but I just bought a new iMac that's running Yosemite (10.10.3) and it's been a nightmare. At first the 8800F wasn't showing up at all, but I found directions about resetting the printin

  • An Online Shopping Cart

    I need an online shopping cart (Professional) which is made in JSP technology.. Thanks