Recent content by zots

  1. zots

    Help with a good school

    i fully agree with btoneill
  2. zots

    Php/MySQL/Apache problems, too, but different

    it will be easier to help if you post the code
  3. zots

    apache/php/mysql problem

    if the user you are using to connect to the db is not root then make sure you have done GRANT in mysql to give your user privileges. if thats not it post the specific error you are getting..
  4. zots

    Will Ferrell switch video

    Where did you hear about that? I would laugh my arse off, he is the funniest man alive!
  5. zots

    How do i make a form in html?

    here is a basic form: <form method="get" action="script.php"> <input type="text" name="txtTest"></input> <input type="submit" value="Go"></input> </form> this html will make a page with 1 text field and a submit button. in the form tag, the attribute method can be get or post. get...
  6. zots

    WhAt Is tHiS?

    the closest thing i found w/ advanced google search was edwin mccain-i'll be?
  7. zots

    IQ test

    i'm a visual mathematician, tell me something i don't know :D these tests are fun. edit: in my email the visual mathemetician showed an image of einstein. ppl who got other 'mind-types' what image did you get?
  8. zots

    when [object copy] doesn't work ... :S

    I am not entirely sure of this, but I think you have to implement the copy method. That is why you are getting selector not recognized.
  9. zots

    A good multibutton mouse for X ?

    does anybody else go through a mouse every couple of months(usually around 3 months). i find that my excessive q3 habits tend to wear out left and right click so i am always buying new mice. :( i wish there was an indestructible gamers mouse.
  10. zots

    Hide application After Execution

    NSApplication's hide and deactivate methods should do the trick. I can't answer the second question, but I would be interested to know how you register a hotkey if you find out.
  11. zots

    Battlecom

    i used to be in a q3 clan with mac and pc gamers. we used roger wilco. it works well, but there is no x version yet. i might look into writing it..
  12. zots

    Sending Messages to nil....

    id foo; declares an object named foo. foo=nil; sets foo's value to nil/null. [foo count]; returns foo's count. should be zero. if you had an array, the count method would be useful to get the number of elements in your array.
  13. zots

    Awesome Cocoa Development Site!

    Cocoa of course.
  14. zots

    First cocoa app

    Thanks for the bump :) The idea came from a problem I had, I have to keep track of my debit balance so I don't overcharge and I do not like writing everything in my checkbook. So I made a digital checkbook. Originally it was done for OS9 2 years ago in RB. So far I have learned everything...
Back
Top