Skip to content

Instantly share code, notes, and snippets.

@nibasya
nibasya / KanmusuListMakerDlg.cpp
Created March 21, 2016 05:23
.ini entry not deleted
// Delete section
- WriteProfileString(IntToStr(i), NULL, 0);
+ ret = AfxGetApp()->WriteProfileString(IntToStr(i), NULL, NULL);
+ if (ret == 0) {
+ MessageBox(GetLastErrorString());
+ }
@nibasya
nibasya / DragDropListBox.cpp
Created February 8, 2016 16:39
Example of CListBox function which holds scroll bar position during insertion/ removal of item
void CDragDropListBox::SwapItem(int newIndex)
{
DWORD data;
CString str;
int top;
SetRedraw(FALSE);
top = GetTopIndex();
GetText(newIndex, str);