Search results

  1. D

    Copy/Paste broken

    No matter what I copy, it doesn't go in the clipboard. The clipboard is empty, paste command does nothing. I've looked for pbs in activity monitor, and it's not there... If I manually start it with /System/Library/CoreServices/pbs, it disappears after a few seconds. I can't drag/drop text...
  2. D

    Dead G5?

    When I woke up this morning, I found that my G5 was off. I pressed the power button and nothing happened. I've reset the PMU per apple.com, but still nothing. Any advice? Thanks
  3. D

    Setting up Postfix

    How can I get Postfix configured to send mail properly, and redirect sendmail requests to it?
  4. D

    Finder windows won't refresh

    If I copy a folder to my mac from another machine, or if I create files in it via the command-line, the Finder won't show the files in the window. I can close it, open again, get info on it, etc. and the files still won't show. I did figure out yesterday that I can drop another file into it...
  5. D

    Fixing spaces in pathnames

    Is there a way with cocoa to programmatically fix spaces in path and filenames? I'm sending the path or filename to an NSTask, so it needs to be formatted right for the command line to be happy... Any suggestions? -Dogcow "moof!"
  6. D

    Cocoa OpenGL...HELP!

    I'm trying to use the example in /Developer/Examples/OpenGL/Cocoa/CocoaGL to draw a single pixel inside the MyOpenGLView. Does anyone have any experience trying to do this? I've simplified the drawRect function to: I added these two lines...I though they'd draw a pixel: Any...
  7. D

    another newb int question...

    I have a method that accepts an integer and returns an integer. I can call it with myInt = [self myMethod:myInt]; But when I try to send in an element of an integer array... myInt = [self myMethod:myIntArray[i][j]]; it results in an infinite loop. Is there some syntax I'm...
  8. D

    no dynamic memory allocation in obj-c?

    I declared an integer array in my header file: int *data; and am now trying to set the size of that array once I pull the dimensions from two textfields: data = new int[x][y]; but Project Builder complains that 'new' is undeclared. Why doesn't this work? Any way to get around...
  9. D

    Int to String?

    I have a 2-d Integer array and an NSString. How can I append an integer onto the back of NSString? I normally use appendString for strings, but does anyone know how to put the int into it? Thanks, -Dogcow "moof!"
  10. D

    NSTableView?

    A small (but essential) part of a program I will soon start coding has me stumped... I'll be creating a 2-d array of integers such that an element is less than the element below it and beside it. (Basically this will be a table of random numbers that are just in ascending order, first to the...
  11. D

    NSProgressIndicator

    I'm attempting to learn Cocoa programming and I've managed to stump myself... I'm trying to use a ProgressIndicator and can't figure out how to get it to work: IB won't let me have a button in my program activate the throbber since that button already does something else. So I've created an...
  12. D

    method selecting not working

    Option-double-clicking as well as command-double-clicking on method names (such as setFloatValue) no longer brings up a documentation pop-up menu. What can I do to get this feature back? Thanks, -Dogcow "moof!" "Reduce overpopulation, please spay and neuter your children."
  13. D

    odd apache behavior

    I have all my music and media files shared on-campus via apache indexing. Recently, when I've connected with remote computers, they start to download from me but only get a little bit of the songs. The progress bar will show that they downloaded part of it, but it won't download the rest. Any...
  14. D

    VERY grizzled OpenGL coders needed

    I've spent the past week and a half working on an OpenGL program for a class. It took me three days just to find a texture loader that would compile, but whenf I attempt to run my program using the texture loader, it exits out. Also, once I added just a few lines of lighting code, my program...
  15. D

    java or objective c?

    As a junior in CSC who has used java extensively during my education, I'm very well-versed in it and very comfortable with it. However, I've been encouraged by many to not use java with cocoa and instead use objective c. I am NOT going to use the java.swing libraries as they are extremely...
  16. D

    NCU for OS X?

    Anybody else want a Carbonized version of Newton Connection Utilities? I hate launching classic just to run NCU. Does anyone have any experience working with stuff like this? I could try to program it, but my limited knowledge of NIC and how NCU interacts with the Newton would hold me back...
  17. D

    NSTextView- how to use?

    How do I output lines of text to a NSTextView? I simply need a way for a java app I'm working on to spit output out through it. Also, for future reference, what's a good way to learn how to use the Apple frameworks and cocoa elements? I've found documentation more or less useless. TIA
  18. D

    Newton .pkg files...

    I'm having trouble installing .pkg files on my newton. In the past, I remember I could either drag and drop these files to the connection window, or select install pkg and then select the pkg I wanted. But now none of the pkg files I've downloaded off the internet are working. They have...
  19. D

    Newton MP 130 for sale

    Newton MessagePad 130 • 2MB Flash ROM Card • Extra Newton 2100 Stylus • Leather Calise Newton Case • Original Newton Modem I'm selling because I'm upgrading to a Newton 2100. I have all the original documenation, disks, etc. If you don't know what these things can do, post a...
  20. D

    NSTextView w/ java

    Anyone had any luck using the NSTextView with java? The program I'm on needs a field to place a fair amount of data, so I decided on NSTextView. Will this be too hard to implement? Is adding data to it very difficult? If so then i can always resort to a simple label, but I'd really rather...
Back
Top