Quote:
> I hate about it is all the .DLL {*filter*}you have to install in the users
> system directory. These then get overwritten by older applications
> and now the app does not work, etc. Arg.
If you make some assumption, current installations on the user PC then you may jst have to give exe & the vbx that your
app uses.
Quote:
> I do not know C, but it seems that MS Visual C++ would do what I want.
> It would use Access MDB files as a native format (through JET) AND it
> would create small EXE files that do not need all the OLE*.DLLs that
> VB requires.
No, VC++ won;t solve the problem of OLE*.dll installation... In fact VC++ will give you its won set of DLL, VBXs to install.. :)
that may even vary what type of executable you are making. If you want your executable small naturally your have lots of
call going out to dlls.
Quote:
> Now you are probably laughing because it is obvious I know nothing
> about Visual C++.
If you are willing to do it then probably after few weeks, you too will be answering on newgroup.... :)
Quote:
> Can someone explain why development is so hard in Visual C++? I
Take care of lots of things....
e.g. to to draw aline in VB - yoiu would say MoveTo, Line to with x, y coords. However, in VC++ you got to think of the
creating device context, selecting right brushes, line styles, selecting them to device context, fill styles, fore-back colors, to
make more compatible/general you got the adsuct colors to default palette, etc....whereas Vb has most of the defualt
setting & are never exposed to programmer giving limited control.
Another interesting thing is caret - your cursor shape/appearance. Since it is a shared resource, whenever your app loses
focus, it has to be set back to previous(default) shape...so forth
Quote:
> thought that by now MS would have made it as easy as VB.
They is a excellent layer over that tedious SDK programming in the form of MFC. However, real fun is in SDK
programming.....
Keep scratching & think - why the hell my program goes in infinite loop when I close it ? For this you got to know
WM_CLOSE, WM_QUIT, WM_DESTORY - how they call each other....
Quote:
> I think I > can use VBXs in C++, right?
Yes, certainally you could....that's the maternity they born in ! :)
Quote:
> Thanks,
'Cheers
Ajay