Click here to Skip to main content
15,901,205 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: speex - undefined reference Pin
Cedric Moonen3-Feb-09 3:09
Cedric Moonen3-Feb-09 3:09 
GeneralRe: speex - undefined reference [modified] Pin
Daerner Mandla3-Feb-09 3:17
Daerner Mandla3-Feb-09 3:17 
QuestionAdding binaries to a registry? Pin
kDevloper2-Feb-09 18:43
kDevloper2-Feb-09 18:43 
AnswerRe: Adding binaries to a registry? Pin
Sarath C2-Feb-09 19:10
Sarath C2-Feb-09 19:10 
GeneralRe: Adding binaries to a registry? Pin
kDevloper2-Feb-09 23:14
kDevloper2-Feb-09 23:14 
QuestionRe: Adding binaries to a registry? Pin
CPallini3-Feb-09 0:37
mveCPallini3-Feb-09 0:37 
AnswerRe: Adding binaries to a registry? Pin
kDevloper3-Feb-09 5:24
kDevloper3-Feb-09 5:24 
AnswerRe: Adding binaries to a registry? Pin
Hamid_RT3-Feb-09 20:42
Hamid_RT3-Feb-09 20:42 
Questionlist of connected cameras with system Pin
anilaabc2-Feb-09 18:34
anilaabc2-Feb-09 18:34 
AnswerRe: list of connected cameras with system Pin
Stuart Dootson2-Feb-09 20:41
professionalStuart Dootson2-Feb-09 20:41 
GeneralRe: list of connected cameras with system Pin
anilaabc6-Feb-09 16:49
anilaabc6-Feb-09 16:49 
Questionusing ace framework Pin
hrishiS2-Feb-09 18:20
hrishiS2-Feb-09 18:20 
AnswerRe: using ace framework Pin
Stuart Dootson2-Feb-09 20:26
professionalStuart Dootson2-Feb-09 20:26 
QuestionHandling the device change functionality for HID Devices Pin
hariakuthota2-Feb-09 18:14
hariakuthota2-Feb-09 18:14 
AnswerRe: Handling the device change functionality for HID Devices Pin
Sarath C2-Feb-09 18:28
Sarath C2-Feb-09 18:28 
AnswerRe: Handling the device change functionality for HID Devices Pin
john.alex.prog14-Feb-10 8:37
john.alex.prog14-Feb-10 8:37 
AnswerRe: Handling the device change functionality for HID Devices Pin
john.alex.prog14-Feb-10 8:41
john.alex.prog14-Feb-10 8:41 
GeneralRe: Handling the device change functionality for HID Devices Pin
hariakuthota14-Feb-10 17:32
hariakuthota14-Feb-10 17:32 
GeneralRe: Handling the device change functionality for HID Devices Pin
john.alex.prog14-Feb-10 19:01
john.alex.prog14-Feb-10 19:01 
GeneralRe: Handling the device change functionality for HID Devices Pin
hariakuthota14-Feb-10 19:10
hariakuthota14-Feb-10 19:10 
GeneralRe: Handling the device change functionality for HID Devices Pin
john.alex.prog15-Feb-10 4:14
john.alex.prog15-Feb-10 4:14 
Questionhow to disable vertical and horizontal scrollbar in a FormView class Pin
Deepu Antony2-Feb-09 18:05
Deepu Antony2-Feb-09 18:05 
Hi

I am using a multidocument application.


CMultiDocTemplate* pDocTemplate_Digi;
pDocTemplate_Digi = new CMultiDocTemplate(
IDR_DIGITAL,
RUNTIME_CLASS(CDDRUDoc),
RUNTIME_CLASS(CChildFrame), // custom MDI child frame
RUNTIME_CLASS(CSuperGrid1View));

my view CSuperGrid1View is inherited from CFormview.
I want to disable the scroll bars that is coming default in my view.

BOOL CChildFrame::PreCreateWindow(CREATESTRUCT& cs)
{
// TODO: Modify the Window class or styles here by modifying
// the CREATESTRUCT cs]

cs.style &= ~WS_EX_RIGHTSCROLLBAR;
cs.style &= ~WS_EX_LEFTSCROLLBAR ;

if( !CMDIChildWnd::PreCreateWindow(cs) )
return FALSE;

return TRUE;

}

I did the same in CSuperGrid1View::PreCreateWindow(..)

But it is not disabling.Can anybody help me please.

Regards
Deepu
AnswerRe: how to disable vertical and horizontal scrollbar in a FormView class Pin
Roger Allen4-Feb-09 14:07
Roger Allen4-Feb-09 14:07 
QuestionHow can chk Dialog box is open? Pin
Le@rner2-Feb-09 17:54
Le@rner2-Feb-09 17:54 
AnswerRe: How can chk Dialog box is open? Pin
Nibu babu thomas2-Feb-09 18:00
Nibu babu thomas2-Feb-09 18:00 

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.