My account: Login | Sign Up
Loading... 

Managed C++/CLI | Forum profile

Forum profile page for Managed C++/CLI on http://www.codeproject.com. This report page is the aggregated overview from a single forum: Managed C++/CLI, located on the Message Board at http://www.codeproject.com. This forum profile page summarizes the general forum statistics such as: Users Activity, Forum Activity, and Top Authors, which are reported in either a table or graph below for a given reporting time period. Additional forum profile information for "Managed C++/CLI" on the Message Board at http://www.codeproject.com is also shown in the following ways:

1) Latest Active Threads
2) Hot Threads for Last Week

Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a forum's popularity and/or exact posting volumes at any given reporting period.

Site: CodeProject: Discussion Boards. Free source code and programming help - Managed C++/CLI (site profile, domain info codeproject.com)
Title: Managed C++/CLI
Url: http://www.codeproject.com/script/Forums/View.a...
Users activity: 23 posts per thread
Forum activity: 13 active threads during last week
 

Posting activity on Managed C++/CLI:

  Week Month 3 Months
Threads: 13 39 128
Post: 18 70 297
 

Managed C++/CLI Posting activity graph:

Posts by:  day  week  month 

Top authors during last week:

Name Posts
led mike 3
Indivara 3
Vij@y 2
Mark Salsbery 2
cra034 1
vikramaditya234 1
DarthKarnage 1
Olaman 1
manzoor10 1
73Zeppelin 1
 

Latest active threads on Managed C++/CLI::

