Quantcast
Channel: CodeGuru Forums - Visual C++ Programming

change a field name in a table in MS Access from C++/MFC

I want to change a field name in a table in MS Access from C++/MFC. There's no direct way to do this in Visual Studio (RENAME in ALTER TABLE doesn't work when running in MDB), but it's easy in VB. The...

View Article


Adding libpcap to project

Hi, I'm following a tutorial about 10 years old and I'm running into trouble compiling this source. Code: /*  * Copyright (c) 1999 - 2005 NetHero, cYbrex Inc (Chicago)  * Copyright (c) 2005 - 2006 CARS...

View Article


compiling npcap tutorial code

I can't seem to get this code snippet to compile.. Code: int main() {     pcap_if_t* alldevs;     pcap_if_t* d;     int i = 0;     char errbuf[PCAP_ERRBUF_SIZE];     /* Retrieve the device list from...

View Article

[RESOLVED] Messages can't get to a CWnd

Hello! I'm trying to do a page navigator class, derived from CWnd, wich contains a list of CWnd pointers, shows only the current page and makes sure it resizes correctly. However setting the WS_CHILD...

View Article