Thomas Ascher
Posts
-
Toolbar positioning problem -
Software WheelsJust sold my Mazda MX-5, which i owned for 10 years now, and bought a BMW 316ti which i expect to arrive next week :rolleyes:
-
It doesn't feel like 20 yearsI got my first computer in 1984: Commodore 64 with tape drive. These tape drives were really horrible. Half the time the reading head had to be adjusted to avoid load errors. X| But i got a floppy disk drive one year later!!:-D Thomas
-
South African .NET launchAustria has had its .NET launch on February 4th! ;P http://www.microsoft.at/msdn/templates/visualstudio.net Thomas
-
Icons -
Dynamic handlers?You can use ON_COMMAND_RANGE to handle a range of commands: class CMyDialog : public CDialog { afx_msg void OnHandleCommands(UINT nID); DECLARE_MESSAGE_MAP() }; BEGIN_MESSAGE_MAP(CMyDialog, CDialog) ON_COMMAND_RANGE(ID_COMMAND_FIRST, ID_COMMAND_LAST, OnHandleCommands) END_MESSAGE_MAP() void CMyDialog::OnHandleCommands(UINT nID) { // nID contains the ID of the command to handle }
-
ADO with Jetengine very slow?Try to use client cursors instead of the default serverside cursors if the .mdb file is on your local pc: _RecordsetPtr pSet(__uuidof(Recordset)); pSet->CursorLocation = adUseClient; pSet->Open(...);