|
if it's basic stuff (command line/console application) , it should be straight forward.
If it's UI, then you probably will have to start from scratch.
but hey, it's a good exercise.
This signature was proudly tested on animals.
|
|
|
|
|
I used the following method to cancel the serializing process:
void CMyAppDoc::Serilize(CArchive &ar)
{
if (
{
ar.abort();
return;
}
}
But it always cause an exception. Any idea?
Thank you masters!
|
|
|
|
|
how to convert numbers that you get from cedit box to binary..??
|
|
|
|
|
what the user enters is a string.
there are functions to convert strings to numbers, such as atof().
once it is a number, it is stored internally in binary, unless your computer is one of the non-binary kind (almost extinct).
maybe you want it to show the number in binary too?
there are several ways to do this, here are two:
- convert it to an octal (or hexadecimal) string (sprintf knows how to do this), then replace 0 by Z,
1 by Y, 7 by 111, 6 by 110, ... , 2 by 010, Y by 001 and Z by 000
- or write a loop, look at the least-significant bit, convert that to a '0' or a '1'; shift the number right by one, and repeat, prefixing each new character to what you already have, until the remaining number is zero.
|
|
|
|
|
so i have to break cstring to single elements and then every element convert to binary.. at the end..i have to put them back together..hmm..ok..i will try..
|
|
|
|
|
hi
The orientation (θ) of the major axis and the scale of the distribution are determined by finding an equivalent rectangle that has the same moments as those measured from the 2D probability distribution image.But I can not understand clearly.
which algorithm cvcamshift choose?
thank you.
CV_CALL( cvMoments( &cur_win, &moments ));
m00 = moments.m00;
m10 = moments.m10;
m01 = moments.m01;
mu11 = moments.mu11;
mu20 = moments.mu20;
mu02 = moments.mu02;
if( fabs(m00) < DBL_EPSILON )
EXIT;
inv_m00 = 1. / m00;
xc = cvRound( m10 * inv_m00 + windowIn.x );//新计算出来的中心
yc = cvRound( m01 * inv_m00 + windowIn.y );
a = mu20 * inv_m00;//(x-x的中心)的平方*概率/总概率
b = mu11 * inv_m00;//(x-x的中心)(y-y的中心)*概率/总概率
c = mu02 * inv_m00;//(y-y的中心)的平方*概率/总概率
/* Calculating width & height */
square = sqrt( 4 * b * b + (a - c) * (a - c) );
/* Calculating orientation */
theta = atan2( 2 * b, a - c + square );
/*
原型:extern float atan2(float y, float x);
用法:#include <math.h>
功能:求y/x(弧度表示)的反正切值
说明:值域为(-π/2,+π/2)。
*/
/* Calculating width & length of figure */
cs = cos( theta );
sn = sin( theta );
rotate_a = cs * cs * mu20 + 2 * cs * sn * mu11 + sn * sn * mu02;
rotate_c = sn * sn * mu20 - 2 * cs * sn * mu11 + cs * cs * mu02;
length = sqrt( rotate_a * inv_m00 ) * 4;
width = sqrt( rotate_c * inv_m00 ) * 4;
|
|
|
|
|
I have problems with deleting cstring..for example i have number 5,432 now i want to delete 2 and 3.. so result would be 5,4...how should i do it??
|
|
|
|
|
You can use of CString:Find and then use of CString:Delete.Is this your question?
Of one Essence is the human race
thus has Creation put the base
One Limb impacted is sufficient
For all Others to feel the Mace
(Saadi )
|
|
|
|
|
lets say i have button backspace..now user is typing numbers in cedit box..when he presses backspace button it deletes just last index of string..it would always delete just last when button pressed..
|
|
|
|
|
CString str
CEdit* pEdit1 = (CEdit*) GetDlgItem(IDC_ISENTERYDATA);// editbox ID is IDC_ISENTERYDATA
pEdit1->GetWindowTextA(str);
int t = str.GetLength();
// to delete last character:
str[(t-1)] = "";
A C++ programming language novice, but striving to learn
|
|
|
|
|
dude i tryed like this before i even wrote here..sorry..didn't work for me..thx anyway..
|
|
|
|
|
CString str2;<br />
int brisi;<br />
<br />
str2.Format(_T("%f"), skupno);<br />
brisi=str2.GetLength();<br />
<br />
str2[(brisi-1)]="";<br />
and error.. error C2440: '=' : cannot convert from 'const char [1]' to 'wchar_t'
|
|
|
|
|
Do this.
str2[(brisi-1)] = _T("");
«_Superman_»
I love work. It gives me something to do between weekends.
|
|
|
|
|
Have you tried:
CString str = "5,432";
int nLen = str.GetLength();
strr = str.Left(nLen - 1);
"Old age is like a bank account. You withdraw later in life what you have deposited along the way." - Unknown
"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons
|
|
|
|
|
Ok, heres what should happen. The program should return the value's of the access token of the current user. What is wrong with this picture?
I believe I need to relate SetPrivilege to a string. So later on I can use cout SetPrivilege()
I am setting up a GUEST account on my laptop, then running my program to retrieve the access token, so we can view the relate ACE's within the DACL. The point is to retrieve the limited access and display it on the screen. So I can then change it; getting familiar with ACE's, DACL's, and SACL's.
The error I get when compiling this source is that BOOL has to Few arguments. So BOOL does not have enough supplied telling it what to do, correct?
Thank you all in advance!
V/R
Rob & Big
#include <iostream><br />
#include <string><br />
#include <windows.h><br />
#include <stdio.h><br />
using namespace std;<br />
<br />
<br />
BOOL SetPrivilege(<br />
HANDLE hToken,
LPCTSTR lpszPrivilege,
BOOL bEnablePrivilege
) <br />
{<br />
TOKEN_PRIVILEGES tp;<br />
LUID luid;<br />
<br />
if ( !LookupPrivilegeValue( <br />
NULL,
lpszPrivilege,
&luid ) )
{<br />
printf("LookupPrivilegeValue error: %u\n", GetLastError() ); <br />
return FALSE; <br />
}<br />
<br />
tp.PrivilegeCount = 1;<br />
tp.Privileges[0].Luid = luid;<br />
if (bEnablePrivilege)<br />
tp.Privileges[0].Attributes = SE_PRIVILEGE_ENABLED;<br />
else<br />
tp.Privileges[0].Attributes = 0;<br />
<br />
<br />
if ( !AdjustTokenPrivileges(<br />
hToken, <br />
FALSE, <br />
&tp, <br />
sizeof(TOKEN_PRIVILEGES), <br />
(PTOKEN_PRIVILEGES) NULL, <br />
(PDWORD) NULL) )<br />
{ <br />
printf("AdjustTokenPrivileges error: %u\n", GetLastError() ); <br />
return FALSE; <br />
} <br />
<br />
if (GetLastError() == ERROR_NOT_ALL_ASSIGNED)<br />
<br />
{<br />
printf("The token does not have the specified privilege. \n");<br />
return FALSE;<br />
} <br />
<br />
return TRUE;<br />
}<br />
<br />
string GetLocalComputerName()<br />
{<br />
TCHAR chrComputerName[MAX_COMPUTERNAME_LENGTH + 1];<br />
string strRetVal;<br />
DWORD dwBufferSize = MAX_COMPUTERNAME_LENGTH + 1;<br />
<br />
if(GetComputerName(chrComputerName,&dwBufferSize)) {<br />
strRetVal = chrComputerName;<br />
} else {<br />
strRetVal = "";<br />
}<br />
<br />
return(strRetVal);<br />
}<br />
<br />
<br />
int main()<br />
{<br />
system("CLS");<br />
string password;<br />
cout << "password: ";<br />
cin >> password;<br />
<br />
if (password == "123"){<br />
system("CLS");
cout << "password accepted" << endl;}<br />
<br />
else{<br />
cout << "password incorrect" << endl;<br />
goto exit;}<br />
exit:<br />
<br />
system("CLS");<br />
system("TITLE Local Computer Name");<br />
<br />
cout << GetLocalComputerName() << endl;<br />
cout << SetPrivilege();<br />
std::cin.ignore( std::numeric_limits<std::streamsize>::max(), '\y' ); <br />
return 0;<br />
}
|
|
|
|
|
rbwest86 wrote: The error I get when compiling this source is that BOOL has to Few arguments. So BOOL does not have enough supplied telling it what to do, correct?
For starters, remove all of the code except that which is in error. Folks are not going to bother to wade through all of that when most of it is irrelevant. What was the exact error message?
"Old age is like a bank account. You withdraw later in life what you have deposited along the way." - Unknown
"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons
|
|
|
|
|
I am sorry for the confusion. Here is the code which needs clarification. I am trying to figure out how to relay the BOOL Function to a string, so I can then cout << string << endl;
Here is the code:
<code>BOOL SetPrivilege(
HANDLE hToken, // access token handle
LPCTSTR lpszPrivilege, // name of privilege to enable/disable
BOOL bEnablePrivilege // to enable or disable privilege
)
{
TOKEN_PRIVILEGES tp;
LUID luid;
if ( !LookupPrivilegeValue(
NULL, // lookup privilege on local system
lpszPrivilege, // privilege to lookup
&luid ) ) // receives LUID of privilege
{
printf("LookupPrivilegeValue error: %u\n", GetLastError() );
return FALSE;
}
tp.PrivilegeCount = 1;
tp.Privileges[0].Luid = luid;
if (bEnablePrivilege)
tp.Privileges[0].Attributes = SE_PRIVILEGE_ENABLED;
else
tp.Privileges[0].Attributes = 0;
// Enable the privilege or disable all privileges.
if ( !AdjustTokenPrivileges(
hToken,
FALSE,
&tp,
sizeof(TOKEN_PRIVILEGES),
(PTOKEN_PRIVILEGES) NULL,
(PDWORD) NULL) )
{
printf("AdjustTokenPrivileges error: %u\n", GetLastError() );
return FALSE;
}
if (GetLastError() == ERROR_NOT_ALL_ASSIGNED)
{
printf("The token does not have the specified privilege. \n");
return FALSE;
}
return TRUE;
}
Thank you once again for helping me with this.
|
|
|
|
|
Hi
I am looking for a subroutine of FFT written with C++.
I have a fortran version Four1(DATA,NN,ISIGN), and I am looking for its counterpart in C++.
Thanks in advance for the help.
|
|
|
|
|
I see two options:
- See [^].
- Translate the
FORTRAN routine.
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler.
-- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong.
-- Iain Clarke
[My articles]
|
|
|
|
|
i'm having trouble understaning this function call in the constructor.
( const char *const first, const char * const last )
i see we have a constant then a char type then a pointer to first thats declared a char constant. But isn't that declaring first a constant and a char twice. I'm reading Dietel 5th edition maybe i misread something can someone please explain this argument in the function call please to a newby.
Employee::Employee( const char * const first, const char * const last )
26 {
27 firstName = new char[ strlen( first ) + 1 ];
28 strcpy( firstName, first );
29
30 lastName = new char[ strlen( last ) + 1 ];
31 strcpy( lastName, last );
32
33 count++; // increment static count of employees
34
35 cout << "Employee constructor for " << firstName
36 << ' ' << lastName << " called." << endl;
37 } // end Employee constructor
|
|
|
|
|
I hope you get the idea.
const char* p;
*p = 'A';
p = arr2;
char* const p;
*p = 'A';
p = arr2;
«_Superman_»
I love work. It gives me something to do between weekends.
|
|
|
|
|
See here and here.
"Old age is like a bank account. You withdraw later in life what you have deposited along the way." - Unknown
"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons
|
|
|
|
|
o.k. the newby.. after trudging on now processess the argument. the second const is simply the name given to the passed parameter const first.
|
|
|
|
|
here is a code snippet in Dietels 5th edition that i'm reading for my OOP class. I don't understand what the : x( value ) means in the constructor. The comment says initialize x to value, but can someone explain that to me in more detail please. I know its not inheritance because i haven't got to the chapter yet. Can some one please help. Here is the code snippet.
class Test
8 {
9 public:
10 Test( int = 0 ); // default constructor
11 void print() const;
12 private:
13 int x;
14 }; // end class Test
15
16 // constructor
17 Test::Test( int value )
18 : x( value ) // initialize x to value
19 {
20 // empty body
21 } // end constructor Test
.
.
.
|
|
|
|
|
That is how you initialize the private data member x .
Writing x = value inside the constructor will become assignment and not initialization.
Here is an example of both -
Initialization
int x = 10;
Assignment
int x;
x = 10;
«_Superman_»
I love work. It gives me something to do between weekends.
|
|
|
|