Search:

Type: Posts; User: Coder87C

Page 1 of 5 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    0
    Views
    1,075

    Compile to 1.1 got 2.0

    Hi, Im a .net user. Im trying to compile my C# application using VS 2005 .net to 1.1. My machine has 2.0 and defaults to 2.0. I checked my framework files and I do infact have 1.1. How do I...
  2. Replies
    6
    Views
    3,379

    Ok, So I did some toying with Ethreal and this...

    Ok, So I did some toying with Ethreal and this program. I can to a point where Im like whats this.

    When I read ethreal it says its sequence number is 38 and the next is 78. How does it know...
  3. Replies
    6
    Views
    3,379

    The IRC server I connect to only allows 1...

    The IRC server I connect to only allows 1 connection. I wanted to make a bot in C# that would monitor the stream and do things according to it. Even at times sending data down the stream. Im...
  4. Replies
    6
    Views
    3,379

    Whats the better way of doing it? Will it still...

    Whats the better way of doing it? Will it still work with the librarys im using?

    Also, with a memory editor I could in theory edit the memory of the sequence number? What part of the header...
  5. Replies
    6
    Views
    3,379

    Raw Packet (sorry tripple weird Post)

    Hello all, in a previous thread I was trying to figure out how to send raw packets thru one of my devices. Well since I want to use C# I found a C# version of WinPcap.
    ...
  6. Thread: Networking...

    by Coder87C
    Replies
    4
    Views
    1,957

    Im using C#. How does TCP stream injection work....

    Im using C#. How does TCP stream injection work. I have done lots of server/client programming before in C# so I have the basics. Do you attach ur program to the open stream and write to it? Is...
  7. Thread: Networking...

    by Coder87C
    Replies
    4
    Views
    1,957

    Networking...

    Hi, Im programming in C#, but these questions are just basic networking I think.

    I have a program thats connected to the internet thru X port. Is it possible to just listen to that port for...
  8. Replies
    3
    Views
    2,304

    What I did was changed it to: int R = (value &...

    What I did was changed it to:

    int R = (value & 0xF800) >> 10;

    so int R not short R.

    Can this screw things up?
  9. Replies
    3
    Views
    2,304

    Short to 16bit 555 format

    Hi,

    I have a file which I read in shorts. Each short represents a color.

    I need to make the short into a RGB color using 555 format.

    F = Alpha
    Red = E to A
    Green = 9 to 5
    Blue = 4 to 0.
  10. Thread: Crazy Idea

    by Coder87C
    Replies
    6
    Views
    1,339

    Thats a good find. It be pretty cool though, ...

    Thats a good find. It be pretty cool though, when I burn a dvd, I use like 25% of the 4.2 gigs then store it or hand it out to friends, it be cool to have a logo burned in on the cd.
  11. Thread: Crazy Idea

    by Coder87C
    Replies
    6
    Views
    1,339

    Crazy Idea

    Someone has thought of this before im sure. I was reading how cd readers work and how burners work. Basically if the laser hits a blank bit it bounces off the cd and hits the optic and reads it as...
  12. Replies
    1
    Views
    1,785

    Printing a spade

    Im trying to add the spade dos char to a listbox, but for some reason I cant figure out how to generate the spade char.

    I tryed

    listBox1.Items.Add(System.Convert.ToChar(5));

    but doesnt work,...
  13. Replies
    1
    Views
    1,120

    Merging projects

    Ok, so a friend and I are working on a huge project. Last night we both got tons of work done but didnt know the other was working on it. Is there any program out there that merges porject files...
  14. Replies
    3
    Views
    1,661

    Changing Titel Bar

    Hi, You see the top window, the blue bar that says "C Board - Post New Thread - Microsoft Internet Explorer" its blue on my windows version, but I think its called the Titel bar.

    How do I change...
  15. Thread: String Parse.

    by Coder87C
    Replies
    3
    Views
    1,898

    Lol, I wish I had a C# class. This is actually...

    Lol, I wish I had a C# class. This is actually for a plugin that detects strings for macros

    I got string word = "hello man";

    if(word.StartsWith("hello"))

    but not sure how to "Remove" it,...
  16. Thread: String Parse.

    by Coder87C
    Replies
    3
    Views
    1,898

    String Parse.

    Hi, i got the string

    string word = "hello world dude";

    i want to make a if that checks the string word for hello then if its in it take hello out and leave the rest


    so
    if("hello" in...
  17. Replies
    3
    Views
    6,569

    The functions showword and searchWord are not...

    The functions showword and searchWord are not taking in the string at all. When I debug it the variables fro the string are empty in those functions
  18. Replies
    3
    Views
    6,569

    Scrabble Solver

    Hi, I been programming a scrabble solver. For some reason I cant get my functions to take in strings? Ill post my code below but I ran these functions in a diffrent program and they worked fine,...
  19. Thread: string help

    by Coder87C
    Replies
    3
    Views
    948

    string help

    Hi im making a ai program for scrabble and cant get my string to = another string
    here is my code and I marked it with a **HERE**



    #include <fstream>
    #include <iostream>
    #include <cstring>
  20. Thread: Macro Prog

    by Coder87C
    Replies
    3
    Views
    1,140

    Nice and thnx! I used SHORT GetAsyncKeyState( ...

    Nice and thnx! I used

    SHORT GetAsyncKeyState(

    int vKey
    );

    Hey, do you know how to tell if a window is on top? If you know the handel?
  21. Thread: Macro Prog

    by Coder87C
    Replies
    3
    Views
    1,140

    Macro Prog

    hi im trying to make a macro program. im trying to do it in notepad so when i press a button in my program it outputs the string

    <newline begin macro x=f s=5 y=10>

    I just realize I could make...
  22. Replies
    1
    Views
    1,825

    Server Client Issues

    Hi, I made a server client.

    My problem is I can connect and send and recv packets to my server on the same comp. I sent my client to my friend. On my server it says he is connected. He doesnt...
  23. Replies
    1
    Views
    1,312

    Window Programming/Networking.

    Hi, Wrote a simple client/server in DOS.

    Its ment to be really simple.

    Anyways I wrote the client in C++ to display in DOS


    this works fine. It connects and recvs the only packet its sent...
  24. Replies
    5
    Views
    1,105

    Chary array of 4 to Int

    Hi, I have a chary array of



    chararray[4] = {B4,F1,C3,45};

    I want to change that to the int 45C3F1B4. I know that with MAKEWORD I can do 2 of them, but in this case I got 4, is there a...
  25. Replies
    5
    Views
    2,628

    Ah ........!, ok thnx. I need to find out how...

    Ah ........!, ok thnx. I need to find out how to get the time in milliseconds. Like right now its 12:56. How do I detect that ?
Results 1 to 25 of 111
Page 1 of 5 1 2 3 4