CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Feebz

Search: Search took 0.02 seconds.

  1. Replies
    1
    Views
    1,046

    How do I code a function parser?

    I need a parser that takes in a boolean function. How do I do it? It should also implement parentheses(of course). How do I do this? :|
  2. Replies
    7
    Views
    1,398

    Re: best WYSIWYG editors?

    Try the Aptana plugin for Eclipse and you'll see.
  3. Replies
    5
    Views
    2,767

    Re: REGEX in PHP forms

    If it's false, it tries to send it back to the form with the error message attached. It also sends back the values that were filled in.


    while (list ($key, $val) = each ($_POST)) $pd .=...
  4. Replies
    5
    Views
    2,767

    Re: REGEX in PHP forms

    What specific problem? :|
  5. Replies
    5
    Views
    2,767

    REGEX in PHP forms

    I need a regex expression that verifies if a user inputs a valid name (letters and spaces only). However, it doesn't budge.



    <?php
    function validateInputs(){
    $status_form = "OK";...
  6. Replies
    3
    Views
    1,436

    Re: PHP Address Book: CRUD application using files

    oh. okie. thanks. :D:D

    The form method in the client would be GET, right? :D
  7. Replies
    5
    Views
    11,278

    Re: Hangman in Ajax: How?

    Wow thanks. :D:D
  8. Replies
    3
    Views
    1,436

    PHP Address Book: CRUD application using files

    I do not know where to start. And by start, I mean an implementation of what to do next. I already have some readings on PHP, and I need to start on this project... for the lulz.

    Now where oh...
  9. Replies
    5
    Views
    1,025

    Re: Overriding color of drawn rectangle: how?

    import java.awt.*; import javax.swing.*;
    import java.util.*; import java.awt.event.*;
    import javax.swing.event.*;
    public class JTetris extends JComponent {
    public final int DELAY = 400;...
  10. Replies
    5
    Views
    1,025

    Overriding color of drawn rectangle: how?

    I have this tetris game, and i used a drawrect() method to draw a border around the playing area. However, the colors of my pieces are overridden by the drawrect() method. how do i make the color of...
  11. Replies
    5
    Views
    11,278

    Hangman in Ajax: How?

    After reading some books on Ajax, I want to raise the ante by coding a Hangman game that is in JavaScript, with the phrases being stored in some MySQL database.

    Looks like I have raised the ante...
  12. Replies
    2
    Views
    1,395

    Spawn new window on button click: how?

    How do I do that? I have a button that when clicked shows up another window, and the previous window will close. Upon closing the new window shall the previous window be brought back again.

    Can...
  13. Re: How do I repaint without removing previous drawings?

    Yay thanks for the idea. My code's fixed now. I placed them in an ArrayList then just painted the ArrayList for each call to paint();. :D
  14. Re: How do I repaint without removing previous drawings?

    How do I do that? :|
  15. Re: How do I repaint without removing previous drawings?

    i'll try that. thanks for the quick reply.

    there's this button that draws a shape on a panel, then upon another click, draws another shape [with different settings defined by the user*] but does...
  16. [RESOLVED] How do I repaint without removing previous drawings?

    class ShapePanel extends JPanel {
    Shape currentShape;
    public void setShape(Shape shape) {
    currentShape = shape; repaint();
    }
    public void update(Graphics g) {
    paint(g);
    }...
Results 1 to 16 of 16





Click Here to Expand Forum to Full Width

Featured