CodeProject: Discussion Boards. Free source code and programming help
Started 2 days, 8 hours ago (2008-11-19 03:19:00)  by vikramaditya234
Hi I am trying to port the code to UNIX in C language. My program: asm("push ebx"); asm("mov %ebx, 0"); asm("mov %eax, 1"); asm("__emit 0fh"); asm("__emit 03fh"); asm("__emit 07h"); asm("__emit 0bh"); asm("pop ebx"); So far unsuccessful It seems we cannot use __asm instead we have to use asm() function for each command. But after using that i am facing problem in the compilation of the...
Thread:  Show this thread (3 posts)   Thread info: porting in RHEL (UNIX) Size: 1,410 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "porting in RHEL (UNIX) :: Managed C++/CLI :: CodeProject: Discussion Boards. Free source code a..."
CodeProject: Discussion Boards. Free source code and programming help
Started 3 weeks ago (2008-10-30 23:00:00)  by winson you
Hi All, I encoutered an issue in my program that uses .net serial port component. The scenario is as below: 1. I have developed my program and it works fine in "debug mode". 2. When I compile and run it in "Release mode", something wrong happened to the program. Some of my program logic is no longer working as in "debug mode". 3. After performing some debug, I found out that the problem is I ...
Thread:  Show this thread (3 posts)   Thread info: Help! Program not working in 'Release mode' but works in 'Debug mode' Size: 3,240 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Help! Program not working in 'Release mode' but works in 'Debug mode' :: Managed C++/CLI :: CodeProject: Discussion Boards. Free source code a..."
CodeProject: Discussion Boards. Free source code and programming help
Started 1 week ago (2008-11-13 21:01:00)  by Indivara
What is the equivalent of a window in .NET? Is it a form? I don't mean the visible UI window, but the window handle used as a message pump. Consider the following situation - Application A loads DLL B (on its one and only thread). DLL B spawns a new thread to receive data, but has to send that data to application A on the same thread as it was loaded. The usual practice (at least I think so), ...
Thread:  Show this thread (4 posts)   Thread info: PostMessage fails in Windows Service Size: 1,738 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "PostMessage fails in Windows Service :: Managed C++/CLI :: CodeProject: Discussion Boards. Free source code a..."
CodeProject: Discussion Boards. Free source code and programming help
Started 4 days, 5 hours ago (2008-11-17 06:51:00)  by DarthKarnage
I'm working on a program that basically sits and acts as a system monitor. Two of the primary things that I want it to do are monitor system memory and display when the last time a virus scan was made. Any suggestions on how I might go about this? Thanks in advance
Thread:  Show this thread (2 posts)   Thread info: Checking Latest Virus Scan? Size: 310 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Checking Latest Virus Scan? :: Managed C++/CLI :: CodeProject: Discussion Boards. Free source code a..."
CodeProject: Discussion Boards. Free source code and programming help
Started 3 days, 8 hours ago (2008-11-18 03:14:00)  by cra034
Hello all,(Sory about my English) Please help.... VC++ 2005. I have a func that call to Socket,Bind, Listen & Receive. I call this func from timer that see if the Client send data. I get the data in the first call but in the second call I got errors. I understand that I need to operate the Socket,Bind, Listen only once. I got err when put this line in a global scope or as a member data in class...
Thread:  Show this thread (2 posts)   Thread info: Save Socket^ variable in the global scope Size: 1,692 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Save Socket^ variable in the global scope :: Managed C++/CLI :: CodeProject: Discussion Boards. Free source code a..."
CodeProject: Discussion Boards. Free source code and programming help
Started 4 days, 7 hours ago (2008-11-17 04:49:00)  by Vij@y
Thread:  Show this thread (2 posts)   Thread info: [Message Deleted] Size: 30 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "[Message Deleted] :: Managed C++/CLI :: CodeProject: Discussion Boards. Free source code a..."
CodeProject: Discussion Boards. Free source code and programming help
Started 4 days, 9 hours ago (2008-11-17 02:31:00)  by manzoor10
Hi I cannot compile the following code The error is 1>.\STL_CLR.cpp(3) : fatal error C1083: Cannot open include file: 'cliext/vector': No such file or directory Here is my code Person.h #pragma once using namespace System; ref class Person { public: Person() : firstName(" "), secondName(" ") {} Person(String ^first, String^ second) : firstName(first), secondName(second) { } // ...
Thread:  Show this thread (1 post)   Thread info: STL/CLR Size: 1,798 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "STL/CLR :: Managed C++/CLI :: CodeProject: Discussion Boards. Free source code a..."
CodeProject: Discussion Boards. Free source code and programming help
Started 5 days, 11 hours ago (2008-11-16 00:39:00)  by Olaman
I've been tryin to debug this switch statement but i get error after error. The code is suppose to allow the user to enter a value between 1 and 3. and then some please help with this code: #include using namespace std; int main() { int num; cout << " Enter an integer number: 0-3" << ; cin >> num; switch (num); { case 1: if (num==0) cout << ; "You Entered: " <<num << ;...
Thread:  Show this thread (2 posts)   Thread info: Syntax Error Help: Switch Statement Code Size: 926 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Syntax Error Help: Switch Statement Code :: Managed C++/CLI :: CodeProject: Discussion Boards. Free source code a..."
CodeProject: Discussion Boards. Free source code and programming help
Started 1 week, 1 day ago (2008-11-12 19:55:00)  by Member 2941834
I have database with many records I want to display each record by click its button, on the same textbox so how could I bind one textbox with many records and each record has own button.
Thread:  Show this thread (2 posts)   Thread info: binding Many records to one textbox Size: 292 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "binding Many records to one textbox :: Managed C++/CLI :: CodeProject: Discussion Boards. Free source code a..."
CodeProject: Discussion Boards. Free source code and programming help
Started 3 weeks ago (2008-10-31 09:43:00)  by jreisslein
Hi everybody. I am currently working on a tool which is using satellite assemblies (.resx) string tables to support localisation. Additionally, i would like to change the Culture manually by choice. While changing the current language inside the program is working fine when started in Visual Studio (2008),however, it doesn't work in the release (tested on a vmware machine). Well here is an ...
Thread:  Show this thread (5 posts)   Thread info: Q: Changing Language with Thread::CurrenThread::CurrentUICulture Size: 1,619 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Q: Changing Language with Thread::CurrenThread::CurrentUICulture :: Managed C++/CLI :: CodeProject: Discussion Boards. Free source code a..."
 

Hot threads for last week on Managed C++/CLI::

