Click here to Skip to main content
15,890,670 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Redistribution FIle for VS 2008 Pin
uusheikh3-Mar-08 18:16
uusheikh3-Mar-08 18:16 
QuestionUsing multiple Dialogs withing a Dialog application Pin
jonsey298473-Mar-08 9:04
jonsey298473-Mar-08 9:04 
GeneralRe: Using multiple Dialogs withing a Dialog application Pin
Mark Salsbery3-Mar-08 9:33
Mark Salsbery3-Mar-08 9:33 
GeneralRe: Using multiple Dialogs withing a Dialog application Pin
jonsey298473-Mar-08 11:28
jonsey298473-Mar-08 11:28 
GeneralRe: Using multiple Dialogs withing a Dialog application Pin
Mark Salsbery3-Mar-08 11:38
Mark Salsbery3-Mar-08 11:38 
GeneralRe: Using multiple Dialogs withing a Dialog application Pin
jonsey298473-Mar-08 11:56
jonsey298473-Mar-08 11:56 
GeneralRe: Using multiple Dialogs withing a Dialog application Pin
Mark Salsbery3-Mar-08 12:05
Mark Salsbery3-Mar-08 12:05 
GeneralRe: Using multiple Dialogs withing a Dialog application Pin
jonsey298473-Mar-08 13:32
jonsey298473-Mar-08 13:32 
/* Wedit generated resource file */<br />
#ifdef __LCC__<br />
#include <windows.h><br />
#endif<br />
#include "obdiiv3res.h"<br />
<br />
<br />
IDD_MAINDIALOG DIALOG 99, 8, 517, 292<br />
STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU<br />
CAPTION "OBDII v3.0a"<br />
FONT 10, "MS Sans Serif"<br />
BEGIN<br />
    PUSHBUTTON      "Print PID data", BTN_PRINT, 188, 255, 60, 20<br />
    CTEXT           "", MSG_BAUDRATE, 326, 255, 37, 12, SS_SUNKEN<br />
    LTEXT           "Baud rate", -1, 407, 195, 70, 9<br />
    COMBOBOX        CB_BAUDRATE, 407, 205, 69, 35, CBS_DROPDOWN | CBS_SORT | WS_VSCROLL | WS_TABSTOP<br />
    CONTROL         "", -1, "STATIC", SS_BLACKFRAME, 319, 144, 166, 33<br />
    CONTROL         "", -1, "STATIC", SS_BLACKFRAME, 17, 255, 158, 27<br />
    PUSHBUTTON      "Get DTC", BTN_GETCODE, 373, 20, 60, 20, WS_DISABLED<br />
    LTEXT           "Startup, PID messages and trouble code help will appear here", MSG_PIDSELECTION, 20, 260, 151, 17, NOT WS_GROUP<br />
    CONTROL         "", LV_PIDDATA, "syslistview32", 0x241 | WS_DISABLED | WS_BORDER, 17, 100, 277, 143<br />
    LISTBOX         LB_PIDSELECTION, 17, 20, 276, 71, WS_DISABLED | WS_VSCROLL | WS_TABSTOP<br />
    LTEXT           "Communication messages will be posted here.", MSG_COMMUNICATION, 324, 148, 155, 23, NOT WS_GROUP<br />
    LTEXT           "Send data", LBL_SENDDATA, 318, 65, 75, 9<br />
    COMBOBOX        CB_COMPORT, 326, 205, 71, 35, CBS_DROPDOWNLIST | CBS_SORT | WS_VSCROLL | WS_TABSTOP<br />
    CTEXT           "", IND_ONLINE, 410, 255, 65, 12, SS_SUNKEN<br />
    DEFPUSHBUTTON   "Go online...", BTN_GOONLINE, 326, 230, 71, 14<br />
    GROUPBOX        "COM Settings", CRP_COMSETTINGS, 318, 181, 169, 91<br />
    COMBOBOX        CB_DEVICE, 318, 123, 70, 35, CBS_DROPDOWN | CBS_SORT | WS_DISABLED | WS_VSCROLL | WS_TABSTOP<br />
    PUSHBUTTON      "Send data", BTN_SENDDATA, 422, 123, 63, 14, WS_DISABLED<br />
    EDITTEXT        EB_RECEIVEDDATA, 318, 100, 169, 12, ES_AUTOHSCROLL | ES_READONLY<br />
    EDITTEXT        EB_SENDDATA, 318, 75, 170, 12, ES_AUTOHSCROLL | WS_DISABLED<br />
    GROUPBOX        "Communication", GRP_COMMUNICATION, 308, 50, 190, 235<br />
    PUSHBUTTON      "Get PID Data", BTN_GETPIDDATA, 308, 20, 60, 20, WS_DISABLED<br />
    PUSHBUTTON      "Cancel", IDCANCEL, 438, 20, 60, 20<br />
    LTEXT           "Received data", TL_RECEIVEDDATA, 318, 90, 75, 9<br />
    LTEXT           "Device selection", TL_DEVICE, 318, 114, 75, 9<br />
    LTEXT           "COM Port", TL_COMPORT, 326, 195, 70, 9<br />
    LTEXT           "PID Selection", TL_PIDSELECTION, 18, 10, 75, 9<br />
    LTEXT           "PID data", TL_PIDDATA, 17, 90, 75, 9<br />
    CTEXT           "", MSG_PARITY, 365, 255, 12, 12, SS_SUNKEN<br />
    CTEXT           "", MSG_STOPBITS, 393, 255, 15, 12, SS_SUNKEN<br />
    CTEXT           "", MSG_BYTESIZE, 379, 255, 12, 12, SS_SUNKEN<br />
