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

Search:

Type: Posts; User: hadler

Page 1 of 2 1 2

Search: Search took 0.03 seconds.

  1. Replies
    2
    Views
    1,010

    Re: send array of double trough a tcp connection

    how i can use thread in my code?
  2. Replies
    5
    Views
    5,205

    Re: send array of double trough a tcp connection

    ok i'll se them...
    now i would try to explain better my problem
    hi i'm developing a software in visual c++ clr managed code...
    i have 12 List of double number....i need to send them to another...
  3. Replies
    2
    Views
    1,010

    send array of double trough a tcp connection

    hi i'm developing a software in visual c++ clr managed code...
    i have 12 List of double number....i need to send them to another program with a frequency...
    i've found some example of tcp client...
  4. Replies
    5
    Views
    5,205

    Re: send array of double trough a tcp connection

    i've created a tcp connection between server and client in c# to send a simple text message...now i have to send array of data...how i can serialize them or how i can convert an object in binary and...
  5. Replies
    1
    Views
    1,105

    include/import native old .cpp and .h

    hi i have a old sintax native c++ project, with function and define, in some .cpp and .h files.
    Now i'm developing a visual c++ clr in visual studio 2008 and i've tried to #include .cpp or .h file...
  6. Replies
    5
    Views
    5,205

    Re: send array of double trough a tcp connection

    yes i know that but i have to use visual c++...i've not found useful example in c# becouse them are too much different from my necessity...
    do you have some example in c# useful for my specific...
  7. Replies
    5
    Views
    5,205

    send array of double trough a tcp connection

    hi to all, i'm a beginning in visual c++ managed programming.
    i've a text file with 2000 double. my program read txt file and with a timer it create an array of 100 double to obtain a temporal...
  8. Replies
    0
    Views
    1,230

    change property of an object of another form

    hi i'm developing a clr c++ program in windows form. i would create a menu to change impostation of the program by opening a new dialog form with chosebox and textbox regarding value and property of...
  9. Re: binary data acquisition from different sources

    ok i'll post this there
  10. binary data acquisition from different sources

    hi i'm developing a software in managed c++ clr that need to acquire binary data from different sources.
    i need to acquire a binary data flow that it is a adc signal from various source.
    The user...
  11. binary data acquisition from different sources

    hi i'm developing a software in managed c++ clr that need to acquire binary data from different sources.
    i need to acquire a binary data flow that it is a adc signal from various source.
    The user...
  12. Re: binary data acquisition from different sources

    up
  13. Re: binary data acquisition from different sources

    nobody could help me?
  14. binary data acquisition from different sources

    hi i'm developing a software in managed c++ clr that need to acquire binary data from different sources.
    i need to acquire a binary data flow that it is a adc signal from various source.
    The user...
  15. Replies
    5
    Views
    1,507

    Re: call native c++ function or class

    ok i'll try to do this.
    i've studied c++ native code to develop win32 console application...now i'm studing cli language.
    i'm trying to integrate native cpp files with function and class yet...
  16. Replies
    5
    Views
    1,507

    Re: call native c++ function or class

    mmm but i include .cpp or .h file in file of main function and in form.h after a mouse click event i try to create a new class or call a function of cpp or h file and it give me an error...
    it tell...
  17. Replies
    5
    Views
    1,507

    call native c++ function or class

    hi i would use and call native c++ function or class member present in a .h or .cpp file in the resource of a window form c++ clr project...
    i would that in form1.h file, after a button click i...
  18. Replies
    3
    Views
    2,048

    Re: Use native c++ code in clr project

    what are * types?
  19. Replies
    3
    Views
    2,048

    Use native c++ code in clr project

    hi i'm developing a clr managed program in c++
    i would implement a code to read data from a txt file and save data in a class after a button click...
    i've made the code in ansi c++ with streams and...
  20. Replies
    6
    Views
    2,084

    Re: read data from txt file

    i've fixed with this
    [code]
    while ( line = sr->ReadLine() )

    {

    array<String ^> ^xy = line->Split(' ');

    }
    the problem is that xy is an array with element made by blank spaces....
  21. Replies
    6
    Views
    2,084

    Re: read data from txt file

    i've writed this


    try
    {
    // Create an instance of StreamReader to read from a file.
    StreamReader^ sr = gcnew StreamReader( "c:\\test.txt" );
    try
    {...
  22. Replies
    6
    Views
    2,084

    Re: read data from txt file

    ok perfet i'll try it now
  23. Replies
    6
    Views
    2,084

    Re: read data from txt file

    ok i'm able to put a new botton to open a txt file and readline until the file ending...
    now i have to read the different line and select useful item and put in different variables...
    i've seen...
  24. Replies
    11
    Views
    3,072

    Re: library or component to plot data

    ok it's clear now...
    i've found also a visual c++ example...
    zedgraph is a very useful library...
    now i have to study it to understand how to use it and how to create tooltip or info on chart in...
  25. Replies
    11
    Views
    3,072

    Re: library or component to plot data

    my problem is that i don't know where i have to write code to insert data and command to create a plot...
    in c# it call a public function with all this thinks
Results 1 to 25 of 41
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured