Search:

Type: Posts; User: B4

Search: Search took 0.19 seconds.

  1. Thread: ADODC Connection

    by B4
    Replies
    11
    Views
    530

    Thank you very much.

    Thank you very much.
  2. Thread: ADODC Connection

    by B4
    Replies
    11
    Views
    530

    I would be interested in learning more about ADO....

    I would be interested in learning more about ADO. Could you please point me to some places which provide good tutorials or information so that I can get a better understanding? Thanks.
  3. Thread: ADODC Connection

    by B4
    Replies
    11
    Views
    530

    What is the best method to use? I am trying to...

    What is the best method to use? I am trying to connect to an Access database, and then link the textboxes in my form to the fields from the database. I am not sure how to do with without using...
  4. Thread: ADODC Connection

    by B4
    Replies
    11
    Views
    530

    The ADODC control does not have an Exclusive...

    The ADODC control does not have an Exclusive property, and I am not familiar with ADODB, could you provide me with any more information you have? Thanks in advance.
  5. Thread: ADODC Connection

    by B4
    Replies
    11
    Views
    530

    ADODC Connection

    I tried putting two ADODC controls on my form, which both connect to the same database. One connects to one table in the database, while the other connects to a different table. For some reason,...
  6. Replies
    4
    Views
    554

    The handle for the screen is the HDC. I have...

    The handle for the screen is the HDC. I have never done graphics programming in VB, but I have used the GetPixel and SetPixel functions in C before. They require you to pass the source from which...
  7. Thread: Fill out Web Form

    by B4
    Replies
    9
    Views
    546

    I believe your mistake is that you do not need...

    I believe your mistake is that you do not need the first ampersand. It should look like this:
    file.cgi?name=lol&pw=pw

    -B4
  8. Replies
    18
    Views
    1,961

    DJPP is a freeware C/C++ compiler. -B4

    DJPP is a freeware C/C++ compiler.

    -B4
  9. Text1.Text=Inet1.OpenURL("mywebsite.com") That...

    Text1.Text=Inet1.OpenURL("mywebsite.com")

    That uses the Internet Transfer Control, and loads the page source into a textbox. An alternative to this is using winsock and sending GET messages to...
  10. Replies
    5
    Views
    511

    As long as your webserver supports Perl you can...

    As long as your webserver supports Perl you can do this in Perl very easily like this:

    #!/usr/bin/perl

    print "Content-type: text/html";
    open (FH, "+<counter.txt");
    $count = <FH>;
    $count++;...
  11. Replies
    529
    Views
    43,611

    I am 15 also, and I currently work at a local...

    I am 15 also, and I currently work at a local company part time every friday after school. I worked all of last summer working on their web page which I completed and I am now doing DirectX...
  12. To get the "30" out of "12.30.98" you would do...

    To get the "30" out of "12.30.98" you would do this:

    Mydata="12.30.98"
    MyString = Mid(Mydata, 3, 2)

    Mid has three parameters. The string you want to parse, the start, and how the length. You...
  13. Thread: Winsock Help Needed

    by B4
    Replies
    3
    Views
    492

    Well you said you wanted to get the data being...

    Well you said you wanted to get the data being sent to Winsock, so you would read data on the Data_Arrival event. The reason it might not be working is you do you have it listening on the port that...
  14. Thread: Winsock Help Needed

    by B4
    Replies
    3
    Views
    492

    You can read data into the textbox from the...

    You can read data into the textbox from the Data_Arrival event using the GetData function of Winsock.

    -B4
  15. Replies
    2
    Views
    670

    Or you could write a small web server which...

    Or you could write a small web server which
    listens on port 80 and when Netscape or IE connects you can send it text and options on what they want to download. I have done this (only in C, not VB)...
  16. Thread: Web Browser Font

    by B4
    Replies
    4
    Views
    795

    Do you want the font size you be larger on all...

    Do you want the font size you be larger on all pages or just the one you are making for your program?

    -B4
  17. Replies
    12
    Views
    1,356

    If you put your program in the StartUp folder it...

    If you put your program in the StartUp folder it will automatically execute when Windows starts up. In your program you would have to make Cntrl+Alt+Delete disabled as well as Alt+Tab. Also, you...
  18. Thread: winsock api

    by B4
    Replies
    1
    Views
    369

    It is possible to send and receive data with the...

    It is possible to send and receive data with the same socket. It is also possible to notice incoming data from the client. Since you topic is "winsock api" I am assuming you are not using the...
  19. Thread: Web Browser Font

    by B4
    Replies
    4
    Views
    795

    To change the font size or color in IE you must...

    To change the font size or color in IE you must put in the HTML to do what you you want. To edit your webpage you need to open this HTML file with some kind of editor such as notepad.

    -B4
  20. Thread: Socket programming

    by B4
    Replies
    6
    Views
    632

    Here is the URL if anyone else would like to read...

    Here is the URL if anyone else would like to read about this, hope it helps. Feedback is appreciated. http://codeseek.selfhost.com/tutorials/vb/winsockapi1.shtml

    -B4
  21. Thread: Socket programming

    by B4
    Replies
    6
    Views
    632

    I am finishing up on a tutorial about this, it...

    I am finishing up on a tutorial about this, it should be done in the next two days. I'll post the URL when I am finished.

    -B4
  22. Replies
    4
    Views
    659

    Any indirect way of doing this would be creatiing...

    Any indirect way of doing this would be creatiing a file, and parsing it. For example, if you wanted to ping yahoo.com you would do:
    ping yahoo.com > myfile.txt
    You would then proceed to parse the...
  23. Thread: Socket programming

    by B4
    Replies
    6
    Views
    632

    If you mean socket() such as that used in C, yes...

    If you mean socket() such as that used in C, yes it it possible. You can do it through API calls to winsock.

    -B4
Results 1 to 23 of 23



Click Here to Expand Forum to Full Width