Description:
Microsoft .NET technology newsgroup.
|
|
|
CLI command line interface compiler for C++
|
| |
Hi, I am pleased to announce the first public release of CLI. CLI is an open-source (MIT license), cross-platform command line interface compiler for C++. It allows you to specify the options that your program supports, their types, and default values. For example: include <string>; class options {... more »
|
|
Please help, how do I fix error C4346 with the code here...
|
| |
Hi all, Below is the sample c++ code that cause error C4346 in vs-2009 pro. I have a "Record" struct within the Database class, and has a "Retrive(int n)" member function that return "Record*" type. If I have my implementation code defined within the class then everything works fine. However if I put it... more »
|
|
Extracting text from HTML pages
|
| |
Hello Everyone, I am trying to extract the data from HTML pages from TABLE tag. I am able to traverse the table tag, but i am not able to extract the data from the table can anyone please help with this. void CTestDlg::OnBgo() { UpdateData(); CWaitCursor wait; if(m_csFilename.IsEmpty()){ AfxMessageBox(_T("Please specify the file to parse"));... more »
|
|
Problem with recv() using c++
|
| |
Hi All, Ive been writting a program that connects to servers then sends a http request using send and that recieves html code back. It works most of the time however sometimes the recv command waits a too long when there is nothing left to recieve. some of my code is do{ recvint = recv(sock, recvbuf, 1000, 0);... more »
|
|
Where is DEFAULTLIB defined
|
| |
Hi, guys, When I use VC 2008 to build programs, compiler reports libirc.lib not found during the link phase. And I found libirc.lib is one of DEFAULTLIB. So where is DEFAULTLIB defined? I didn't manually define it in my project. Thanks.
|
|
gcroot<> objects and finalization
|
| |
Hello All, I have the following scenario: Class Managed (C++/CLI) holds a pointer to class Unmanaged (native C++). Class Unmanaged in turn holds a gcroot< > pointer (to a TcpClient). On process exit, the finalizer of "Managed" deletes the Unmanaged object. The destructor of Unmanaged tries to use the gcroot<> object (to perform a... more »
|
|
upside down picture
|
| |
Everytime i start a movie file in my windows media player,i get a upside down picture,can someone please help me?
|
|
Error 1001 during starter kit installation
|
| |
Hello. I have downloaded "Windows Workflow Foundation Web Workflow Approvals Starter Kit" = "WebWorkflowApprovalsStarterKi t_01Nov2007b.msi" and launched it. I get an error : "Error 1001. This installer must be installed as an administrator". Here is the log (install-log.txt): 09/10/2009 17:31:50 : ====== ManageVisualStudioTemplate.Ins tall... more »
|
|
Can I show a Dialog in console program ?
|
| |
Hi I would like to show a GUI CDialog in Win32 console program , is it possible ? I do not want to launch another Windows GUI program . How can I implement it or where to find the sample code ? Thank you .
|
|
question about intermediate file
|
| |
I am using Visual C++ 2008 Express Edition, and the host computer runs Windows Vista 32 bit. If I build a project, is there any intermediate files generated (.assembly, .class, .module etc.)? Or just the obj files? I have also heard that The compiler may create other intermediate files as well, but they will be deleted automatically once the compile is... more »
|
|
|