Click here to Skip to main content
15,895,799 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Creating shareware Pin
Antti Keskinen13-Sep-04 3:42
Antti Keskinen13-Sep-04 3:42 
GeneralRe: Creating shareware Pin
Hoornet9313-Sep-04 5:02
Hoornet9313-Sep-04 5:02 
GeneralRe: Creating shareware Pin
Alexander M.,13-Sep-04 4:07
Alexander M.,13-Sep-04 4:07 
GeneralRe: Creating shareware Pin
Henry miller13-Sep-04 4:33
Henry miller13-Sep-04 4:33 
GeneralRe: Creating shareware Pin
Antony M Kancidrowski13-Sep-04 4:33
Antony M Kancidrowski13-Sep-04 4:33 
GeneralODBC programming - need help Pin
acroitoriu13-Sep-04 2:47
acroitoriu13-Sep-04 2:47 
GeneralRe: ODBC programming - need help Pin
Hardy_Smith13-Sep-04 2:52
Hardy_Smith13-Sep-04 2:52 
GeneralRe: ODBC programming - need help Pin
David Crow13-Sep-04 4:05
David Crow13-Sep-04 4:05 
The SQL query generated by ClassWizard should have formed the JOIN clause automatically. In case it didn't, you'll need to do it manually. For example, here is a JOIN on three tables of a database I recently worked on:

SELECT [Meet].[Name], [Meet].[Date], [Gymnast].[Name], [Scores].[Score1]
FROM Meet INNER JOIN (Gymnast INNER JOIN Scores ON [Gymnast].[AutoNumber]=[Scores].[GymnastNum]) ON [Meet].[AutoNumber]=[Scores].[MeetNum]
ORDER BY meet.date;
Search MSDN for different examples of LEFT, RIGHT, INNER, FULL, CROSS, and OUTER joins.


"When I was born I was so surprised that I didn't talk for a year and a half." - Gracie Allen


QuestionIS thre any COM Port Event ? Pin
zahid_ash13-Sep-04 2:24
zahid_ash13-Sep-04 2:24 
AnswerRe: IS thre any COM Port Event ? Pin
Antti Keskinen13-Sep-04 2:34
Antti Keskinen13-Sep-04 2:34 
GeneralLinker warning: Multiple ".rdata" sections with different atrributes Pin
kc200313-Sep-04 2:20
kc200313-Sep-04 2:20 
GeneralRe: Linker warning: Multiple ".rdata" sections with different atrributes Pin
Alexander M.,13-Sep-04 4:09
Alexander M.,13-Sep-04 4:09 
Generalistream: seekg / tellg, peculiar behaviour Pin
LiquidEyes13-Sep-04 1:39
LiquidEyes13-Sep-04 1:39 
Generalabout transmiting video through net Pin
yingkou13-Sep-04 0:44
yingkou13-Sep-04 0:44 
GeneralRe: about transmiting video through net Pin
Alexander M.,13-Sep-04 5:03
Alexander M.,13-Sep-04 5:03 
GeneralRe: about transmiting video through net Pin
yingkou13-Sep-04 15:33
yingkou13-Sep-04 15:33 
GeneralRe: about transmiting video through net Pin
Un13-Oct-04 4:14
Un13-Oct-04 4:14 
QuestionConsole in C++? Pin
Hadi Fakhreddine13-Sep-04 0:43
Hadi Fakhreddine13-Sep-04 0:43 
AnswerRe: Console in C++? Pin
Antti Keskinen13-Sep-04 2:43
Antti Keskinen13-Sep-04 2:43 
GeneralRe: Console in C++? Pin
Hadi Fakhreddine13-Sep-04 4:44
Hadi Fakhreddine13-Sep-04 4:44 
GeneralThumb nail view Pin
Neelesh K J Jain12-Sep-04 23:50
Neelesh K J Jain12-Sep-04 23:50 
GeneralRe: Thumb nail view Pin
David Salter13-Sep-04 0:11
David Salter13-Sep-04 0:11 
Questionhow to use visual c++ Pin
Member 135729712-Sep-04 23:35
Member 135729712-Sep-04 23:35 
AnswerRe: how to use visual c++ Pin
Hardy_Smith12-Sep-04 23:47
Hardy_Smith12-Sep-04 23:47 
GeneralRe: how to use visual c++ Pin
Member 135729712-Sep-04 23:55
Member 135729712-Sep-04 23:55 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.