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

Search:

Type: Posts; User: chad101

Search: Search took 0.05 seconds.

  1. Seeking advice from professional programmers.

    I’m at a fork in the road. I have a 2 year degree in computer programming which was based on C++. I had one class on VB.NET. The job market in my area is flooded with .NET positions (VB/ADO). On a...
  2. Thread: AES encryption

    by chad101
    Replies
    2
    Views
    912

    Re: AES encryption

    Thank you for the help. I purchased a used copy for 26 bucks off Amazon today.

    Could I get a basic run-down on what an IV/cipher key is? I know you're screaming "GOOGLE" right now; I apologize in...
  3. Thread: AES encryption

    by chad101
    Replies
    2
    Views
    912

    AES encryption

    I need some advice on this encryption project I was given. I know very little about encryption. My only experience is with the MD5 hash algorithm in PHP. I have used this in the past to encrypt...
  4. Replies
    1
    Views
    6,775

    Network programming in VC++ .NET

    I’m practicing network programming in C++ .Net. I figured a simple yahoo messenger login application would be a fun way to do this. Every example online is written in Visual Basic. I cannot find...
  5. 2D DirectX9 Pixel Perfect Collision Detection Help

    I'm developing a 2D game libary (VS 2005 C++ W/ DirectX 9). Right now all collision detection is done with bounding boxes over each sprite. I want to learn more about pixel perfect collision...
  6. Replies
    2
    Views
    560

    Writing to the debug window

    How do i write to the debug window in VC++ 8.0 ?

    I know VB is something like debug.writeline() and JAVA is System.Printl() but what about C++?

    I'm not talking about "cout <<", I want to write...
  7. Replies
    1
    Views
    395

    Is this a true Queue?

    Is this a true Queue? It uses FIFO but it only increments and decrements the “top” variable…not rear. Most queues work from the “rear” of a stack…right?

    I originally wrote a stack...
  8. Replies
    1
    Views
    658

    Deleting Duplicate Proxies

    I’m pulling my hair out lol

    I have some spare time this weekend and I want to write a program that will search for duplicate proxies (in a text file) and delete any (if found).

    My first...
  9. Replies
    5
    Views
    866

    Re: 1 "int" For Stack ADT

    thank you
  10. Replies
    5
    Views
    866

    Re: 1 "int" For Stack ADT i made a template

    Ok here is the finished template.



    //----------------------------------------------------------
    // Written By: Chad Wood
    // Date: 11-13-05
    // Description: one int stack...
  11. Replies
    5
    Views
    866

    Re: 1 "int" For Stack ADT

    #include <iostream.h>
    #include <stdlib.h>

    int main()
    {
    unsigned int x;
    unsigned int nibble;
    int size = sizeof(unsigned int);
    int count = 0;
  12. Replies
    5
    Views
    866

    1 "int" For Stack ADT

    Is it possible to make a Stack ADT, using a single C++ int data type to contain ALL of the stack elements? In other words, one integer variable is used as a stack that can store several smaller...
  13. Replies
    6
    Views
    896

    Re: Good book recommendation?

    Thank you for the help. I agree, maybe I should not try to rush things and first build a solid foundation on C++ logic first. I’ll work on this first and then study Visual C++ as a summer project. ...
  14. Replies
    6
    Views
    896

    Good book recommendation?

    Hello, I am interested in learning how to use the program, Microsoft Visual C++, I am familiar* with C++ syntax and I currently use the DevC++ compiler.

    My school is not offering any windows...
  15. Replies
    3
    Views
    494

    Re: Question about networking

    when you terminate the program
  16. Replies
    3
    Views
    494

    Question about networking

    One quick question, is it possible to write a basic C++ program that can open a web browser and go to a site when the file is closed? or perhaps load the html text?

    I am looking for something...
  17. Replies
    5
    Views
    774

    Re: streams and files

    Your right, when I opened the person.dat file in a hex editor all I saw was two square looking figures


    ٱ ڤ

    I cannot read hex but it is nothing like the example...
  18. Replies
    5
    Views
    774

    Re: streams and files

    I only have one .dat file in this directory.
    It’s strange because everyone is saying it works yet I keep getting this “funky” number when I execute the infile program.

    When I delete the...
  19. Replies
    5
    Views
    774

    streams and files

    I’m having some problems with displaying my file content correctly .

    I have a program that writes an object with two member items, in binary mode, to my “person.dat” file.


    #include...
Results 1 to 19 of 19





Click Here to Expand Forum to Full Width

Featured