I'm implementing two diferrent code parts. I'ts a chessplay. I have the functionality in C++. Now a want to add a GUI to the game. So a want to use functions in C++ from C#
hg2705
Posts
-
How to use simple c++ console app in C# -
How to use simple c++ console app in C#Can some one point me in the right direction on how to implement a smal C++ console app in Csharp.
-
C# to UMLCan any one point me to an application to generate UML from C# code and the other way.
-
Printer driverIs there any one that can point me in the right direction on how to create a generic printer driver, or is there a walktrough on who to create a printer driver. I would like a generic printer driver that a can handle the flow of chars and do wath ever a mant with them.
-
range in calendarIs there a way to visualize an ranga in a calendar. Im readign start and stop date from a database. Now a want to set an range visible in a calendar object. So that the user can see it.
-
How hard is it !!!How hard is it to read a single cell in a datagrid?? I cant find it... I want to read a call in a column named "name" on row x. How is the code for this.
-
What to use?Im creating a client server app. One server and multiple clients. Every client is sending serialized messages to the server. Every message has to arrive (No UDP). What to use. Chould I use TCPclient and send one message and close connection to server or should I use something like TcpChannel (Not sure what it is, or if it can send serialized objects). The time between messages vary from miliseconds to hours.
-
Thrad problemThing is that i create a smal app that starts 10 threads, start them and suspend them at once. The processor is bosted to 100%. The maschine im using is an campaq notebook 600mz. 10 threds thar are suspended should not bee so har do handle...
public app() { mRun = true; mThreads = new ArrayList(); for(int i = 0; i<10; i++) { Thread t = new Thread(new ThreadStart(this.go)); t.Name = i.ToString(); t.Start(); t.Suspend(); mThreads.Add(t); } } private void go() { while(mRun) { listBox1.Items.Add("run"); Thread.Sleep(10000); } }
-- modified at 2:14 Friday 28th October, 2005 -
Thrad problemHow many thread is alowed in app? I have found out that 25 is ok. I am using 6 and the system is using up 100% of processor. All the threads are suspended. I have debugged the app and there is no threads runnng. But when the last thread is suspended, the processor go up to 100%. I thougt that the last thread didn't sysspend, but i did. Iven if I remove the suspend command for the thread and just let it run one empty function. The processor is boosted to 100%
-
web auto reloadDoes anyone know if there is a smal project here to show how a webpage with a data grid autoreload. A want to give the user the funktion to stop and start the autoreload and how often the reload should happend. If there is'n. can som one show me how to do this. Happy coding!
-
Problem with projects in projectThat solved my problem :cool:
-
Problem with projects in projectCurrently im have 9 projekt in one projekt. 7 of them is generating dll'sa dn 2 is generating exe-files. If a change a dll-projekt, like adding a new function. I compile the whole thing, and i don't get access to the new funktin in the dll. I have to remove the reference to the dll in the exe file projekt and add it again to get it to work. Is there a work around so that i dont have to do this all the time. Happy coding from Sweden
-
C# Embedded resourseIs it possible to write to an embedded XML file. If so. How to do this?