|
I want to prevent that dialog hiding Sir ji.
|
|
|
|
|
ok ji,
did you try to debug ji?
--------------------------------------------
Suggestion to the members:
Please prefix your main thread subject with [SOLVED] if it is solved.
thanks.
chandu.
|
|
|
|
|
On my Mouse Move ,I m not doing anything related to that hiding of dialog .
|
|
|
|
|
but it seems that, you are doing some thing there.
first try to comment the whole code in on mouse move and see what happens?
and, do you observe the dialog hidden or killed?
if it is hidden, then is it again coming back in any other event?
--------------------------------------------
Suggestion to the members:
Please prefix your main thread subject with [SOLVED] if it is solved.
thanks.
chandu.
|
|
|
|
|
On click of a button,it is appearing but when i move there on dialog,it hidden then again if i click button then dialog comes again.
|
|
|
|
|
Is it a child dialog? Is it covered by other window or control?
|
|
|
|
|
|
I think you should verify if this child dialog is covered by other windows or controls
|
|
|
|
|
Yes sir ji,This child window is haniv some controls like buttons,checkboxes,spinners and it is getting hidden whenever my mouse comes on that controls (checkboxes,buttons).
|
|
|
|
|
I got the solution.
Thanks for ur help.
|
|
|
|
|
yogeshs wrote: I got the solution.
good,
but can you post your solution here, such that, others who have this same problem need not suffer again.
all the best.
--------------------------------------------
Suggestion to the members:
Please prefix your main thread subject with [SOLVED] if it is solved.
thanks.
chandu.
|
|
|
|
|
Hi all,
I have created a program which can scan windows update, download updates, install updates.
But its scan results defer from that of MBSA, it always gets more results. After I checked it, I found that it involves "SupersededUpdateIDs". MBSA often removes update items that are superseded by others. However, this is not always true. After I improved the program according it, I indeed reduced the difference between MBSA and my program, but still some difference. Can anyone tell me how MBSA dealed with the scan results? I mean, what MBSA has done with the scan results according to "SupersededUpdateIDs" or anything else?
Also, When I use "download" and "install" function in my program, sometimes there are errors, like "0x80240024"(when download), "4"(when install) HRESULT value returned. I want to known if it concerns with my os setting or something else. So can anyone tell something about this?
all above.
thanks a lot
|
|
|
|
|
In my code i have too much comparison of strings, is it not a better idea to associate an enum for each string and compare them ?
Will this be faster or will it be same as string comparison ?
Thanks in advance.
|
|
|
|
|
I don't think it's a good idea to associate an enum with every string.
If you use "string" or "CString" class type and two string objects will not have same contents(like string1 == "abc" and string2 == "abc"), you can only compare two string's addresses, like "&string1 == &string2" or "string1 != &string2".
|
|
|
|
|
Comparing an enum will be much faster.
Steve
|
|
|
|
|
Hello
I need to build a C++ MFC application which would consume a C# webservice, could anybody provide some references for the same. I have found an article in CP which says we need SOAP toolkit for the same, is that the only option or do we have any other alternative.
Thanx
|
|
|
|
|
If the C# webservice is SOAP, then it's easiest to use a SOAP toolkit (for example, gSOAP[^]).
Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p
|
|
|
|
|
Hi all,
when i Rebuild Solution after Clean solution than it takes so much time ,please tell me can i reduce this time.
please tell me some suggestion and solution for this.
thanks in advance.
To accomplish great things, we must not only act, but also dream;
not only plan, but also believe.
|
|
|
|
|
Parsing C++ code is tough and can be slow in huge projects. Here are couple of SO posts which explains some tricks.
1 - Click[^]
2 - Click[^]
|
|
|
|
|
I think you can:
a. Use precompiled header file, put all include files that are used frequently but changed infrequently in it.
b. If possible, include header files in .cpp file, not .h file. For example, if you only use class pointer or reference in .h file, then you can declare this class in .h file, and #include its header file in cpp.
c. If possible, try to reduce dependence between files/classes.
More suggestions could be found on the internet
|
|
|
|
|
I am using CreateDirectory() method to create directory in some specified location.
It fails in vista os. I need to know what could be the problem.
Note: The user has adminstrative rights.
|
|
|
|
|
Have you tried using GetLastError[^] to get a more detailed error code?
Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p
|
|
|
|
|
Where are you trying to create the directory, if UAC is enabled and if you try to create in C: or on locations on the flash drive CreateDirectory could fail, in such a case your application has to run with admin rights
|
|
|
|
|
Hint: You're better off replying to the guy that actually asked the question rather than me - I was trying to help him, same as you.
vipin_nvk wrote: in such a case your application has to run with admin rights
He did already say "Note: The user has adminstrative rights"
Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p
|
|
|
|
|
Hi all,
I'm switching from GDI to GDI+. With GDI, I was able to make the background color transparent using this tutorial.
http://winprog.org/tutorial/transparency.html[^]
I'm looking for a way to accomplish the same thing. I basically wanna turn the color black transparent in my bitmaps. Surely, there has to be a way to do that...
|
|
|
|