Search:

Type: Posts; User: rookie7799

Page 1 of 3 1 2 3

Search: Search took 0.10 seconds.

  1. Replies
    5
    Views
    528

    Re: DNS/DHCP Server

    My dlink router dhcp works great! :wave:
  2. Replies
    5
    Views
    614

    Re: Can some one explain to me

    I've tried this with IIS ... same thing :(
  3. Replies
    5
    Views
    614

    Re: Can some one explain to me

    anyone?
  4. Replies
    5
    Views
    614

    Re: Can some one explain to me

    Apache webServer 2.2.3 - as far as I know it's an open source project...
    (http://httpd.apache.org/)
  5. Replies
    5
    Views
    614

    Can some one explain to me

    I searched the hell out the google but couldn't find anything on this.

    The problem is the following, I'm running win 2000 advanced server with Apache web server. For some reason no matter what I...
  6. Replies
    10
    Views
    1,046

    Re: Generate http request

    that's what i was thinking as well, but the thing is:
    if i created 1000 threads BUT not start them, I will have to go through a loop anyhow to start all of them and it will take time as well...
  7. Replies
    10
    Views
    1,046

    Re: Generate http request

    OK, thank you for the hint. :thumb:

    I created some simple app, it creates whatever number of threads I need that send http requests.

    Now I can have a lot more requests PER second but it still...
  8. Replies
    0
    Views
    474

    Limiting Bandwidth

    I know there are some threads out there with this topic but none of them have the answer, except pointers to comercial software...
    Was wondering if anybody figured out how to make it possible... ;)...
  9. Replies
    10
    Views
    1,046

    Re: Generate http request

    Interesting I use VS 2005 and don't have it... :confused:
  10. Replies
    10
    Views
    1,046

    Re: Generate http request

    anybody?
  11. Replies
    10
    Views
    1,046

    Re: Generate http request

    :(

    if i wanted a DoS attack program I would download one of the net...

    this is for my project in grad school. Test the performace of the webserver...
  12. Replies
    10
    Views
    1,046

    Generate http request

    Hello guys,

    I want to create a simple program that will test my server. It should send multiple requests for some file (.html, .php, .jpg ...) but it would be able to generate and send at least...
  13. Replies
    1
    Views
    540

    Modem that can receive calls

    Hi guys,

    I was wondering which direction to go in developing this...

    I want to have an app written either in vb6 or vb.net to receive calls dialed to modem on a regular telephone line. Once...
  14. Replies
    7
    Views
    13,432

    Re: VB6 - Auto accept Outlook Security Message

    For some reason it doesn't do anything on my PC ? ....

    Using your code, that message is still there.... :ehh:

    WithEvents CheckOutlook As cls...
    gives and error: UserDefined type not defnied
  15. Replies
    8
    Views
    818

    Re: updating textbox with thread?

    I've read in many places that Doevents is not really a good method of doing this kind of thing, that's why i'm looking for alternative.

    Thanks
  16. Replies
    8
    Views
    818

    Re: updating textbox with thread?

    You know like in VB if we have a loop from 0 to 99999999 and when we run it without doevents and would want to see the progress in a textbox, it will only show the last 99999999 number, however if we...
  17. Replies
    8
    Views
    818

    Re: updating textbox with thread?

    that's the unfinished code for the form
    4 textboxes
    3 buttons


    using System;
    using System.Drawing;
    using System.Collections;
    using System.ComponentModel;
    using System.Windows.Forms;
  18. Replies
    8
    Views
    818

    updating textbox with thread?

    I have loop that goes through a txt file that has about 1000000 lines of text.
    I have a var. x that changes every time the program reads a line of text
    Is it possible to update textbox with that x...
  19. Replies
    13
    Views
    1,692

    Re: Confused...

    THanks a lot!!! WOrks like a charm
  20. Replies
    13
    Views
    1,692

    Re: Confused...

    Hey Bruce,

    Thanks for a solusion, however its not really full.
    Explanation:

    Original table
    Table example:
    Person: A, selected, 2005
    Person: A, rostered, 2006
    Person: B, selected, 2004
  21. Replies
    13
    Views
    1,692

    Re: Confused...

    Thanks for replies,
    I assume the code you are giving I should put in SQL view of query...
    I'll try it tonight once I get home :-/
  22. Replies
    13
    Views
    1,692

    Re: Confused...

    I use ms. access
  23. Replies
    13
    Views
    1,692

    [RESOLVED] Confused...

    Hello guys,
    I have a query based on the table, one of the fields has a lookup list of 3 choices ("Rostered", "Selected", "None"). There are a lot of records in table of people and their info, the...
  24. Replies
    8
    Views
    691

    Re: If statement

    in other words if i won't be able to do it in one statement it would go like this:
    if(strFilter = "<=") then
    if(something <= something) then
    end f
    else
    if(something >= something) then
    end if...
  25. Replies
    8
    Views
    691

    Re: If statement

    Basically as I mentioned above, I have a form a besides all other stuff user selects, she/he selects the condiftion: combo ("<=", ">=")
    and instead of writing 5 if statments i wanted to make only...
  26. Replies
    8
    Views
    691

    If statement

    Hello guys,

    I was wondering is it possibile to do something like this:

    Dim strFilter as String

    being that strFilter will be either ">=" or "<="

    if (something strFilter something)
    ...
  27. Replies
    7
    Views
    1,519

    Re: Write to ini file

    I actually figuered it out, I just open and close the file every time I need to update it, so it works. THanks for the help tho
  28. Replies
    7
    Views
    1,519

    Re: Write to ini file

    The only way I could possibly think of, is opening and closing txt file all the time, is there any way to keep it open and rewrite first line...
  29. Replies
    7
    Views
    1,519

    Re: Write to ini file

    It actually doesn't really matter which file I use (txt or ini), I need to know how to do it code wise...
  30. Replies
    7
    Views
    1,519

    Re: Write to ini file

    Well, thats's the idea, however I don't need to modify and/or read data I just need to write over it, since the data will be generate inside the program...
    I tried couple of ways and all I get is...
  31. Replies
    7
    Views
    1,519

    [RESOLVED] Write to ini file

    I searched the forum and found nothing that can actually work for me... so here is the question:
    I need a program that rewrites date (STRING) in date.ini file, I do not need to appened and I don't...
  32. Re: Visual Basic Application Code Formating

    I tried that, but when ever I use tab or space the text will jump back and leave one space between...
  33. Re: Visual Basic Application Code Formating

    Yes sir.

    Lets just say I hate how the code looks like
    thats how VB does it

    var1 = "abc"
    var2 = "abc"
    variable1 = "abc"

    I want it to be
  34. Visual Basic Application Code Formating

    I didn't know where to post this, so since it refers to classic VB, here it is

    My question is not about programming.

    I was wondering how to format my code window not to use automation things...
  35. Replies
    2
    Views
    620

    Draw Grid in a specific row

    How do you make a grid (draw) in a Msflexgrid only at specific rows, NOT THE WHOLE flexgrid?
    blabla ________ blabla
    blabla |bla bla | blabla
    blabla --------- blabla
  36. Replies
    3
    Views
    565

    Re: Another msflexgrid question

    How about inserting a picture that will look like a line...
  37. Replies
    3
    Views
    565

    Another msflexgrid question

    I know that

    frmMain.MSFlexGrid1.Gridlines = flexGridInset

    makes a border around the whole cell. I was wondering if it is possible to have only one line, lets say at the bottom of one cell,...
  38. Replies
    6
    Views
    13,893

    Re: Insert Picture and text into MsFlexgrid

    True, if you then print it in color ... what if black and white printing...
  39. Replies
    6
    Views
    13,893

    Re: Insert Picture and text into MsFlexgrid

    brucevde, thanks for reply, however your code sets the picture as background but what I need is the following

    |[small pic] "and some text after"|

    basically the idea is the following, my...
  40. Replies
    6
    Views
    13,893

    Insert Picture and text into MsFlexgrid

    Is it possible to insert BOTH a small picture and some text into one cell of the flexgrid
    Thanks guys
Results 1 to 40 of 115
Page 1 of 3 1 2 3



Click Here to Expand Forum to Full Width