Search:

Type: Posts; User: TheDan

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    0
    Views
    2,927

    Nonclient & client area transparency

    I'm currently writing a GUI application for a friend, and he wants the application to draw windows much like Windows Live does. By this I mean that the title bar & window frame are hidden/transparent...
  2. Replies
    7
    Views
    3,312

    I know I know! But I called them "Hackers"...

    I know I know! But I called them "Hackers" because the supervisor for this assignment has called them "Hackers" (but with the same meaning as the word "Crackers").

    How exactly do black hat...
  3. Replies
    7
    Views
    3,312

    Computer Scientists and Hacking

    Hello. I'm a 1st year Computer Science student and we've been given a group assignment to create a presentation. Our group is researching whether or not Computer Scientists can afford to tolerate the...
  4. Replies
    1
    Views
    4,064

    How good are you with templates? A good way to...

    How good are you with templates? A good way to implement a linked list inside a linked list is though templates. That way you can just do something like


    LinkedList< LinkedList<int> > List;
  5. Thread: Who won E3?

    by TheDan
    Replies
    32
    Views
    11,229

    She's not ugly, she just has a face impediment!

    She's not ugly, she just has a face impediment!
  6. Replies
    13
    Views
    1,987

    I currently have 7 books, I reguarly read these...

    I currently have 7 books, I reguarly read these forums and gamedev.net etc... and read about various algorithms, data structures etc... And tend to mess around with stuff that I read about. Although...
  7. Replies
    53
    Views
    22,757

    I think the coolest thing I have written... is an...

    I think the coolest thing I have written... is an DLL for mIRC which shows information for a game through dialog boxes. I'm pretty proud of it since its the most useful thing I have actually written...
  8. Thread: Combining files

    by TheDan
    Replies
    5
    Views
    1,094

    Well I havent actually written anything yet. I'm...

    Well I havent actually written anything yet. I'm starting the design of the engine before I actually code anything, and I was deciding on the best way of handling files. I just dont know a method of...
  9. Thread: Combining files

    by TheDan
    Replies
    5
    Views
    1,094

    I was thinking of using my own file format...

    I was thinking of using my own file format really... And I'd like to group them all together in one file so that it is harder for people to modify the file, so yes for some security although I am...
  10. Thread: Combining files

    by TheDan
    Replies
    5
    Views
    1,094

    Combining files

    Hey, I notice that some files are actually more than one file composed together and I want to be able to use this in a small game engine I am going to try and write in the near future. By this I...
  11. Replies
    3
    Views
    1,538

    Do you know much of the Win32 API? If you're...

    Do you know much of the Win32 API? If you're learning MFC, from what I've heard, knowing some of the API will help you when you need to do something that the API can do, but MFC can't. Although I...
  12. Replies
    2
    Views
    1,580

    Ah thanks. I was hoping there'd be some easy way...

    Ah thanks. I was hoping there'd be some easy way such as AppendWindowText or something ;D Replacing the selection at the end works great, but I might switch to streams to stop it scrolling like mad...
  13. Replies
    2
    Views
    1,580

    Appending to an edit control

    Whats the easiest and quickest way to append text to what is already in a Rich Edit control? When I open files, I open and read the file in another thread in 'chunks' of say, 1000 characters. Once...
  14. Replies
    25
    Views
    3,573

    Nevermind, I've altered my program design so that...

    Nevermind, I've altered my program design so that this is no longer a problem.
  15. Replies
    25
    Views
    3,573

    I cant declare the pointer as void...

    I cant declare the pointer as

    void (*CTextManager::UpdateText)(int)

    because CTextManager isnt defined yet, and a forward declare doesnt work because I'm trying to access a member function.
  16. Replies
    25
    Views
    3,573

    Ah thanks 7stud, that clears it up, however a new...

    Ah thanks 7stud, that clears it up, however a new problem arises... The file in which SOpenParams is in is included by the file which has the class CTextManager in it since CTextManager uses the...
  17. Replies
    25
    Views
    3,573

    Sorry if I sound stupid, but where would I put...

    Sorry if I sound stupid, but where would I put that piece of code, dwks? I've not really handled many function pointers before :s certainly not from member functions heh.. =/
  18. Replies
    25
    Views
    3,573

    I wasn't sure how much it would help... But heres...

    I wasn't sure how much it would help... But heres the function in question:


    void CTextManager::Open(SOpenParams *pParams)
    {
    m_szText = "";
    pParams->Update = UpdateText;
    ...
  19. Replies
    25
    Views
    3,573

    Pointer to a Member Function

    I've need to assign a pointer to a function, which is easy enough.. but the function in question is a public member of a class. Visual Studio is giving me this error:


    error C2440: '=' : cannot...
  20. Replies
    2
    Views
    1,390

    Ah, that clears things up a bit. I guess being...

    Ah, that clears things up a bit. I guess being lazy and shoving implementations in headers messes things up a bit :P

    Thanks a lot
  21. Replies
    2
    Views
    1,390

    Linker Error: already defined?

    Hi, I'm creating my own text editor to put into practice what I know about the Win32 API. I'm working on a class to manage the Rich Edit control, and I've just made a class and a function for debug...
  22. Replies
    5
    Views
    1,080

    Well as far as I know, you can only make 1D...

    Well as far as I know, you can only make 1D arrays dynamically.

    Since you know the size of one bit of it, why not just create an array of pointers like this:

    double *table[2];

    Then you just...
  23. Replies
    3
    Views
    2,885

    Well I get it to go to the right line, but now...

    Well I get it to go to the right line, but now when I open up my dialog box to get the line number, selecting the line doesnt work. It works perfectly fine when I dont open up the dialog box. Why is...
  24. Replies
    3
    Views
    2,885

    =| Amongst all that researching of the...

    =|

    Amongst all that researching of the messages on the MSDN, I had missed the one which I was looking for.

    Thanks
  25. Replies
    3
    Views
    2,885

    Move the Caret to a line

    I've tried quite a few different approaches, to moving the Caret at the beginning of a specified line, but I can only seem to get it to work for one line, and for the rest, it moves to random places...
Results 1 to 25 of 30
Page 1 of 2 1 2