|
what makefile u r talking about.will u explain in detail?PLease.
|
|
|
|
|
actually i need to build VC++ Project from command prompt...so i think that, we can do it by using "MakeFile".
|
|
|
|
|
There is a simpler way.
Just type "devenv <.sln filename>" or "devenv <.vcproj filename>"
You need to ensure that devenv is in the path.
For this you can take the Visual Studio 2005 Command Prompt .
You will find the link in All Programs -> Microsoft Visual Studio 2005 -> Visual Studio Tools .
«_Superman_»
I love work. It gives me something to do between weekends.
|
|
|
|
|
Thanks for your response. your reply is correct i am able to build but i want to know...is there any to make "MakeFile" from VS 2005 as VC6.0.
once i have generate Makefile from vc 6.0 but i am unable to generate "makefile" from VS 2005.
|
|
|
|
|
That's because Microsoft took that functionality out.
Why do you need a makefile? What's wrong with running Visual Studio @ the command-line to build your project as the previous answer said?
Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p
|
|
|
|
|
you can create a makefile yourself or use the mkmf tool.
A make file includes the paths, includes, blah blah....
You need to google first, if you have "It's urgent please" mentioned in your question.
_AnShUmAn_
|
|
|
|
|
Hello Friends
I converted one window based application from vs2002 to vs2008.Whenever I open a dialog and when i move my mouse on that dialog then dialog beocmes invisible only if mouse goes on some controls like(button,checkboxes).
Please suggest me some solution.
Thanks & regards
Yogesh
|
|
|
|
|
what is your exact problem?
do you want to hide the dialog or do you want to prevent that dialog hiding?
please explain your problem in detail.
--------------------------------------------
Suggestion to the members:
Please prefix your main thread subject with [SOLVED] if it is solved.
thanks.
chandu.
|
|
|
|
|
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
|
|
|
|