Yes figured as much. The thing is that I want to have those macro's in sync with the defines in my code. Is it perhaps possible to do it in visual studio automation?
Sorry, I didn't read the part that if you remove rs.Delete() it works fine. I just recreated you sample and you are right, it goes wrong here as well after the second delete. I'm sorry, but I have no idea why this is going wrong.
What exactly are you trying to achieve? Are you simply trying to...
Hi,
I made a small program which calculates the CRC of the main file and inserts data along with the CRC inside a custom made data section in the main application. It doesn't really matter much how it works, because the problem is simply building the right command line.
The command line should...
That's probably because you are trying to use the program on a Windows 95/98/Me/NT machine.
It's ONLY supported on Windows 2000 and above as it clearly says on the MSDN. As far as I know there doesn't exist a function named LockWindowStation. Aren't you confusing that with LockWindowUpdate?
From winuser.h:
#if(_WIN32_WINNT >= 0x0500)
WINUSERAPI
BOOL
WINAPI
LockWorkStation(
VOID);
#endif /* _WIN32_WINNT >= 0x0500 */
So you have to make sure that you've defined _WIN32_WINNT >= 0x0500. Thats the only problem. You'll have to make the target OS Win2k or higher. This is done to...
Yes I've looked at MySQL, but also for MySQL you have to buy a license if you will redistribute it with the application. In that case I could also go for a DBMS such as Oracle instead.
I am concerned that anything in the database, from password to plain text entered in the fields in the database can be retrieved. Everything has to be secure.
The data being stored is personal and it is nessecary that this data cannot be viewed by anyone who is not authorized to see it. The...
Hi,
I am developing a database application for a company which has to store private information about their clients. The budget is low and I need to decide which type of database to use. I have been looking at using a MS Access database and a FoxPro database. I was wondering which one would be...
Hi,
I've created an application basically with a rebar/menubar/toolbar, workspace, floating toolwindows and a statusbar. The problem is fairly small, but I find it annoying I can't figure it out :-) When resizing really small, the statusbar will once hover the toolwindows. The toolwindows...
I have a P4B 2400 with a GeForce Ti4400 and I see no problems at all. In fact I find the ball quite funny :-) The only oddities about the ball are that it bounces too much (it seems like it'll never stop bouncing :-)) and if you move your mouse quickly or quite far, it drops the ball down...
I've found out that the problem lies somewhere else. I create the 3 windows with a height of 150. If this height changes, thus when moving the window, there are somehow no WM_NCCALCSIZE messages sent to that window with the wParam parameter set to FALSE. Anyone got any idea what the problem of...
I'm sorry for the late response, but I didn't get notified for the response... Anyway, it seems to work fine on my computer. No flickering or anything like that. Also I never see the entire window.
I'm running Win2K SP3 and I compiled it with VB6 SP5
Can you perhaps describe when it goes 'wrong'?
Hi,
I've registered and created my own controls succesfully. In the windowclass style I've specified CS_OWNDC for drawing purposes. The control should have a non client area and therefore in response to the WM_NCCALCSIZE message I have this code:
if (!wParam)
{
lprc = (LPRECT) lParam...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.