Click here to Skip to main content
15,906,645 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Memory Leak Pin
«_Superman_»25-Oct-09 8:43
professional«_Superman_»25-Oct-09 8:43 
AnswerRe: Memory Leak Pin
PJ Arends23-Oct-09 12:37
professionalPJ Arends23-Oct-09 12:37 
GeneralRe: Memory Leak Pin
BarryPearlman23-Oct-09 15:12
BarryPearlman23-Oct-09 15:12 
Questionint treated as binary no. Pin
Manmohan2923-Oct-09 10:41
Manmohan2923-Oct-09 10:41 
AnswerRe: int treated as binary no. Pin
David Crow23-Oct-09 10:45
David Crow23-Oct-09 10:45 
GeneralRe: int treated as binary no. Pin
Manmohan2923-Oct-09 10:58
Manmohan2923-Oct-09 10:58 
AnswerRe: int treated as binary no. Pin
David Crow23-Oct-09 11:04
David Crow23-Oct-09 11:04 
GeneralRe: int treated as binary no. Pin
Manmohan2923-Oct-09 11:16
Manmohan2923-Oct-09 11:16 
void CaDlg::OnBnClickedBrefreshdevices()
{
	// TODO: Add your control notification handler code here	
	m_ctlStatus.SetString(_T("Not Functional"));
	UpdateData(FALSE);
	unsigned int field0 = 0, field1 = 0, field2 = 0, field3 = 0;
	CString ips = _T("");
	char a[4] = "";
	int t=0,c=0;

	for(field0 = 192; field0 <= 192; field0++)
	{
		for(field1 = 168; field1 <= 168; field1++)
		{
			for(field2 = 0; field2 <= 255; field2++)
			{
				for(field3 = 0; field3 <= 255; field3++)
				{
					//ips.Format(field0 + "." + field1 + "." + field2 + "." + field3);
					_itoa_s(field0, a, 4, 10);
					ips = a;
					ips += '.';
					_itoa_s(field1, a, 4, 10);
					ips += a;
					ips += '.';
					_itoa_s(field2, a, 4, 10);
					ips += a;
					ips += '.';
					_itoa_s(field3, a, 4, 10);
					ips += a;
					t = LCDevices.InsertItem(c, ips);
					c++;

					LCDevices.SetItemText(t, 1, _T("Testing"));

				}
			}
		}
	}

}


I am using index in subsequent calls to SetItemText().
but still when t = 10 then it becomes t = 2 (binary 10).Confused | :confused:
one more thing the counting is like this:-
ips "192.168.0.0" t = 0
.
.
.
ips "192.168.0.9" t = 9
ips "192.168.0.10" t = 2
.
.
.
ips "192.168.0.20" t = 13
.
.
.
ips "192.168.0.99" t = 99
ips "192.168.0.100" t = 3
ips "192.168.0.101" t = 4
ips "192.168.0.102" t = 5

Future Lies in Present.
Manmohan Bishnoi

GeneralRe: int treated as binary no. Pin
David Crow23-Oct-09 15:08
David Crow23-Oct-09 15:08 
QuestionScrollbars are shown incorrectly. Pin
Nikz223-Oct-09 10:01
Nikz223-Oct-09 10:01 
AnswerRe: Scrollbars are shown incorrectly. [modified] Pin
Nikz223-Oct-09 12:17
Nikz223-Oct-09 12:17 
GeneralRe: Scrollbars are shown incorrectly. Pin
«_Superman_»23-Oct-09 12:31
professional«_Superman_»23-Oct-09 12:31 
GeneralRe: Scrollbars are shown incorrectly. Pin
Nikz223-Oct-09 12:53
Nikz223-Oct-09 12:53 
GeneralRe: Scrollbars are shown incorrectly. Pin
«_Superman_»23-Oct-09 13:01
professional«_Superman_»23-Oct-09 13:01 
GeneralSolution Pin
Nikz223-Oct-09 14:07
Nikz223-Oct-09 14:07 
GeneralRe: Scrollbars are shown incorrectly. Pin
«_Superman_»23-Oct-09 14:15
professional«_Superman_»23-Oct-09 14:15 
QuestionLooking for Mathematical Expressions Evaluator Pin
Tony Teveris23-Oct-09 9:25
Tony Teveris23-Oct-09 9:25 
AnswerRe: Looking for Mathematical Expressions Evaluator Pin
David Crow23-Oct-09 9:33
David Crow23-Oct-09 9:33 
QuestionWho has the file opened? Pin
Peter Weyzen23-Oct-09 9:11
Peter Weyzen23-Oct-09 9:11 
QuestionRe: Who has the file opened? Pin
David Crow23-Oct-09 9:34
David Crow23-Oct-09 9:34 
AnswerRe: Who has the file opened? Pin
Peter Weyzen23-Oct-09 10:19
Peter Weyzen23-Oct-09 10:19 
GeneralRe: Who has the file opened? Pin
David Crow23-Oct-09 10:22
David Crow23-Oct-09 10:22 
QuestionProperty Sheet OnOK only calls property page1 OnOK override? [modified] Pin
al250023-Oct-09 8:19
al250023-Oct-09 8:19 
AnswerRe: Property Sheet OnOK only calls property page1 OnOK override? Pin
al250023-Oct-09 9:26
al250023-Oct-09 9:26 
AnswerRe: Property Sheet OnOK only calls property page1 OnOK override? Pin
David Crow23-Oct-09 9:51
David Crow23-Oct-09 9:51 

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.