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

Search:

Type: Posts; User: danbopes

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. Replies
    7
    Views
    2,264

    Re: MultiThreaded Socket Fun

    Just because your application might not need it, doesn't mean my does too.

    I have an application, that talks to the server. It opens up a connection, and starts talking with the server. On the...
  2. Replies
    7
    Views
    2,264

    Re: MultiThreaded Socket Fun

    On the server, that's pretty much how it's setup.

    This is the client side, which is 90% what I need. When I create the connection, a separate thread is made that does the listening, and shoots...
  3. Replies
    1
    Views
    6,354

    Re: Questions about my first AJAX script.

    There are 2 ways you can do this. If you want all the divs to refresh at once, the simplest way is to hit the server, and work with the responseText (Or responseXML).

    XML is nice when you are...
  4. Replies
    7
    Views
    2,264

    MultiThreaded Socket Fun

    http://csharp.pastebin.com/qnSZTdzr

    I'm trying to make a "SendRecieveCommand" method. The problem that I am having is this.

    When the class gets initialized it creates a background worker...
  5. Re: DataGridViewRow Problem (Formatting not updating)

    Would this go into the Cell Validating Method, or CellEndEdit.

    I just don't understand why it doesn't update the format. The Cell Inherited style should see that it should be formatted as "C2",...
  6. DataGridViewRow Problem (Formatting not updating)

    I am having problems with my DataGridView.

    I have two colums in this row. Text, and Cost. In the cost Column, I have the DefaultCellStyle Format set to C2 (As a number).

    When I add rows...
  7. Replies
    11
    Views
    1,031

    Re: Function Return Types

    Yeah I figured it out, for some reason my ADODB result set it always returning false for result.EOF even if there is no rows.
  8. Replies
    11
    Views
    1,031

    Re: Function Return Types

    This is my code and its always returning a "Not" messagebox:



    Private function testFunction() As Variant
    testFunction = False
    End function

    private sub callingSub()
    dim ret as variant
  9. Replies
    11
    Views
    1,031

    Function Return Types

    I am making a function and I want it to return an array if it is a success otherwise a boolean of false. Is there a way I can do this?

    Function test()
    If ( mystuff = Good) Then
    Return...
  10. Replies
    1
    Views
    6,635

    Re: onreadystatechange do nothing

    Because you are saying when the file is ready then do whatever is inside that function. If you are not sending anything to the file, then you wont get the alert box. Create an empty file, and then...
  11. Replies
    1
    Views
    650

    Re: Need help with SQL statment

    I fixed it:

    SELECT u.username, u.user_id, u.user_posts, u.user_from, u.user_website, u.user_email, u.user_icq, u.user_aim, u.user_yim, u.user_regdate, u.user_msnm, u.user_viewemail, u.user_rank,...
  12. Re: HELP: MySQL Administrator - Backup Errors

    I have always used the normal backup and have never had any problems.
  13. Replies
    1
    Views
    650

    Need help with SQL statment

    SELECT u.username, u.user_id, u.user_posts, u.user_from, u.user_website, u.user_email, u.user_icq, u.user_aim, u.user_yim, u.user_regdate, u.user_msnm, u.user_viewemail, u.user_rank, u.user_sig,...
  14. Re: Export data from database and user input data to cusomized xml format using.NetWebser

    Use PHP to export the xml, so PHP will query the database, and then export what you need. Then you can use your javascript (AJAX), to connect to that XML page to get whatever you need.
  15. Replies
    1
    Views
    731

    perl regular expession

    How do I have my php match the following:
    "<key1></key1>" but not "<key1></key2>"
    Basically I have the following:
    "<key1>Something inside here</key1><key2>Something inside here</key2>", and so my...
  16. Replies
    10
    Views
    1,213

    Re: How to prevent copying of software?

    I would love to see windows vista ultimate....$5
  17. Replies
    5
    Views
    962

    Re: Javascript + Php + Javascript

    I never knew it logged empty variables...wait where? on the server(like the error_log file), cause I never seen it log any of this anywhere.
  18. Re: Refreshing an iframe with the same page programatically

    This is confusing, can you give us an example?
  19. Replies
    2
    Views
    9,841

    Re: problem with firefox

    I found your problem

    var url="http://www.xxxxx.org/post.php";
    Firefox tries to prevent you from sending things off the domain. Don't include the "http://servername". For instance if "post.php"...
  20. Replies
    2
    Views
    658

    Re: Display system statistics

    Webalizer is a great tool to monitor who comes and goes to your website.
  21. Replies
    3
    Views
    686

    Re: Help (Text Posting Form)

    I see what you mean. When you make your form, you need a php program to parse the stuff you send it to it, and have it do stuff. Basicly, the code he provided will do nothing other then display it...
  22. Thread: display data

    by danbopes
    Replies
    3
    Views
    614

    Re: display data

    <table>
    <tr>
    <td>Date</td>
    <td>Data</td>
    <td>Description</td>
    </tr>
    <tr>
    <td>1</td>
    <td>Comp<br />Prnt</td>
    ...
  23. Replies
    5
    Views
    962

    Re: Javascript + Php + Javascript

    Whats with the @ symbol? If id isnt set, then $id will just become nothing.
  24. Replies
    3
    Views
    1,420

    Re: Beta Brite font

    Well I wanted it to look like the font of the actual betabrite (something showing all of the pixels), and because it does widen up and stuff, I would need a custom font. I have the program where you...
  25. Replies
    3
    Views
    1,420

    Beta Brite font

    For all of you who dont know what a betabrite is, you can see it here:
    http://www.betabrite.com/pages/bbclassic.htm
    I am undertaking the task of making a program that can program the display from...
Results 1 to 25 of 28
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured