Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by LuckyLuke

  1. LuckyLuke

    Post Build command line (VS.Net 2003)

    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?
  2. LuckyLuke

    Problem using "Microsoft.Jet.OLEDB.4.0" to acces .mdb-files from C++

    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...
  3. LuckyLuke

    Problem using "Microsoft.Jet.OLEDB.4.0" to acces .mdb-files from C++

    Have you tried calling rs.MoveFirst() before the loop?
  4. LuckyLuke

    Post Build command line (VS.Net 2003)

    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...
  5. LuckyLuke

    Windows API problem

    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?
  6. LuckyLuke

    Windows API problem

    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...
  7. LuckyLuke

    Database decision

    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.
  8. LuckyLuke

    Database decision

    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...
  9. LuckyLuke

    Database decision

    What I forgot to ask: - is the Access Encryption actually safe? - same thing for Access password and user login etc.
  10. LuckyLuke

    Database decision

    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...
  11. LuckyLuke

    Painting Statusbar Problem

    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...
  12. LuckyLuke

    window region

    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...
  13. LuckyLuke

    Non Client area drawing/calculating problem

    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...
  14. LuckyLuke

    window region

    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'?
  15. LuckyLuke

    Non Client area drawing/calculating problem

    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...

Part and Inventory Search

Back
Top