Re: Passing parameters from main dialog to Tab's
I am using SerialCom
In my main dialog's .h file I have the following.
// AdelphiX2Dlg.h : header file
//
#if
!defined(AFX_ADELPHIX2DLG_H__73D04BC6_4B69_4C03_A79E_C777887BC00C__INCLUDED_)
#define AFX_ADELPHIX2DLG_H__73D04BC6_4B69_4C03_A79E_C777887BC00C__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "Web1a.h"
#include "Web2a.h"
#include "Options.h"
#include "SerialCom.h"
/////////////////////////////////////////////////////////////////////////////
// CAdelphiX2Dlg dialog
class CAdelphiX2Dlg : public CDialog
{
// Construction
public:
CAdelphiX2Dlg(CWnd* pParent = NULL); // standard constructor
Web1a m_dWeb1a;
Web2a m_dWeb2a;
Options m_dOptions;
void ShowWindowNumber(int number);
CSerialCom port;
// Dialog Data
//{{AFX_DATA(CAdelphiX2Dlg)
enum { IDD = IDD_ADELPHIX2_DIALOG };
// NOTE: the ClassWizard will add data members here
CTabCtrl m_cTab;
//}}AFX_DATA
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CAdelphiX2Dlg)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
HICON m_hIcon;
// Generated message map functions
//{{AFX_MSG(CAdelphiX2Dlg)
virtual BOOL OnInitDialog();
afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
afx_msg void OnPaint();
afx_msg HCURSOR OnQueryDragIcon();
afx_msg void OnShowWindow(BOOL bShow, UINT nStatus);
afx_msg void OnSelchangeTab1(NMHDR* pNMHDR, LRESULT* pResult);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
private:
CRect m_rSettingsRect;
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately
before the previous line.
#endif //
!defined(AFX_ADELPHIX2DLG_H__73D04BC6_4B69_4C03_A79E_C777887BC00C__INCLUDED_)
=================================================================================================
I setup the port in the main dialog .cpp file
CString Comport = "com1";
if(!(port.OpenPort(Comport))){
MessageBox("Cannot open Communication Port.\nPlease Check Options For
Proper Setting","Error",MB_OK+MB_ICONERROR);
return true;
}
if(!(port.ConfigurePort(19200,8,0,NOPARITY,ONESTOPBIT))){
MessageBox("Cannot Configure Communication
Port","Error",MB_OK+MB_ICONERROR);
port.ClosePort();
}
else{
if(!(port.SetCommunicationTimeouts(0,260,0,0,0))){
MessageBox("Cannot Configure Communication
Timeouts","Error",MB_OK+MB_ICONERROR);
port.ClosePort();
}
}
=================================================================================================
Now I wish to use port within Web1a.cpp and Web2a.cpp
//using something like
port.WriteByte(sbyte);
//to send data out the serial port
=================================================================================================
=================================================================================================
On Thu, 18 Oct 2012 18:04:18 -0700 (PDT), ScottMcP [MVP] wrote:
What type is port?
As an example, if its type is CSerialPort then add a function to the Web1a dialog class like this:
// .h
CSerialPort* m_pport;
// .cpp
void CWeb1a::SetPort(CSerialPort* pport)
{ m_pport = pport;
}
The dialog will then be able to do
m_pport->WriteByte(sbyte);