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

Search:

Type: Posts; User: Noreturn

Search: Search took 0.03 seconds.

  1. Why my locally succeeded app fails on WACK after associating it with my store account

    Hi,
    I prepared a simple quiz app for Windows 8 store. My app successfully passes on WACK just after building and creating local packages without login to store account, however it fails (perf test:...
  2. Replies
    1
    Views
    863

    I Urgently Need Help About Threading !

    I'm writing a programme for my final project which I have to finish in two days :(. This programme includes a TCPListener to get some data over TCP/IP protocols. So I've made a second thread for this...
  3. Replies
    1
    Views
    1,081

    I Urgently Need Help About Threading !

    I'm writing a programme for my final project which I have to finish in two days :(. This programme includes a TCPListener to get some data over TCP/IP protocols. So I've made a second thread for this...
  4. Is TCPListener Component Sufficient For Communication Over GPRS Channel?

    In my project, i have to transfer some data from a gprs modem to a pc. So I just want to learn that, Is TCPListener component sufficient for obtaining the data sent by GPRS modem over GPRS channel?
  5. I need help about multithreading in TCPListener ...

    In a TCPListener program I've coded, I used the sample codes about TCPListener I found in MSDN Library. But, when I execute this program, the interface doesn't give any response to other events such...
  6. I need help about multithreading in TCPListener ...

    In a TCPListener program I've coded, I used the sample codes about TCPListener I found in MSDN Library. But, when I execute this program, the interface doesn't give any response to other events such...
  7. Replies
    2
    Views
    3,720

    Re: MSDN Example not working...

    I didn't look at the example u mentioned but i know this, the codes in MSDN are generally written for VC++ 2003, so u must implement the new changes in 2005.
  8. Replies
    4
    Views
    1,444

    How To Convert Received Bytes To String?

    Hi friends, at an example i found in MSDN library, such a command is used to convert the received bytes to ASCII string;

    data = Text::Encoding::ASCII->GetString( bytes, 0, i );

    But my compiler...
  9. How To Display Dialog Boxes Defined In Form1.h

    In an application, i want my About.h form dialog to run when i click About menu. In the MSND library, i saw such an example to display user defined dialogs;

    {

    Form ^ f = gcnew Form();...
  10. Re: I can not call the forms declared in Form1.h

    Thanks for your suggestion...
  11. Re: I can not call the forms declared in Form1.h

    I found the codes in my second message from MSDN VC++ 2005 samples, and there may be some differences from 2003 version, so i don't think Microsoft is doing such a great mistake !!!
  12. Re: I can not call the forms declared in Form1.h

    In the MSND library, i saw such an example to display user defined dialogs;

    {

    Form ^ f = gcnew Form();
    f->ShowDialog();
    }

    And i changed this code to display my About.h form dialog such as;
  13. I can not call the forms declared in Form1.h

    Hi friends, i'm a new programmer. During an application, i want to call a form by clicking somewhere. For example, when i click Help/About Menu, i want the About.h form to start.
    To do this, i...
  14. Replies
    2
    Views
    744

    Help Rookie Programmer...

    Hi friends, i'm new at C++ and VC++ , and i don't know same basics. I have a homework that i can not deal by myself. So i'll be too happy if you help me. My problem is that; in my homework i'll make...
  15. Replies
    2
    Views
    1,739

    Re: Help me using winsock in Windows forms...

    Thanks for ur help wildfrog, i'll try ur comments. But i think i'll deal with using this functions under my GUI. Anyway. I must learn too many things...
  16. Replies
    2
    Views
    1,739

    Help me using winsock in Windows forms...

    Hi everybody. I'm new in this forum and also in VC++. In a windows form project, i'll transmit a text data by winsock. I did this in console, but i don't know how to do this in form application. For...
Results 1 to 16 of 16





Click Here to Expand Forum to Full Width

Featured