END<br />
<br />
IDD_PRINT DIALOG 113, 7, 490, 292<br />
STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU <br />
CAPTION "Print Report"<br />
FONT 10, "MS Sans Serif"<br />
BEGIN<br />
    PUSHBUTTON      "Cancel", IDCANCEL, 12, 243, 40, 14<br />
    CONTROL         "", REPORT, "STATIC", SS_WHITERECT, 12, 12, 465, 226<br />
END<br />
OBDII_ICON ICON "c:\\lcc-win32\\projects\\obdiiv3\\obdii.ico"<br />

GeneralRe: Using multiple Dialogs withing a Dialog application Pin
Mark Salsbery3-Mar-08 14:02
Mark Salsbery3-Mar-08 14:02 
GeneralRe: Using multiple Dialogs withing a Dialog application Pin
jonsey298473-Mar-08 15:00
jonsey298473-Mar-08 15:00 
GeneralRe: Using multiple Dialogs withing a Dialog application Pin
Mark Salsbery3-Mar-08 20:53
Mark Salsbery3-Mar-08 20:53 
GeneralAdding items to the 'right-click'(title-bar) context menu of any application Pin
neil47813-Mar-08 8:50
neil47813-Mar-08 8:50 
GeneralRe: Adding items to the 'right-click'(title-bar) context menu of any application Pin
Mark Salsbery3-Mar-08 10:06
Mark Salsbery3-Mar-08 10:06 
QuestionAbout how many weeks are needed for a Simplified Version of Skype? Pin
eroy4u3-Mar-08 7:18
eroy4u3-Mar-08 7:18 
AnswerRe: About how many weeks are needed for a Simplified Version of Skype? Pin
led mike3-Mar-08 7:53
led mike3-Mar-08 7:53 
GeneralRe: About how many weeks are needed for a Simplified Version of Skype? Pin
Mark Salsbery3-Mar-08 9:29
Mark Salsbery3-Mar-08 9:29 
AnswerRe: About how many weeks are needed for a Simplified Version of Skype? Pin
David Crow3-Mar-08 10:23
David Crow3-Mar-08 10:23 
GeneralCall CMainFrame methold from dialog Pin
ptr_Electron3-Mar-08 4:39
ptr_Electron3-Mar-08 4:39 
GeneralRe: Call CMainFrame methold from dialog Pin
Randor 3-Mar-08 4:46
professional Randor 3-Mar-08 4:46 
GeneralRe: Call CMainFrame methold from dialog Pin
ptr_Electron3-Mar-08 22:12
ptr_Electron3-Mar-08 22:12 
GeneralRe: Call CMainFrame methold from dialog Pin
ptr_Electron3-Mar-08 22:52
ptr_Electron3-Mar-08 22:52 
GeneralRe: Call CMainFrame methold from dialog Pin
Randor 4-Mar-08 3:59
professional Randor 4-Mar-08 3:59 
GeneralRe: Call CMainFrame methold from dialog Pin
ptr_Electron4-Mar-08 5:16
ptr_Electron4-Mar-08 5:16 
GeneralCursor Pointers Pin
duta3-Mar-08 4:24
duta3-Mar-08 4:24 
GeneralRe: Cursor Pointers Pin
Mark Salsbery3-Mar-08 6:11
Mark Salsbery3-Mar-08 6:11 

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.