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

Search:

Type: Posts; User: manzoor10

Search: Search took 0.07 seconds.

  1. Replies
    0
    Views
    668

    VSTO PowerPoint/Excel Interaction

    Hi, I want to extract data from PowerPoint slides and then paste them into Excel workbook, where each slide in PowerPoint corresponds to a sheet in Excel workbook and vice-versa (from Excel to...
  2. Replies
    1
    Views
    1,585

    online tic tac toe

    I'm developing a tic tac toe multiplayer game, the game is up and it is working on a single pc, I want it to be playable across two computers in LAN, I'll be using TCP/IP for this and I have already...
  3. Replies
    1
    Views
    649

    client/server problem

    I have developed a simple client/server app which echoes whatever text the clients sends to the server.

    Currently, it echoes text only to one client, which has send the text, but I want it to send...
  4. Replies
    1
    Views
    1,830

    [RESOLVED] thread creation

    I'm getting a few errors while creating a new thread, I don't know what am I doing wrong but somethings not working properly in the Thread creation in the above code.


    // ThreadedServer.cpp :...
  5. Thread: char

    by manzoor10
    Replies
    1
    Views
    1,283

    char

    #include "stdafx.h"

    using namespace System;
    using namespace System::Net;
    using namespace System::Net::Sockets;
    using namespace System::IO;
    using namespace System::Text;

    void main(void)
    {
  6. Replies
    0
    Views
    1,840

    [RESOLVED] convert to C++/CLI

    EDIT: yea yea !!! I did it by myself


    so while(!(succeed = TryAgain())) :D



    How to convert this C# code to C++/CLI?
  7. Replies
    4
    Views
    1,673

    Re: online tic tac toe

    I know programming, but in networking programming they use terms like TCP/IP, sockets, ports, etc. you need to know how it works, right?
  8. Replies
    4
    Views
    1,673

    Re: online tic tac toe

    I don't understand all this networking jargon :)...
    I think I need to understand networking then go on to programming. Can you suggest any tutorials?

    Because in the tutorials which I found, they...
  9. Replies
    4
    Views
    1,673

    online tic tac toe

    What do I need to build a Tic Tac Toe game online, in which two peoples can play?

    I need to learn its networking side. I mean to what extent I need to learn network programming. Where are C++/CLI...
  10. Replies
    0
    Views
    799

    thread deadlock

    using namespace System;
    using namespace System::Threading;

    ref class MyThread
    {
    public:
    static void ThreadFunc1();
    static void ThreadFunc2();
    };
  11. Replies
    2
    Views
    2,010

    [RESOLVED] thread.Abort()

    Hey when I abort a thread it throws a ThreadAbortException right?

    I catch it, it is re thrown again but the first time I catch it I call the function ResetAbort(), but the thread still aborts :(?...
Results 1 to 11 of 11





Click Here to Expand Forum to Full Width

Featured