|
Thanks a lot!
I knew that the solution is simple just did not want to try out all of message handlers available; so your help eased my life a lot
-- modified at 11:42 Tuesday 28th February, 2006
Oops! That does not work. Seems that ActiveX control is stronger - I completely hide my window and try filter with SWP_NOACTIVATE but nothing.
Maybe if I tell that ActiveX control is WebBrowser that would give you some more ideas?
Thanks
|
|
|
|
|
No I have no other idea. You can try to disable the window to prevent it from getting focus (EnableWindow(hwnd,0); ).
|
|
|
|
|
Hi All
I have to erase a file permanently by using Gutmann Algorithm,
I studied Gutmann algorithm and learned that it deletes a file after 35 passes, in which in first 4 and in the last 4 passes random values are written to buffer and in the rest 28 passes RLL & MFM technique is used to write the data in to the buffer.
Here I'm not getting RLL & MFM.
So Please explain these terms, and I will be grateful if provide some code snippets for the same.
Please help me
Thanks
|
|
|
|
|
Run Length Limited and Modified Frequency Modulation - these are encoding techniques when writing data to the disk head, it's more to do with eletrcial issues than software issues.
The tigress is here 
|
|
|
|
|
Hi All,
Can anyone tell me how to change the value of an Environment variable programmatically? I have tried _putenv, _wputenv and SetEnvironmentVariable. All of them are returning success but the value is not changing.
Can anyone tell me where I am going wrong?
Thanks and Regards,
Anil
|
|
|
|
|
the environment variable are acutally changed, but within the process...
close the windows session to see the changes appear...
TOXCCT >>> GEII power [toxcct][VisualCalc 2.24][3.0 soon...]
|
|
|
|
|
The environment block for each process is a copy of the system environment. You can modify it for your own process. But you cannot change the environment for other applications.
|
|
|
|
|
|
Maybe you should copyright your answers
|
|
|
|
|
that's not what i meant, but the guy has been answering twice on something i already answered...
was there a real need to spam the forum with answers that don't solve the problem more ?
TOXCCT >>> GEII power [toxcct][VisualCalc 2.24][3.0 soon...]
|
|
|
|
|
i have to admit that his answer was more clear, so i think it does not qualify as spam.
Er zit een korstje op mijn aars.
|
|
|
|
|
toxcct wrote: ...the guy has been answering twice on something i already answered...
Is that necessarily a bad thing? Are you sure that he saw your post before making one of his own?
"Let us be thankful for the fools. But for them the rest of us could not succeed." - Mark Twain
"There is no death, only a change of worlds." - Native American Proverb
|
|
|
|
|
(:(hello! what's the code to close a window using a button on it ...
the situation :
A login frame ( mainFrame of my program ) that will call a new frame
if the login is correct. then i have to close ( or hide ) the parent frame :
void Cfrmlogin::OnButton1()
{
// TODO: Add your control notification handler code here
CTgesDlg mainFrame ;
mainFrame.DoModal();
}
Thank you for your help
.. me again :'(
|
|
|
|
|
if the frame is Modal, then it halts the execution of the function which called it, unless it is closed from inside it.
inside the frame, do this->EndDialog(0);
TOXCCT >>> GEII power [toxcct][VisualCalc 2.24][3.0 soon...]
|
|
|
|
|
void Cfrmlogin::OnButton1() <br />
{<br />
CTgesDlg mainFrame ;<br />
ShowWindow(SW_HIDE);<br />
mainFrame.DoModal();<br />
EndDialog(0);<br />
}
thats all.
|
|
|
|
|
|
As has already been mentioned, EndDialog() is the answer, but I would suggest using some argument other than 0 (which normally indicates success) to indicate to the calling process why the application was terminated.
"Let us be thankful for the fools. But for them the rest of us could not succeed." - Mark Twain
"There is no death, only a change of worlds." - Native American Proverb
|
|
|
|
|
I am working on bayesian filter so i have to prepare a hash table of some words so for this i am mot able to identify how to identify words which are noun,adjective,prepositions etc..
for this if anybody have idea please share with me .
i have one idea that i have to call dictionary API and this api provide function which returns type of given words so also
i am not able to find where i have to download dictionary API so first of all i have to download Dictionary API if anybody can give me link where i can download this API.
please reply me ASAP.
Bankey Khandelwal
Software Engineer
|
|
|
|
|
I am working on bayesian filter so i have to prepare a hash table of some words so for this i am mot able to identify how to identify words which are noun,adjective,prepositions etc..
for this if anybody have idea please share with me .
i have one idea that i have to call dictionary API and this api provide function which returns type of given words so also
i am not able to find where i have to download dictionary API so first of all i have to download Dictionary API if anybody can give me link where i can download this API.
please reply me ASAP.
Bankey Khandelwal
Software Engineer
|
|
|
|
|
|
how can i get physic memory size and information of chassis
am
|
|
|
|
|
GlobalMemoryStatusEx(...)
Nibu thomas
Software Developer
|
|
|
|
|
Visible_Info wrote: Use GetSystemMetrics
How do you propose using GetSystemMetrics() to get the "physic memory size and information of chassis" as the OP has requested?
"Let us be thankful for the fools. But for them the rest of us could not succeed." - Mark Twain
"There is no death, only a change of worlds." - Native American Proverb
|
|
|
|
|
how can i get physic memory size and information of chassisusing visual c++
am
|
|
|
|
|
Hi all,
How can i make a folder or directory inaccessible to be edited or viewed of its internal structure?
Kindly Guide.
Regards,
Ankush Mehta
|
|
|
|