Click here to Skip to main content
16,005,697 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralOpen the *.chm file in VC++ Pin
Anonymous15-Sep-02 18:22
Anonymous15-Sep-02 18:22 
GeneralRe: Open the *.chm file in VC++ Pin
Dave Bryant15-Sep-02 18:52
Dave Bryant15-Sep-02 18:52 
GeneralOpen the *.chm file in VC++ Pin
15-Sep-02 20:13
suss15-Sep-02 20:13 
GeneralRe: Open the *.chm file in VC++ Pin
Neville Franks15-Sep-02 20:34
Neville Franks15-Sep-02 20:34 
GeneralRe: Open the *.chm file in VC++ Pin
KarstenK16-Sep-02 2:48
mveKarstenK16-Sep-02 2:48 
GeneralRe: Open the *.chm file in VC++ Pin
Omar Lodhi16-Sep-02 23:13
Omar Lodhi16-Sep-02 23:13 
GeneralComboBox - turning OFF autocomplete in CE Pin
Codin' Carlos15-Sep-02 18:09
Codin' Carlos15-Sep-02 18:09 
GeneralRe: ComboBox - turning OFF autocomplete in CE Pin
Jonas Larsson17-Sep-02 4:52
Jonas Larsson17-Sep-02 4:52 
Hmm. I left my pda with the testers today, but as far as I remeber, CComboBox'es doesnt automatically do autocomplete in the edit box, they do it in the small popup window over the SIP. Maybe this is a feature in your program, or maybe Im just remembering it wrong?

Anyway, to disable the autocompletion that the SIP offers (handy on PPC 2000's since they do it for editboxes with ES_PASSWORD too) do this:
<br />
    SIPINFO info;<br />
    SHSipInfo(SPI_GETSIPINFO, 0, &info, 0);<br />
    info.fdwFlags |= SIPF_DISABLECOMPLETION;<br />
    SHSipInfo(SPI_SETSIPINFO, 0, &info, 0);<br />
    SHSipPreference(m_hWnd, SIP_FORCEDOWN);<br />
    SHSipPreference(m_hWnd, SIP_UP);<br />


And to turn it back on:

SIPINFO info;<br />
SHSipInfo(SPI_GETSIPINFO, 0, &info, 0);<br />
info.fdwFlags &= ~SIPF_DISABLECOMPLETION;<br />
SHSipInfo(SPI_SETSIPINFO, 0, &info, 0);


“Our solar system is Jupiter and a bunch of junk” - Charley Lineweaver 2002
GeneralDetecting PC peculiarity (vol of disk C ecc..) Pin
nencini15-Sep-02 17:52
nencini15-Sep-02 17:52 
GeneralRe: Detecting PC peculiarity (vol of disk C ecc..) Pin
Mike Nordell16-Sep-02 0:05
Mike Nordell16-Sep-02 0:05 
GeneralCTreeCtrl: select a tree item but not scroll it Pin
includeh1015-Sep-02 16:15
includeh1015-Sep-02 16:15 
GeneralRe: CTreeCtrl: select a tree item but not scroll it, help Pin
Dave Bryant15-Sep-02 16:31
Dave Bryant15-Sep-02 16:31 
GeneralRe: CTreeCtrl: select a tree item but not scroll it, help Pin
includeh1015-Sep-02 16:43
includeh1015-Sep-02 16:43 
GeneralCAsyncSocket question Pin
RobJones15-Sep-02 15:58
RobJones15-Sep-02 15:58 
GeneralRe: CAsyncSocket question Pin
RobJones15-Sep-02 16:42
RobJones15-Sep-02 16:42 
QuestionHow can I find the url active of the IExplorer Pin
CMEG15-Sep-02 14:41
sussCMEG15-Sep-02 14:41 
AnswerRe: How can I find the url active of the IExplorer Pin
Mustafa Demirhan15-Sep-02 20:56
Mustafa Demirhan15-Sep-02 20:56 
Generalrecognize return or Enter. Pin
Anonymous15-Sep-02 14:16
Anonymous15-Sep-02 14:16 
GeneralRe: recognize return or Enter. Pin
Christian Graus15-Sep-02 17:26
protectorChristian Graus15-Sep-02 17:26 
GeneralVC++ 6.0 and ".dsw" file. Pin
WREY15-Sep-02 13:59
WREY15-Sep-02 13:59 
GeneralRe: VC++ 6.0 and ".dsw" file. Pin
Maximilien15-Sep-02 14:08
Maximilien15-Sep-02 14:08 
GeneralRe: VC++ 6.0 and ".dsw" file. Pin
WREY15-Sep-02 14:57
WREY15-Sep-02 14:57 
GeneralRe: VC++ 6.0 and ".dsw" file. Pin
Pavel Klocek15-Sep-02 19:28
Pavel Klocek15-Sep-02 19:28 
GeneralDisable toolbar button (easy?) Pin
FlyingWren15-Sep-02 10:45
FlyingWren15-Sep-02 10:45 
GeneralRe: Disable toolbar button (easy?) Pin
Michael Dunn15-Sep-02 11:09
sitebuilderMichael Dunn15-Sep-02 11:09 

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.