October 2nd, 2012 07:58 PM
Wow! Hey guys, this thread is still alive after all these years! Good stuff.
January 14th, 2011 10:20 AM
That did the trick, thanks very much.
January 13th, 2011 03:43 PM
thanks for the replies.
i still remember the ON_COMMAND signature is void ;)), but at the same time my function returns BOOL and i need it to be that way. is there a cast i could try to make it...
January 13th, 2011 02:57 PM
I've been out of the VC world for years now. I'm trying to build an old project and I'm getting this error:
Error 2 error C2440: 'static_cast' : cannot convert from 'BOOL (__thiscall...
January 12th, 2011 10:07 AM
okay, thanks guys, i'll have the developers have a closer look.
January 11th, 2011 05:15 PM
No, it's not that ... there is enough RAM on that machine. VM also looks ok.
What are some of the usual suspects when these errors are surfacing?
January 11th, 2011 10:51 AM
Okay, it's been a while and this has nothing to do with VB programming.
During performance testing, we are getting the following error displayed in the browser:
Microsoft VBScript runtime error...
April 30th, 2010 01:08 PM
::SendMessage (WM_USER_MSG, ...) from A to B.
April 21st, 2009 01:32 PM
April 13th, 2009 02:45 PM
very nice, i like it. it could be used in a commercial
March 25th, 2009 11:50 AM
i think WM_SETTINGCHANGE could be of help. send it after you've modified the registry.
March 24th, 2009 01:36 PM
i cant believe how lazy you are
March 20th, 2009 01:36 PM
i only corrected the first if.
if (((pos_wid >= 210) && (pos_hei <= 297)) || ((pos_wid <= 420) && (pos_hei >= 297)))
{
cout << "Use A4" << endl;
}
March 20th, 2009 12:51 PM
have you tried using GetAsyncKeyState, GetKeyState or GetKeyboardState?
March 19th, 2009 07:54 AM
February 23rd, 2009 12:56 PM
the application would know if you associate a member variable with your edit. you can either use class wizard to do this, or do it manually. if you decide to use class wizard, open your dialog that...
February 23rd, 2009 09:42 AM
right...well the OP could customize it according to his needs.
February 23rd, 2009 09:38 AM
you could remember the age in a vector and just sort the vector. if you can't use the sort function, you could write one of your own.
#include <vector>
#include <algorithm>
int...
February 20th, 2009 01:40 PM
search the FAQ's - you'll find your answer
February 18th, 2009 01:23 PM
we need to understand what is the exact behavior that you are after and what part of that is not working.