Description:
Microsoft .NET technology newsgroup.
|
|
|
Install x64 & x86 managed assemblies in GAC
|
| |
I asked this question on CodeProject back in August 2009 but didn't get any answer so I thought I'd try here. Here is a copy of my original question. All, I have a C++/CLI assembly that is compiled for x64 and x86. These files get installed in C:\Program Files and Program Files (x86) respectively... more »
|
|
"using" declaration and template (generic) classes
|
| |
Hello All, I want to refer to the Nullable< T > template type in C++/CLI (a header file) without requiring explicit qualification of the System:: namespace. So I effectively want to do this (which won't actually compile): using System::Nullable< T >; // or something to this affect class MyClass { property Nullable< int > MyProperty... more »
|
|
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 »
|
|
|