Click here to Skip to main content
15,919,434 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralFullscreen weirdness in XP Pin
Jörgen Sigvardsson13-Sep-04 5:34
Jörgen Sigvardsson13-Sep-04 5:34 
GeneralRe: Fullscreen weirdness in XP Pin
mcgahanfl13-Sep-04 7:09
mcgahanfl13-Sep-04 7:09 
GeneralShow 2 dialog windows Pin
Larsson13-Sep-04 5:07
Larsson13-Sep-04 5:07 
GeneralRe: Show 2 dialog windows Pin
David Crow13-Sep-04 7:49
David Crow13-Sep-04 7:49 
Questionanyone knows of this control? Pin
GerhardC13-Sep-04 4:50
GerhardC13-Sep-04 4:50 
GeneralExecute an .exe read in memory Pin
mich213-Sep-04 3:35
mich213-Sep-04 3:35 
GeneralRe: Execute an .exe read in memory Pin
David Crow13-Sep-04 3:55
David Crow13-Sep-04 3:55 
GeneralRe: Execute an .exe read in memory Pin
Alexander M.,13-Sep-04 4:05
Alexander M.,13-Sep-04 4:05 
GeneralRe: Execute an .exe read in memory Pin
David Crow13-Sep-04 4:07
David Crow13-Sep-04 4:07 
GeneralRe: Execute an .exe read in memory Pin
mich213-Sep-04 4:17
mich213-Sep-04 4:17 
GeneralRe: Execute an .exe read in memory Pin
BlackDice13-Sep-04 12:07
BlackDice13-Sep-04 12:07 
GeneralRe: Execute an .exe read in memory Pin
mich213-Sep-04 14:34
mich213-Sep-04 14:34 
GeneralRe: Execute an .exe read in memory Pin
Arsalan Malik13-Sep-04 19:31
Arsalan Malik13-Sep-04 19:31 
GeneralRe: Execute an .exe read in memory Pin
mich213-Sep-04 19:45
mich213-Sep-04 19:45 
GeneralCreating shareware Pin
Hoornet9313-Sep-04 3:15
Hoornet9313-Sep-04 3:15 
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 

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.