Search:

Type: Posts; User: chad101

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    3
    Views
    13,818

    Yea it is, “VC++.NET How to Program” is an...

    Yea it is, “VC++.NET How to Program” is an intermediate book on managed C++. Very good book though. I never knew VC++ had a built in garbage collector (__gc) till I bought this book.

    The main...
  2. Thread: VB to VC++

    by chad101
    Replies
    6
    Views
    1,728

    CornedBee, you rock! I have been debugging...

    CornedBee, you rock!

    I have been debugging this method all day long.

    Your’s works like a charm. Thank you so much
  3. Replies
    3
    Views
    13,818

    How to import a DLL

    I have no experience with dynamic link libraries. The examples my book provide use the “#using” keyword.

    i.e #using <mscorlib.dll>

    I have a .dll used for encrypting the username and password...
  4. Thread: VB to VC++

    by chad101
    Replies
    6
    Views
    1,728

    Thank you, I’m glad to hear this, my past 3 years...

    Thank you, I’m glad to hear this, my past 3 years of programming involve C++ & JAVA I know very little about VB.

    It’s a shame, I can find some very good examples online, but, most are written in...
  5. Thread: VB to VC++

    by chad101
    Replies
    6
    Views
    1,728

    VB to VC++

    I’m working on a simple chat client to practice network programming w/ VC++ .NET. I have a yahoo messenger login example for the latest protocol (YMSG12) written in VB 6 and I’m converting everything...
  6. Replies
    1
    Views
    1,849

    Converting VS 2003 to 2005

    Well, my transition from console to GUI is a bumpy road. I finished my first class which covered GUI programming (slightly i.e. Sprites) – Intro to Game Programming.

    The Windows Programming in...
  7. Replies
    4
    Views
    3,425

    I am, I didn't include it with the code sample. ...

    I am, I didn't include it with the code sample.

    DirectInput framework source file

    void Poll_Mouse()
    {
    dimouse->GetDeviceState(sizeof(mouse_state), (LPVOID)&mouse_state);
    }

    Inside...
  8. Replies
    4
    Views
    3,425

    Mouse clicks inside game loop

    I’m working on an OO windows chess game w/ VS 2005 using DirectX 9.0. I have everything finished (excluding AI and En Passant). Right now I’m trying to tackle Direct Input. I’m using the right mouse...
  9. Replies
    0
    Views
    2,539

    Display Mouse cursor

    I’m trying to display the mouse cursor in full screen mod. I have provided the code for winmain.cpp. Could someone tell me what the heck I am doing wrong?



    // winmain.cpp
    // Chad Wood
    ...
  10. Replies
    1
    Views
    1,965

    very simple html parser

    Hello, I know this question has been asked before since I have searched these forums and Googled it. My problem is I only have Dev C++ and I cannot compile some of these example codes given.

    I’m...
  11. Replies
    7
    Views
    1,902

    I put this little project to the side until I...

    I put this little project to the side until I finished my last semester. Here is the finished duplicate proxy checker. I never heard of a “set<string> container” before could you give a little more...
  12. Replies
    1
    Views
    2,442

    recursive maze help

    I cannot get my maze to traverse correctly and when I trap myself, it just continues to recursively call itself …what am I doing wrong? I know the code is sloppy I just want to figure out what I am...
  13. Replies
    1
    Views
    1,062

    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 that worked off...
  14. Replies
    3
    Views
    7,009

    errors

    when compiling // Test driver

    Line 11: type specifier omitted for parameter
    Line 11: parse error before `)'
    Line 24: ItemType' undeclared (first use this function)
  15. Replies
    3
    Views
    7,009

    Sorted List Example

    What am I doing wrong? I cannot get this student example to compile.

    I am using DEVC++ to compile the source code. This source is a student example of a Sorted list provided by the author of “C++...
  16. Replies
    7
    Views
    1,902

    That’s a good idea, I could use a linked list...

    That’s a good idea, I could use a linked list then rewrite the file once all duplicates are removed. :D


    I’ll change the “while(infile)” to while( ! inFile.eof() )

    Thank you both. :)
  17. Replies
    7
    Views
    1,902

    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 idea...
  18. Replies
    9
    Views
    1,432

    sure

    sure :) Here is the finished version.


    //----------------------------------------------------------
    // Written By: Chad Wood
    // Date: 11-13-05
    // Description: one int stack...
  19. Replies
    9
    Views
    1,432

    got it

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

    int main()
    {
    unsigned int x;
    unsigned int nibble;
    int size = sizeof(unsigned int);
    int count = 0;
  20. Replies
    9
    Views
    1,432

    thank you

    Let’s say I wanted to push 5, 9, and 3 on to the stack. How would I store this on a single “int”?
  21. Replies
    9
    Views
    1,432

    1 int 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...
  22. Replies
    12
    Views
    4,722

    thank you

    I have a copy of Visual Basic.net; I bought it from the school book store, because of how cheap it was after my student discount.

    But, I know very little about visual basic, and I don’t want to...
  23. Replies
    12
    Views
    4,722

    thank you

    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.
    ...
  24. Replies
    12
    Views
    4,722

    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...
  25. Replies
    3
    Views
    1,841

    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...
Results 1 to 25 of 27
Page 1 of 2 1 2