How to change size memory for an application under Classic ?

When I ask informations on my OS 9 application under OS X.4.4, I can no more change size memory ! I can no more use my application with Classic... ???

ROYCH: This is partly guesswork, but I think it may explain why your problem occurs.
When OS X is controlling your computer (as it always does on a Mini), the file Type and Creator attributes that OS 9 uses to identify different kinds of files are not used. OS X ignores them in files that have them. Files that are only used by OS X don't have them at all. When you create a new application in Classic mode under OS X, those attributes may not be assigned to it, so the new application may not have any.
But if you copy the new application to a computer running OS 9, and those attributes are missing, the OS 9 computer will have no idea what sort of file it is. OS 9 won't even know it's an application. To prevent that, I'm guessing that OS X somehow builds clues into the file that enable OS 9 to identify it as an application, and to give it the Type attribute APPL. I believe any file in OS 9 that has that Type attribute will display the Memory menu item in its Get Info window — not only in OS 9, but in OS X. So after you copy your compiled application onto a computer running OS 9 and then back onto your Mini, it has the APPL attribute, and the Memory item is available in its Get Info box.
I have one application, File Buddy, that can (among many other abilities) display and edit the OS 9 Type and Creator attributes of any file while running in OS X. It can be used to assign specific Type and Creator attributes to a file that has none. You could use it to assign the appropriate Type and Creator attributes to your compiled applications while you are running OS X. After you do so, maybe they will display the Memory menu item in their OS X Get Info boxes.
If this works, File Buddy can apply the same changes in Type and Creator to a whole folder full of files at once. That would be an easy way for you to accomplish the same thing for several compiled applications instantly, without having to copy them to a computer running OS 9.
I don't create applications, so I can't test this procedure to see whether it works. I will be interested to hear what happens if you experiment with File Buddy.
But after saying all this, I really have no idea whether the message you're seeing about insufficient memory is meaningful or spurious. You may go through the whole rigmarole of changing the memory allocation for your compiled applications, only to find that doing so still doesn't enable you to open them. I'll be interested to hear whether that's true, too. Good luck.

