User Profile

Collapse

Profile Sidebar

Collapse
l3mon
l3mon
Last Activity: Nov 1 '09, 06:49 AM
Joined: Mar 24 '09
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Wait, I got it. I was defining the delegate and the event in the wrong class/form But thanks again! :)
    See more | Go to post
    Last edited by tlhintoq; Oct 12 '09, 06:44 AM. Reason: Competitive site link removed per posting guidelines

    Leave a comment:


  • I tried that before posting... but, whatever. Thanks for pointing me in the right direction.
    See more | Go to post

    Leave a comment:


  • Thank you, now I know what to do just not how.
    This is one of the childforms being created.
    Code:
    private void hashCalculatorToolStripMenuItem_Click(object sender, EventArgs e)
     {
          Form HashCalc = new HashCalc();
          HashCalc.MdiParent = this;
          HashCalc.Show();
    }
    Here is the method I want to use on the mainform to update the richtextbox
    Code:
     public void addStatus(string
    ...
    See more | Go to post

    Leave a comment:


  • I'm sorry... I'm really not that good with this. I have multiple forms that will be children of the "Home" form (such as the editor form) and the only part of the "Home" form I want to affect is a richtextbox similar to the output box under View->Output (in Visual c#). So it's showing the collective output/debug infostuffs of all the forms. I'm not really following you. Just how is it possible to get to the form or at least...
    See more | Go to post

    Leave a comment:


  • l3mon
    started a topic Accessing Components of One Form From Another

    Accessing Components of One Form From Another

    So have two forms under the same namespace and I need to be able to access a richtextbox attached to the form "Home" from the form "Editor". But whenever I try to access it it doesn't come up, I'm new to C# but I'm assuming this is from the public/private modifiers. Also, "Home" is the MdiParent of "Editor" if that makes a difference. So what I'm trying to do is like.
    Code:
    Home.richtextbox.Text =
    ...
    See more | Go to post

  • l3mon
    replied to Using C# to submit HTML forms.?
    Thanks! This is exactly what I was looking for.
    See more | Go to post

    Leave a comment:


  • l3mon
    started a topic Using C# to submit HTML forms.?

    Using C# to submit HTML forms.?

    I've looked around a bit but I'm not really sure about how to word it. I need to use C# to submit HTML forms and to get a HTML source of the page it's forwarded to so that I can verify that it worked. I'm not sure I'm making too much sense. So I need to be able to submit a form and then see if the next page says "Logged it", basically. If anyone could spot me a link, that would be great.
    See more | Go to post

  • l3mon
    replied to javascript time picker into unixtimestamp
    in PHP
    Ok! thanks! I was going to lookinto strpos() and substr() and then put that in mktime() but this looks faster!...
    See more | Go to post

    Leave a comment:


  • l3mon
    started a topic javascript time picker into unixtimestamp
    in PHP

    javascript time picker into unixtimestamp

    I need a way to get this script to work where the user can pick a time (using this) and a date (using this) and then have PHP process that for a unixtimestamp.
    See more | Go to post

  • l3mon
    replied to End sessions by id.
    in PHP

    I know that that is right because I tried to modifies the content of cookie and it messed up but when I put it back to what it was it worked fine....
    See more | Go to post

    Leave a comment:


  • l3mon
    replied to End sessions by id.
    in PHP
    I just took the id out of the cookie it automatically set in my browser....
    See more | Go to post

    Leave a comment:


  • l3mon
    replied to End sessions by id.
    in PHP
    I am really new to PHP; only about a week or so and I don't know where I would plugin my session id....
    See more | Go to post

    Leave a comment:


  • l3mon
    replied to End sessions by id.
    in PHP
    Nope:

    And no worries about not being able to test it. The fact that your helping is wonderful!...
    See more | Go to post

    Leave a comment:


  • l3mon
    replied to End sessions by id.
    in PHP
    No dice.


    The code I was using:


    So it's not failing the session_unset, however it's not doing anything (I tested both alone as well)...
    See more | Go to post

    Leave a comment:


  • l3mon
    replied to End sessions by id.
    in PHP
    I looked around but didn't see anything. I was thinking something like this.

    <?php
    session_destroy ($sessionid);
    ?>
    See more | Go to post

    Leave a comment:


  • l3mon
    started a topic End sessions by id.
    in PHP

    End sessions by id.

    I am new to PHP and I am building a PHP blog/user system thing. It's coming together pretty well. Right now I just got the user system running. Im using the session code form this tut. I found that when I delete a user from the database the user is still logged in. When I develop further it will cause problems for sure. So I was thinking I could store the users last session's id in the db. And then when I run delete the user also run a script that...
    See more | Go to post
No activity results to display
Show More
Working...