Managed C++/CLI
Started 1 week ago (2008-11-13 21:01:00)  by Indivara
What is the equivalent of a window in .NET? Is it a form? I don't mean the visible UI window, but the window handle used as a message pump. Consider the following situation - Application A loads DLL B (on its one and only thread). DLL B spawns a new thread to receive data, but has to send that data to application A on the same thread as it was loaded. The usual practice (at least I think so), ...
Thread:  Show this thread (4 posts)   Thread info: PostMessage fails in Windows Service Size: 1,738 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "PostMessage fails in Windows Service :: Managed C++/CLI :: CodeProject: Discussion Boards. Free source code a..."
Managed C++/CLI
[Message Deleted] - 3 new posts
Started 4 days, 7 hours ago (2008-11-17 04:49:00)  by Vij@y
Thread:  Show this thread (2 posts)   Thread info: [Message Deleted] Size: 30 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "[Message Deleted] :: Managed C++/CLI :: CodeProject: Discussion Boards. Free source code a..."
Managed C++/CLI
Started 2 days, 8 hours ago (2008-11-19 03:19:00)  by vikramaditya234
Hi I am trying to port the code to UNIX in C language. My program: asm("push ebx"); asm("mov %ebx, 0"); asm("mov %eax, 1"); asm("__emit 0fh"); asm("__emit 03fh"); asm("__emit 07h"); asm("__emit 0bh"); asm("pop ebx"); So far unsuccessful It seems we cannot use __asm instead we have to use asm() function for each command. But after using that i am facing problem in the compilation of the...
Thread:  Show this thread (3 posts)   Thread info: porting in RHEL (UNIX) Size: 1,410 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "porting in RHEL (UNIX) :: Managed C++/CLI :: CodeProject: Discussion Boards. Free source code a..."
Managed C++/CLI
Started 1 week, 1 day ago (2008-11-12 19:55:00)  by Member 2941834
I have database with many records I want to display each record by click its button, on the same textbox so how could I bind one textbox with many records and each record has own button.
Thread:  Show this thread (2 posts)   Thread info: binding Many records to one textbox Size: 292 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "binding Many records to one textbox :: Managed C++/CLI :: CodeProject: Discussion Boards. Free source code a..."
Managed C++/CLI
Started 5 days, 11 hours ago (2008-11-16 00:39:00)  by Olaman
I've been tryin to debug this switch statement but i get error after error. The code is suppose to allow the user to enter a value between 1 and 3. and then some please help with this code: #include using namespace std; int main() { int num; cout << " Enter an integer number: 0-3" << ; cin >> num; switch (num); { case 1: if (num==0) cout << ; "You Entered: " <<num << ;...
Thread:  Show this thread (2 posts)   Thread info: Syntax Error Help: Switch Statement Code Size: 926 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Syntax Error Help: Switch Statement Code :: Managed C++/CLI :: CodeProject: Discussion Boards. Free source code a..."
Managed C++/CLI
Started 4 days, 5 hours ago (2008-11-17 06:51:00)  by DarthKarnage
I'm working on a program that basically sits and acts as a system monitor. Two of the primary things that I want it to do are monitor system memory and display when the last time a virus scan was made. Any suggestions on how I might go about this? Thanks in advance
Thread:  Show this thread (2 posts)   Thread info: Checking Latest Virus Scan? Size: 310 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Checking Latest Virus Scan? :: Managed C++/CLI :: CodeProject: Discussion Boards. Free source code a..."
Managed C++/CLI
Started 3 days, 8 hours ago (2008-11-18 03:14:00)  by cra034
Hello all,(Sory about my English) Please help.... VC++ 2005. I have a func that call to Socket,Bind, Listen & Receive. I call this func from timer that see if the Client send data. I get the data in the first call but in the second call I got errors. I understand that I need to operate the Socket,Bind, Listen only once. I got err when put this line in a global scope or as a member data in class...
Thread:  Show this thread (2 posts)   Thread info: Save Socket^ variable in the global scope Size: 1,692 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Save Socket^ variable in the global scope :: Managed C++/CLI :: CodeProject: Discussion Boards. Free source code a..."
Managed C++/CLI
Started 3 weeks ago (2008-10-31 09:43:00)  by jreisslein
Hi everybody. I am currently working on a tool which is using satellite assemblies (.resx) string tables to support localisation. Additionally, i would like to change the Culture manually by choice. While changing the current language inside the program is working fine when started in Visual Studio (2008),however, it doesn't work in the release (tested on a vmware machine). Well here is an ...
Thread:  Show this thread (5 posts)   Thread info: Q: Changing Language with Thread::CurrenThread::CurrentUICulture Size: 1,619 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Q: Changing Language with Thread::CurrenThread::CurrentUICulture :: Managed C++/CLI :: CodeProject: Discussion Boards. Free source code a..."
Managed C++/CLI
STL/CLR - 1 new post
Started 4 days, 9 hours ago (2008-11-17 02:31:00)  by manzoor10
Hi I cannot compile the following code The error is 1>.\STL_CLR.cpp(3) : fatal error C1083: Cannot open include file: 'cliext/vector': No such file or directory Here is my code Person.h #pragma once using namespace System; ref class Person { public: Person() : firstName(" "), secondName(" ") {} Person(String ^first, String^ second) : firstName(first), secondName(second) { } // ...
Thread:  Show this thread (1 post)   Thread info: STL/CLR Size: 1,798 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "STL/CLR :: Managed C++/CLI :: CodeProject: Discussion Boards. Free source code a..."
Managed C++/CLI
Started 3 weeks ago (2008-10-30 23:00:00)  by winson you
Hi All, I encoutered an issue in my program that uses .net serial port component. The scenario is as below: 1. I have developed my program and it works fine in "debug mode". 2. When I compile and run it in "Release mode", something wrong happened to the program. Some of my program logic is no longer working as in "debug mode". 3. After performing some debug, I found out that the problem is I ...