In ARM processor, which BSP r u using? how r u receiving Data? U TCP stack implemented? If u have stack implementation, there should not be problem in sending. If u dont have stack implementation, u have to assemble the packet in the TCP/IP struct and have to send it.
Parthiban
Posts
-
Winsock problem -
Scatter chart in GMS strip chartI got it. I have told earlier post OSC control ie oscilloscope control. Thanks. I ll post u the result.
-
Scatter chart in GMS strip chartTake the following points. A(1,3), B(3,6), C(6,11), D(10,14), E(8,10), F(5,7), G(1,4) I have to draw the points in the order A to F. If i draw it in strip chart control, one line is connecting from A->G->B->F->C->E->D. But my requirement is A->B->C->D->E->F->G. ie, line has to start in A end in D, and return line starts at the position D to E end in G.
-
Scatter chart in GMS strip chartThanks. I am trying ur control. Is it support scatter drawing like plotting of "Z" shape data. My application has to draw a pressure values based on load which will incremental linear in loading and decremental linear while unloading. Pressure in Y and Load in X. Load will go 0 to 50 and than return to 0.
-
Scatter chart in GMS strip chartI have seen ur chart control. In that OSC control, is it allow to update data in run time? resizing is possible if i resize the form or dialog which holds the control? Auto-scaling option for both axis supported?.
-
Scatter chart in GMS strip charthi, I have been using strip chart to draw XY line chart. I was using both Counter and Time domain for my plotting. Can any one tell how to use strip chart for scatter plotting. Is it support this type? If not, kindly suggest free scatter chart. -Parthi
-
I2C CommunicationI2C uses four basic clocks START, DATA, ACK and STOP. It is the combination of SDATA and SCLK. Check the impedance and threshold limit of chip to get signal. -Parthi
-
Transfer data directly between 2 clientsHi, If u r willing to use UDP, u can transfer data from one client to another client with user defined comm protocol.
-
Context MenuHow r u drawing the bitmaps? Call the InvalidateRect() function when the pop-up menu is exiting. Post us code for more clarity
-
How to stop CComboBox from interrupting thread?R u trying to update the counter in dialog and viewing? if drow down box painter u can see some delay in the counter updation in dialog.
-
how to create dialogs in Console applicationIn a console based application, we cant include the dialog which is created by MFC or SDK. If u still need to use the dialog in console application, convert the your console application to win32 application and try to use MFC dialogs. ---Parthi
-
WinSock2 help!Validate the "BytesReceived" variable(0 to 65535) and send it to the WriteFile fn. If u r passing the BytesToWrite as -1, than this will cause the overflow of DWORD variable which will exceeds the max value. ----Parthiban
-
Modeless DialogHi, How is the parent for the model less dialog?
-
which should use pipe or socket at Client-serverhi, U can use the following arch if u think this better. go with TCP/IP. 1. create one sock which will be in listen mode. 2. once u got a connect request, create one sock and thread dynmically and bind with the requested client. this socket will serve for that client only. this can be implemented in multithread mode where on thread always listen for client, and each thread will serve for perticular client. -Parthi
-
Problem with global var in MFCInstead of putting as static, you can use #ifndef compiler option as follows in header file. globals.h +++++++++ #ifndef _myglobals_h #define _myglobals_h ................. declare variables ............... #endif -Parthi
-
DLL Initialization failedThankx. But i am getting error message as follows...
Loaded 'ntdll.dll', no matching symbolic information found.
Loaded 'C:\WINDOWS\system32\kernel32.dll', no matching symbolic information found.
Loaded 'C:\WINDOWS\system32\hp34401_32.dll', no matching symbolic information found.
Loaded 'C:\WINDOWS\system32\visa32.dll', no matching symbolic information found.
Loaded 'C:\WINDOWS\system32\advapi32.dll', no matching symbolic information found.
Loaded 'C:\WINDOWS\system32\rpcrt4.dll', no matching symbolic information found.
Loaded 'C:\WINDOWS\system32\NiViSv32.dll', no matching symbolic information found.
Loaded 'C:\WINDOWS\system32\msvcrt.dll', no matching symbolic information found.
Loaded 'C:\WINDOWS\system32\msvcrt20.dll', no matching symbolic information found.
Loaded 'C:\WINDOWS\system32\user32.dll', no matching symbolic information found.
Loaded 'C:\WINDOWS\system32\gdi32.dll', no matching symbolic information found.
Loaded 'C:\WINDOWS\system32\DP5022DLL.DLL', no matching symbolic information found.
Loaded 'C:\WINDOWS\system32\DP5301DLL.DLL', no matching symbolic information found.
Loaded 'D:\DP PROJECTS\PEA0430_SEAKING_1\LFATE_APP_MODIFIED_KARTHI\LFATE_Modified ver-0.11_13_12_06_Karthi\Debug\DP5031DLL.DLL', no matching symbolic information found.
Loaded 'C:\WINDOWS\system32\DPCPCI4509DRV.DLL', no matching symbolic information found.
Loaded 'C:\WINDOWS\system32\DPcPCI4035.dll', no matching symbolic information found.
Loaded 'C:\WINDOWS\system32\DPcPCI4140.dll', no matching symbolic information found.
Loaded 'C:\WINDOWS\system32\DPcPCI4158Drv.dll', no matching symbolic information found.
Loaded 'C:\WINDOWS\system32\DPcPCI4305.dll', no matching symbolic information found.
Loaded 'C:\WINDOWS\system32\DPcPCI2709Drv.dll', no matching symbolic information found.
Loaded 'C:\WINDOWS\system32\DPcPCI4341.dll', no matching symbolic information found.
Loaded symbols for 'C:\WINDOWS\system32\MFC42D.DLL'
Loaded symbols for 'C:\WINDOWS\system32\MSVCRTD.DLL'
Loaded symbols for 'C:\WINDOWS\system32\MFCO42D.DLL'
Loaded 'C:\WINDOWS\system32\ole32.dll', no matching symbolic information found.
Loaded 'C:\WINDOWS\system32\oleaut32.dll', no matching symbolic information found.
First-chance exception in LFATE.exe (NTDLL.DLL): 0xC0000142: DLL Initialization Failed.Whether can i concluded the probelm in
C:\WINDOWS\system32\oleaut32.dll
file. is this system dll? How can i solve it? Reg, Parthiban
-
DLL Initialization failedI am linking 10 dlls statically. how can i figure out?
-
DLL Initialization failedI am getting an exception while start running my project. i am included some 6 dll's and each dll is working and verified. The error message shows, "The application failed to initialize properly (0xc0000142). Click on OK to terminate the application" "Unhandled exception in LFATE.exe (NTDLL.DLL): )xc0000142: DLL Initialization Failed"
-
how to enable scroll bar in CXListCtrlhi pals, i facing problem in enableing the scroll bars in CXListCtrl. if any one worked on this plz help me out. I am creating ctrl from another file, and passing listctrl obj to that corresponding page. after adding the data, the scroll bar will be disabled state.. can any one suggest options to enable scroll bar? Thanx in advance. Parthiban
-
Getting the installation directory in WinXPHi there, I having the problem in GetCurrentDirectory function. When i am from VC++ IDE, the GetCurrentDirectory (GCD) function returns the exact path. But i running after the installing the my application, the GCD function does n't return the path. for eq, if installed in "D:\program files\MyApp\App", it is giving the path as "D:\Documents and Settings\username". how to i get it? Parthiban