Thanx a Zillion ...I didn't even know it was so easy .. :) I have burned almost the day in this rubbish thing ..... :( :) Thanx Again ...
It's not enough to be the best, when you have capability to be great....
Thanx a Zillion ...I didn't even know it was so easy .. :) I have burned almost the day in this rubbish thing ..... :( :) Thanx Again ...
It's not enough to be the best, when you have capability to be great....
Hi all... I have a third party OCX , which i want to use in my application. Can someone help me out , how to do this. I have never done any such stuff , but i know VC++ a bit. Also tried to search on net but no useful help is there. It'll be really helpful if i can get any help from you guys.
It's not enough to be the best, when you have capability to be great....
No they don't even talk about it.I had already gone through the documentation and other options there is no such option. I think there is only one option that you can use, "/Out" parameter to save build log and later check if there were any errors in your build. I have used the same as there is no option remaining any more.
It's not enough to be the best, when you have capability to be great....
I m not going to sit and watch are there any error every time (since it's used for continuous integration ) i want something that should stop on it's own.
It's not enough to be the best, when you have capability to be great....
Hi All, I m building my solutions through command line (devenv.exe). But the problem is that if build for any project gets failed the script keep running and dosen't stop.How is it possible that i can stop the build file as soon as any error in any project or solution occurs. Thanx a lot in advance.
It's not enough to be the best, when you have capability to be great....
It is recognizing the command after i have dumped devenv.exe in system32 but it is giving error that it is not a valid solution file. While we do use same sln file for opening/building solution through .Net 2003 IDE. Thanx a Zillion.
It's not enough to be the best, when you have capability to be great....
I m also trying the same through command line but it is giving error that devenv is not recognized as internal or external command. Also i am using .net 2003 studio. Thanx.
It's not enough to be the best, when you have capability to be great....
sorry but i didn't get what you want to say ....?
It's not enough to be the best, when you have capability to be great....
Hi all ... I m having several solutions containing several VC++ projects depending on each other in .net 2003 IDE. I have to compile those solutions from command line (for continous intregation and automating the process )or any other way which could be automated and is free. How can i do that.?? I tried Using Nmake (for a simple solution for testing only )but the problem is that it is giving error "fatal error U1073: don't know how to make 'CI_POC.cpp'" Can someone help me out ...!!!!!!!!!!!!! Thanx a zillion in advance ..
It's not enough to be the best, when you have capability to be great....
Try changing /C to /K ...
It's not enough to be the best, when you have capability to be great....
Hi..I have an regular expression "^[a-zA-Z0-9_]([^@ ]*)@[a-zA-Z0-9]{2,}((\\.[a-zA-Z0-9]{2,}))*$" for Email Validation in java.I want same to do in VC++ , is there ant way to do it...? Plz help..!!!! thanks in Advance.
It's not enough to be the best, when you have capability to be great....
It seems that the access violation is due to Dangling pointers. These kind of error will not be repeatable 100% ,since will be depending on size of your RAM ( when your OS tries to get back the memory which is assigned to some one else).If you have Dev-Partner with your studio , you can find the code problems or try to make sure that there is delete() for every new().You can use run time checker for this task , It's evaluation version may help you in Finding leaks.
It's not enough to be the best, when you have capability to be great....
Try adding file directory of CStringParser in Additional Include directories option.
It's not enough to be the best, when you have capability to be great....
//Open the registrey and check that is it writable lRet=RegOpenKey(HKEY_LOCAL_MACHINE, strKeyPath,hKey); //if lRet != ERROR_SUCCESS then go to read registrey unsigned char* lpBufferValue = new unsigned char [dwSize]; unsigned long dwType = 0; unsigned long dwSize = 0; lpBufferValue = new unsigned char [dwSize]; ASSERT(lpBufferValue); lRet = RegQueryValueEx(hKey,strValueName, NULL,dwType, lpBufferValue,dwSize); // if dwSize is not 0 then it is success // close registrey (either success or failure ) RegCloseKey(hKey); I hope this will work.
It's not enough to be the best, when you have capability to be great....
Have you expected html data in response...?? Try setting content type as "text/html" instead of "text/xml" ,hope this will we helpful.
It's not enough to be the best, when you have capability to be great....
What you want to know...? If you want to confirm that is 200 means correct response,then yes ,as far as i m concerned (since i m using the same in my script) 200 means the same.
It's not enough to be the best, when you have capability to be great....
To create an XML file you can use LINQ. It's like your Database Query....You can learn it easily also it is very useful. Otherwise you have to take care of child elements and sub elements and so on...with a hell lot of conditions in LOOPS.
It's not enough to be the best, when you have capability to be great....
:laugh: :laugh: Yes..It's not something to be asked..
It's not enough to be the best, when you have capability to be great....
No ,this will not overwrite the Memory Space. if you have created object and collected the Reference it's just a reference (i.e. constant pointer).If you will assign it a new address it 'll not delete old object.(As it should not, Bcoz that object may be used ant where else).So if you are sure it is not usable now.Then call delete on it first .Then create new and assign value to it. But if you are not assigning new value , set it to null ('ll save from Dangling pointer). So you can say if( myObject != NULL) delete myObject; myObject = CreateObject(); //or myObject = NULL;
It's not enough to be the best, when you have capability to be great....
Can you specify you requirement .... I think Java script is for Client side processing. what if user has disabled JavaScript??? Your database should be consistent, You can call Action/Servlet form JavaScript.
It's not enough to be the best, when you have capability to be great... Jai Shri Ram.