if i have a radio button group, how can i determine the index of the radio button that is currently selected without saying
Updata(true);
int index = m_button;
??
I have a MFC DLL that is being called from another program, and I have a modal Dialog box that pops up. Is there a way I can hide/minimize the dialog box without minimizing the program?
Thanks,
Duckman
here's my reasoning:
allPoints[0] returns double[3]
so &(allPoitns[0]) returns a pointer to double[3]?
I also tried without the "&" since i'm thinking double[3] is actually an address of the first element of the array...
but it's giving me an error saying that there is a difference...
p_3d is actually an API typedef, and it's used to hold XYZ coordinates of points in 3-space. mmm, my application (not stress test!) is that I have a solid, and have a triangulated mesh genereated, which means i've created a surface out of adjacent triangles that entirely covers my solid. my...
If I have a function
struct myStruct{
double myDouble;
}
func(vector <myStruct> &myVector){
myStruct dynamicMyStruct;
dynamicMyStruct = new myStruct;
myVector.push_back(dynamicMyStruct);
}
how do I delete the memory associatted with dynamicMyStruct? I cannot delete it at the end of the...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.