Click here to Skip to main content
15,891,907 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: User interfaces with Win32 Pin
Naveen11-Jul-06 23:02
Naveen11-Jul-06 23:02 
GeneralRe: User interfaces with Win32 Pin
Abhi Lahare11-Jul-06 23:06
Abhi Lahare11-Jul-06 23:06 
AnswerRe: User interfaces with Win32 Pin
Jonathan [Darka]11-Jul-06 23:18
professionalJonathan [Darka]11-Jul-06 23:18 
QuestionProblems in Static LED control - CDigiStatic Pin
Semion_N11-Jul-06 21:53
Semion_N11-Jul-06 21:53 
AnswerRe: Problems in Static LED control - CDigiStatic Pin
Hamid_RT11-Jul-06 22:03
Hamid_RT11-Jul-06 22:03 
GeneralRe: Problems in Static LED control - CDigiStatic Pin
Semion_N11-Jul-06 22:35
Semion_N11-Jul-06 22:35 
GeneralRe: Problems in Static LED control - CDigiStatic Pin
Hamid_RT11-Jul-06 22:50
Hamid_RT11-Jul-06 22:50 
AnswerRe: Problems in Static LED control - CDigiStatic Pin
Abhi Lahare11-Jul-06 22:21
Abhi Lahare11-Jul-06 22:21 
GeneralRe: Problems in Static LED control - CDigiStatic Pin
Semion_N11-Jul-06 22:32
Semion_N11-Jul-06 22:32 
GeneralRe: Problems in Static LED control - CDigiStatic Pin
Naveen11-Jul-06 22:51
Naveen11-Jul-06 22:51 
GeneralRe: Problems in Static LED control - CDigiStatic Pin
Hamid_RT11-Jul-06 22:54
Hamid_RT11-Jul-06 22:54 
GeneralRe: Problems in Static LED control - CDigiStatic Pin
Semion_N11-Jul-06 23:13
Semion_N11-Jul-06 23:13 
GeneralRe: Problems in Static LED control - CDigiStatic Pin
Naveen11-Jul-06 23:24
Naveen11-Jul-06 23:24 
GeneralRe: Problems in Static LED control - CDigiStatic Pin
Semion_N11-Jul-06 23:44
Semion_N11-Jul-06 23:44 
GeneralRe: Problems in Static LED control - CDigiStatic Pin
Naveen11-Jul-06 23:52
Naveen11-Jul-06 23:52 
GeneralRe: Problems in Static LED control - CDigiStatic Pin
Semion_N12-Jul-06 0:20
Semion_N12-Jul-06 0:20 
here is the DigStatic:
<br />
class DigitStatic : public CDialog<br />
{<br />
DECLARE_DYNAMIC(DigitStatic)<br />
<br />
public:<br />
DigitStatic(CWnd* pParent = NULL); // standard constructor<br />
virtual ~DigitStatic();<br />
<br />
// Dialog Data<br />
// enum { IDD = IDC_CUSTOM2 };<br />
<br />
protected:<br />
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support<br />
<br />
DECLARE_MESSAGE_MAP()<br />
};<br />

You can see there the constructor.
and here is the CDigStatic and you can see there all you want:
<br />
// CDigiStatic class<br />
<br />
class CDigiStatic : public CStatic<br />
{<br />
// Construction<br />
public:<br />
CDigiStatic();<br />
<br />
// Attributes<br />
public:<br />
enum {<br />
DS_SMOOTH = 1, // Pioneer kind of characters<br />
DS_STYLE14 = 2, // use allways 14 segment display.<br />
DS_SZ_PROP = 4, // size proportional(default)<br />
DS_NO_OFF = 8, // Don't draw the off segments<br />
DS_SOFT = 16 // ambient bleeding to background<br />
};<br />


SnaidiS(Semion)
GeneralRe: Problems in Static LED control - CDigiStatic [modified] Pin
Naveen12-Jul-06 0:27
Naveen12-Jul-06 0:27 
GeneralRe: Problems in Static LED control - CDigiStatic Pin
Semion_N12-Jul-06 0:49
Semion_N12-Jul-06 0:49 
GeneralRe: Problems in Static LED control - CDigiStatic Pin
Naveen12-Jul-06 1:01
Naveen12-Jul-06 1:01 
GeneralRe: Problems in Static LED control - CDigiStatic Pin
Semion_N12-Jul-06 1:15
Semion_N12-Jul-06 1:15 
GeneralRe: Problems in Static LED control - CDigiStatic Pin
Naveen12-Jul-06 1:21
Naveen12-Jul-06 1:21 
GeneralRe: Problems in Static LED control - CDigiStatic Pin
Semion_N12-Jul-06 1:41
Semion_N12-Jul-06 1:41 
GeneralRe: Problems in Static LED control - CDigiStatic Pin
Naveen12-Jul-06 1:45
Naveen12-Jul-06 1:45 
GeneralRe: Problems in Static LED control - CDigiStatic Pin
Semion_N12-Jul-06 1:48
Semion_N12-Jul-06 1:48 
GeneralRe: Problems in Static LED control - CDigiStatic Pin
Naveen12-Jul-06 2:03
Naveen12-Jul-06 2:03 

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.