Similar Messages

  • How to change Apple ID for all applications in iPad2?

    I have changed Apple ID via Settings > Store > Apple ID > Sign out my old Apple ID > Sign in with my new Apple ID.... But, by this method, Apple ID in  iCloud, Facetime, and iMessage isn't changed follow to my new one! Do I misunderstand about changing ID? and How to change Apple ID for these applications?
    PS. I do not want to do hard reset my iPad2
    Thank you all for your kindly help ^^

    Go into Settings > iCloud > Account > Change to your new Apple ID
    Settings > Messages >  Recieve At > New Apple ID
    Settings > Facetime > Change to new Apple ID

  • How to change parsing schema for using application in test environment?

    Hi,
    I set up a test environment, i.e. an other Oracle schema with identical tables, views etc. to the productive environment. I wanted to duplicate the APEX application so that there will be a test version using the test Oracle schema and productive version using the productive oracle schema.
    Can some one please give me some tip how to do this? As far as I see i could change the parsing schema in the APEX Application install SQL in the following ways:
    1. While exportin the application with APEX
    2. In the result install f...sql file using search-replace
    3. While importing the APEX application via APEX Development GUI.
    I would prefere 1. or 3. but in both cases when I would like to change the schema name, the drop dowl list does not contain the test Oracle schema name. Do I have to grant something to the APEX worksspace schema for the test schema name to show up in the drop dowl list?
    Tamás

    On that screen,
    - click Create
    - select "Existing" Schema, click Next
    - select the Workspace, click Next
    - select the Schema, click Next
    - click Add Schema
    And now you'll end up with two schema's attached for the same Workspace.

  • How to change apple id for iphone application updates

    i think i have 2 apple id and dont know which one is the valid one

    Hi jabsykes,
    Welcome to the Apple Support Communities!
    It sounds like you may have downloaded or purchased applications from two different Apple IDs. To update those applications, you will need to sign in to the Apple ID that downloaded the applications initially. Please use the attached article for instructions on how to sign out and sing in to different Apple IDs on your iOS device.
    iOS: Sign in with a different Apple ID in the iTunes Store, App Store, and iBooks Store
    http://support.apple.com/kb/HT1311
    Have a great day,
    Joe

  • How to change apple ID for updating applications?

    When i first bought my iphone a friend put his apple ID so he could show me how to download apps.
    Although now i have my own ID and download apps with this one - every time i try to update some apps his email address pops up for which I do not have the password to. Is there a way to remove his ID from my phone completely and update my apps with my own ID? Any kind of help would be great on this

    Noble Seven, I actually did that deleted everything and then downloaded them again but for some reason it still does the same thing when i try to update them.
    I've noticed that the other email pops up even on the apps that i downloaded with my own ID...
    Thank you for trying to help guys

  • How does Java structure memory for an object's members?

    I'm trying to figure out how Java structures/allocates memory for objects. (Yes this is implementation specific. I'm using the Oracle 1.7 runtime for this.) I did some work on this here and here and the results are confusing.
    First off, in both referenced links, when I allocated an array of objects, the equivalent of new Object[10000], it used 4 bytes per object. On a 32-bit system this makes perfect sense. But I'm on a 64-bit system so what's going on here?
    Is Java limited to a 32-bit address space even on 64-bit systems?
    Is Java limited to a 32-bit address space per array and each array object then has a pointer to where the elements are?
    Something else?
    Second, I compared the memory footprint of 8 booleans vs. a byte as the variables in a class. The 8 booleans requires 24 bytes/object or 3 bytes/boolean. The single byte approach requires 10 bytes/object.
    What is going on with 3 bytes/boolean? I would understand 4 (making each an int) and definitely 1 (making each a byte. But 3?
    And what's with expanding a byte to 10 bytes? I would understand 8 where it's expanding a byte to a native int (I'm on a 64-bit system). But what's with the other 2 bytes?
    And in the case of different ways to create a RGB class it gets really weird.
    For a class composed of 3 byte variables it uses 24 bytes/instance. Expensive but understandable as each uses an int.
    So I tried where each class is a single int with the RGB stored in parts of the int (using bit shifting). And it's still 24 bytes/instance. Why on earth is Java taking 3 ints for storage? This makes no sense.
    But the weirdest case is where the class has a single variable of "byte[] color = new byte3;" Note that the byte is allocated so it's not just a null pointer. This approach takes less memory than the other two approaches. How???
    Any guidance as to what is going on here is appreciated. I have a couple of classes that get allocated a lot and the flywheel pattern won't work (these objects have their values changed all over the place).
    And an associated question, does the order of declaring variables matter? Back in the old days when I did C++ programming, declaring "int, byte, int, byte" used 4 int's work of space while "int, int, byte, byte" used 3.
    thanks - dave

    This is a quadruple crosspost.

  • How to change country and keeping all application upgraded ? thx

    how to change country and keeping all application upgraded ? thx

    you may change the userID/ passwd from menu or create conn segment for each of the userID/ passwd combination .

  • How to change the direction of my application ?

    apex 4.0 , db11gxe , firefox 24 ,
    hi all,
    how to change the direction of my application from left to right to right to left of vice versa ?

    newbi_egy wrote:
    sure i did , i found nothing ,
    provide me with a link if you have one
    thanks
    Hi,
    That's strange.
    Search works just fine for me
    https://forums.oracle.com/search.jspa?view=content&resultTypes=&dateRange=all&q=rtl&rankBy=relevance&contentType=all&con…
    Regards,
    Jari

  • How to change size of the fonts in report

    Hello:
    How to change size of the fonts in report for when I print it?
    Thank's

    Hi..,
    You cannot do that with REPORTS.., With scripts or smartforms u can do that !!
    plz do remember to close the thread, when your problem is solved !!
    reward if it helps u..
    sai ramesh

  • How to change default approval for ResourceAuthorizerApproval ?

    Hi,
    I'am new in OIM and I follow documentation where I found some predefined workflows. I'd like to use them.
    Could you tell me, step by step, how to change default approval for ResourceAuthorizerApproval (only for my new defined resource).
    I'm using OIM 11g and Design Console 11.1.1.3.0.2.0

    Ok, I made new tamplate (copy of existing one), there I changed Template Level Approval Process and set allowed resources. It seems to be ok :)
    If there are other solutions please share with me
    Thanks
    M.

  • How to change a color for a row in ALV grid display

    Hi,
       how to change a color for a row in ALV grid display based on a condition.Any sample code plz

    Hello Ramya,
    Did you check in [SCN|How to color a row of  alv grid]
    Thanks!

  • How to change material component for a Purchase Order?

    How to change material component for a Purchase Order?
    I need FM .
    PLEASE help

    Dear ,
    Create PO with item category L....There in Item detail you will get tab for material.
    There click in component Button, it will take you to the component screen there you can assign and deassign components.
    Hope this helps.
    Regards
    Utsav

  • How I change the icon for iTunes songs?

    When I drag iTunes songs onto my desktop the icon is white with a gray iTunes icon. How can change this icon for all of my iTunes songs?

    Thanks Patrick. I used Control-Click on the actual audio file on my desktop opened the Show View Options menu and turned off the icon preview option. That changed my icons from gray with a white background to red with a white background which is exactly what I wanted.  You pointed me in the right direction. Appreciate it.

  • I cannot find how to change the language for labels in a quiz

    I cannot find how to change the language for labels in a quiz

    You have to be aware that this will only change labels if you edit before adding quiz slides: Preferences, Quiz, Default Labels. You will have to edit the labels, choosing another language will not change them automatically.

  • How to change the Icon for a JFileChooser ?

    Has anyone figured out how to change the icon for an instance of JFileChooser from the coffee cup to something else?
    I'm on 1.4
    Thanks,
    Ken

    Never mind. I figured it out.
    You have to use an instance of JFrame in the call to showXxxxDialog(Component c). Set the icon of the JFrame to what you want the JFileChooser's icon to be.

Maybe you are looking for