| Thread | Last Post | Replies |
|
| where can i learn how to create simple 2d games? | 18 Jun 2007 20:46 GMT | 3 |
hey guys, im not new to programming, but i am new to visual studios. i would like to learn how to create a simple 2d game in visual studios in C#. something like tetris would be nice. anyone know of some free website
|
| Creating a PDF | 18 Jun 2007 20:38 GMT | 3 |
I am trying to create a PDF file in C# .NET from a string. Here is my code... Encoding unicode = Encoding.Unicode; byte[] unicodeBytes = unicode.GetBytes(sBuffer);
|
| Passing jagged array byte[][] to unmanaged code | 18 Jun 2007 20:25 GMT | 17 |
Hi Gurus, I need to transfer a jagged array of byte[][] by reference to unmanaged function, The unmanaged code should changed the values of the array, and when the unmanaged function returns I need to show the array data to the end user.
|
| How to get the pointer of a COM control interface ? | 18 Jun 2007 19:41 GMT | 1 |
Hello Gurus; I have some strange, complicated and challenging question. This question may show a poor design, and I agree it very poor. But I have some constrainment that must be handled as I'll show in here (you know...
|
| DataGrid updates in Windows Forms - Am I going crazy? | 18 Jun 2007 19:16 GMT | 1 |
I am trying to just load a datagrid and save the changes. I have googled and sweated over this, and thanks to Microsoft I have much pain. Can anyone help? I am populating the DataGrid with NP, using
|
| How do I get the connection string | 18 Jun 2007 18:51 GMT | 2 |
I have a simple app with a datasource, and I want to make a call to a stored procedure. So, what I was trying to do was get the connection string from Settings.settings, then basically do this:
|
| need help! | 18 Jun 2007 18:14 GMT | 1 |
Hi list, i need a free text to speech tool and also library written in c#.i found ms agent but it is not for Turkish.Do you know any ltext to speech library which suuport TURKISH accent?
|
| system out of memory | 18 Jun 2007 17:33 GMT | 6 |
I am running an algorithm that requires O(n^2) space. The comp has 8 GB of RAM, but I'm seeing the program cap out at around 1.7 GB, and then I get an out-of-memory error. (The algorithm essentially constructs a complete graph, where each node has an edge to every
|
| Problem with a treeview | 18 Jun 2007 17:07 GMT | 2 |
I'm using .NET1.1. I have a windows form with two controls 1.Treeview 2.Checkbox
|
| Loading EXE in the Application [Assembly]? | 18 Jun 2007 16:52 GMT | 5 |
I am trying to load an executable as assembly (this exe is not .net made, it is just an exe made using install shield). I am using the following code to load Assembly myAssembly = Assembly.LoadFrom(@"C:\setup.exe");
|
| CPU usage issues | 18 Jun 2007 16:21 GMT | 1 |
Ours is a windows based application. When we open the application the CPU usage is 0% and the Memory Usage is 54,324Kb When I open a specific form in a module, the CPU usage is 0% and the
|
| IAsyncResult.AsyncWaitHandle - when is it signaled? | 18 Jun 2007 16:01 GMT | 2 |
If I were to call an async beginxxx method that returns an IAsyncResult when exactly would the AsyncWaitHandle be signaled? Before or after the corresponding endxxx method completes? Immediately after?
|
| Function Composition in C# 3.0 | 18 Jun 2007 15:50 GMT | 1 |
I've been leaning pretty heavily on the new C# 3.0 features while simultaneously playing around with Haskell and other FP-oriented languages. One problem that comes up often is the lack of a function composition syntax.
|
| Version control | 18 Jun 2007 15:47 GMT | 39 |
Which version control solution can you guys recommend? Requirements are 01: Must work okay over the Internet. 02: VS2005 integration, so it gets + locks files as you edit them. I've been trying SourceAnyWhere but it now takes 39 seconds to open my
|
| Mouseover on button and change image... | 18 Jun 2007 15:25 GMT | 1 |
I have an Image to become a link (as soon as I figure out whether it should be a button or not) that, when mousedover, changes instantly to another image. I want the image itself to be the link. How can I do that please.
|