Search results

  1. natsuki

    Guess Who Posts Next

    nope I guess someone who goes to x10forums.
  2. natsuki

    Game : Rank The Person Above>>>

    fahadsadah >> janitor Then you clean them!
  3. natsuki

    [!!] Gathering MMORPG programing team [!!]

    I always liked it when people make games especially RPG especially 2d! I would like to help somehow but I'm making a compiler so I can't do anything else. I hope you get this one going, good luck!
  4. natsuki

    Data Source for VB.NET program

    I think you should post the code and maybe read on this http://forums.x10hosting.com/programming-help/87394-how-ask-progamming-help.html Otherwise maybe post in the code so people can look at the problem better.
  5. natsuki

    open source tools

    C/C++ for development. It has the most support and a lot of sources and resources you can find on the net. Java is used by enterprises and for mobiles and is usually good for web. But C/C++ has the most GNU GPL and opensource and lots of free compilers.
  6. natsuki

    The Ctrl+V game

    Option Explicit Dim AlarmTime Const conMinimized = 1 Private Sub Form_Click() AlarmTime = InputBox("Enter alarm time", "VB Alarm", AlarmTime) If AlarmTime = "" Then Exit Sub If Not IsDate(AlarmTime) Then MsgBox "The time you entered was not valid." Else...
  7. natsuki

    those php work in offline?????

    as long as you have a server that has PHP installed then php will work whether it's on a local network or just on your own pc.
  8. natsuki

    Help with Javascript

    It's probably some CSS related IE thingy as usual... Your script works I'm using FF. Your code is kinda long I dunno if I have the time to look at it.. This is what it says in IE (typed it out): Hope I could have been able to copy/paste the error instead. >_<
  9. natsuki

    How did you learn PHP

    I agree with Jake. Unless you are to use that server for an actual site you can just install XAMPP http://www.apachefriends.org/en/xampp.html it has everything in it already what you need for web development. You don't need to do complicated stuffs just to configure and make your local server to...
  10. natsuki

    PHP Calculations

    That is after you've submitted once and the original url of the form becomes something like http://driveflexfuel.com/TEST/savings/Form%20Sample.php?GASPrice=3434234&Ethanol=32432432&Tank=324234&MPGGAS=34234324&MPGE85=0.00&submit=Calculate which is the previous submit. And when you submit again...
  11. natsuki

    PHP Calculations

    Your form goes to this url http://driveflexfuel.com/TEST/savings/results.php?http://driveflexfuel.com/TEST/savings/Form%20Sample.php which does not carry on the values in your form in sample.php, there's nothing You get your values in the original page but not in the popup window. If you want...
  12. natsuki

    PHP Calculations

    make sure your variables for the divisor are not zero and if they are then give them a default value is there any reason why the variable can become zero?
  13. natsuki

    How did you learn PHP

    I started to learn PHP through reading tutorials on the net. I googled for tutorials and found webucator.com. After reading the whole tutorial, at first, I did not concern myself with the details. I just wrote some code and tried them. Basically trial and error. That way I got myself...
  14. natsuki

    The Ctrl+V game

    cout << "re" << endl; cout << look << endl; exit(0); aww it's my compiler thing again
  15. natsuki

    Game: Ban the Person above you!!!!!!!!!!!

    I ban Mitch because I might not be able to ban him anymore for being a mod.
  16. natsuki

    Guess Who Posts Next

    wrong I guess mitch OT: wow you're a mod congrats!
  17. natsuki

    Word Assoation Game

    animal > plant
  18. natsuki

    PHP Parse Syntax Error

    There's no way to view a php file using the browser, just post it in.
  19. natsuki

    PHP Parse Syntax Error

    The most common thing to know about errors especially parse errors is that: You should check what comes in before that line... it says line 42 so there must be 41 lines before that.
Top