|
Don't we all!
anyway, have a look at the free LAPACK packages.
Watched code never compiles.
|
|
|
|
|
|
Hi All,
I downloaded a project "Virtual grid"(VS6) from this site and when i used VS2008 to work with it, I am getting the following error when i try to debug.
"This application has failed to start because mfc90d.dll was not found. Re-installing the application may fix the problem."
The release version works fine without this issue.
i can see the mfc90d.dll in my local machine at C:\WINDOWS\WinSxS\x86_Microsoft.VC90.DebugMFC_1fc8b3b9a1e18e3b_9.0.21022.8_x-ww_2a62a75b
i added this path to tools->options->vc++ directories->library files
But did not help.
If anyone run thru similar issue, please help.
Kasi
|
|
|
|
|
I replied earlier, but the hamsters went snafued ...
Best practice is to post questions about articles on the articles discussion section (at the bottom of the article).
Watched code never compiles.
|
|
|
|
|
|
After I add a progess bar on the dialogue box, I added code:
m_progress1.SetRange(0,100);
m_progress1.SetStep(1);
in OnInitDialog(), and m_progress1.SetPos(mmtt);
in the Next(). WHen I tried to run the program, the blue blocks representing the progress can not be seen in the progress bar. In other words, the progress bar is only an empty rectangular grew box when I run the program until finish.
Please help how to make it work.
Thanks
|
|
|
|
|
mrby123 wrote: ...and m_progress1.SetPos(mmtt);
in the Next().
When does Next() get called? What is the value of mmtt ?
"One man's wage rise is another man's price increase." - Harold Wilson
"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons
"Man who follows car will be exhausted." - Confucius
|
|
|
|
|
After click the next button in the dialogue box.
Thanks
|
|
|
|
|
Are you aware that if you have a lenghty operation in the main thread, UI messages won't be processed until the task is finished ? This means that the UI won't be redrawn and you won't be able to see any progress in the bar until the end of the task (in which case, all messages are processed at once and the progress is full).
A better approach would be to run your lenghty task in a separate thread. I really recommand reading this excellent article[^] about threading.
|
|
|
|
|
I need a SDI with MFC in windows sever 2003,vs2005,the CPU is Core 2 Q8200.
I create a SDI with MFC, it can run.
for I need large memory , then I set the configuration x64.
compling error, "MD/switch" off.I set on this switch.
now fatal linking error 1561: entry point need define.
but "theApp" object indeed exist.
(I have a not SDI code in VC,it can run when I set the configuration x64.)
Why?
Please teach me.
Thanks you.
Lee Wen.
modified on Tuesday, July 6, 2010 2:39 PM
|
|
|
|
|
What specific linker error?
"One man's wage rise is another man's price increase." - Harold Wilson
"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons
"Man who follows car will be exhausted." - Confucius
|
|
|
|
|
Thank you!
fatal error Link 1561:need define entry point.
|
|
|
|
|
hztj2005 wrote: fatal error Link 1561:need define entry point.
Did you see here?
"One man's wage rise is another man's price increase." - Harold Wilson
"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons
"Man who follows car will be exhausted." - Confucius
|
|
|
|
|
fatal error LNK1561: entry point must be defined”
I have build successly,by set the linker/subsystem:windows
Thanks very much.
|
|
|
|
|
Hi,
I'm trying to enable my ARM development board to communicate with a PC. I can establish a connection and send data from the PC to the micro without any issues. When I try to send data from the micro to the PC, however, my socket doesn't respond to the data. A network analyzer shows that the packet was sent and formated properly. I have tried both TCP and UDP with the same results. Has anyone come across this before?
Thanks.
|
|
|
|
|
masnu wrote: When I try to send data from the micro to the PC, however, my socket doesn't respond to the data.
Can you elaborate what you mean by that? Can you connect from the microcontroller to the PC, can you receive data but not send, etc...
|
|
|
|
|
Yes I can connect to the micro and send data from the PC to the micro but not the other way around. My socket is created as follows:
Socket = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
And then I wait for data:
fd_set sckt;
timeval timeout;
timeout.tv_sec = 2;
timeout.tv_usec = 0;
FD_ZERO( &sckt );
FD_SET( Socket, &sckt );
int nRet = select( 0, &sckt, 0, 0, &timeout );
select always returns 0 indicating a timeout no matter how much data I send from the micro.
|
|
|
|
|
If the TCP handshake is successful, you are actually sending packages from the microcontroller to the PC. This lets me wonder if the error you see is on application level, perhaps your socket code is not working properly, could be both client or server side. In the code snippet you provided there is no connect or bind/listen call, so I would not expect the socket to change status.
1) Have you tried connecting to your PC socket application from another PC (or via loopback)?
2) What error code do you get when connecting from microcontroller to PC? Timeout or something else?
3) Have you checked with Wireshark that TCP handshake is fine and packages are properly ACKed?
4) Which TCP stack are you using on the micocontroller (ARM SDK)? Could the problem not be Winsock at all?
|
|
|
|
|
Sorry Moak, I was cutting and pasting and forgot the most important part. Here's the actual code to open and connect:
int CHPCtrl::Connect()
{
struct sockaddr_in rmtAddr;
m_Socket = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
if ( m_Socket == INVALID_SOCKET )
return 1;
rmtAddr.sin_family = AF_INET;
rmtAddr.sin_addr.s_addr = inet_addr( remoteIP );
rmtAddr.sin_port = htons( m_nDevicePort );
if ( connect( m_Socket, (struct sockaddr *)&rmtAddr, sizeof(rmtAddr) ) == SOCKET_ERROR )
return 1;
m_hRxMonitor = (HANDLE)_beginthreadex( 0, 0, RxMonitor, this, CREATE_SUSPENDED, 0 );
if ( m_hRxMonitor )
{
m_bConnected = true;
ResumeThread( m_hRxMonitor );
}
return 0;
}
And in a separate thread I wait for incoming data:
UINT CHPCtrl::RxMonitor(void *pThis)
{
CHPCtrl *pCtrl = (CHPCtrl*)pThis;
int bytes_recevied = 0;
fd_set sckt;
timeval timeout;
timeout.tv_sec = 2;
timeout.tv_usec = 0;
while ( pCtrl->m_bConnected )
{
FD_ZERO( &sckt );
FD_SET( pCtrl->m_Socket, &sckt );
int ret = select( 0, &sckt, 0, 0, &timeout );
switch ( ret )
{
case SOCKET_ERROR:
break;
case 0:
break;
default:
pCtrl->ReadFromSocket( pCtrl->m_Socket );
}
}
shutdown( pCtrl->m_Socket, SD_RECEIVE );
return 0;
}
m_Socket is a class variable. I did this so I can send and receive on the same socket without blocking. Please let me know if you see anything wrong with this.
|
|
|
|
|
Looks good, but I have never used select() on Windows.
Perhaps have a look at the questions I had, they might give you some ideas.
|
|
|
|
|
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.
|
|
|
|
|
I'm not using any BSP and I implemented the TCP stack myself. I am able to establish communication via the 3-way handshaking process and then I assemble the package and send it. I used Wireshark to trap the packets between the PC and the micro and it recognizes it as a valid TCP/IP packet so I'm assuming it's formated properly.
|
|
|
|
|
Please, write international English, not stenography.
We are not chatting with a phone.
2 bugs found.
> recompile ...
65534 bugs found.
|
|
|
|
|
Please elaborate as to which part of the post wasn't in "international" English and I will be happy to clarify.
|
|
|
|
|
masnu wrote: Please elaborate as to which part of the post wasn't in "international" English and I will be happy to clarify.
"r"
"u"
Mind you, once translated from text messaging, it was a helpful question / answer.
Iain,
I am one of "those foreigners coming over here and stealing our jobs". Yay me!
|
|
|
|