| Thread | Last Post | Replies |
|
| State machine in C# | 11 Nov 2006 02:55 GMT | 4 |
I have a C++ application which I am porting to C#. This application is controlling a transport belt. This transport belt is moving bins foreward and backward. I have a state machine controlling this transport belt. In c++ there is an integer named state which holds the state of ...
|
| Formatting text in a RichTextBox in WindowsForm | 10 Nov 2006 22:29 GMT | 3 |
The documentation for the RichTextBox is sketchy at best. I want to do a very simple task but I cannot find information on this. I am using a RichTextBox as an output window. Some text I want to just add plain (e.g. rtf.Text += "new stuff..."; ) but some text, when added, I ...
|
| Create an object by class Type reference? | 10 Nov 2006 22:12 GMT | 13 |
I have a bunch of object derived from the same base class. They all share the same constructor with some parameters. Now, instead of using a large switch() statement where I call every single Object by itself, I'd like to assign a reference to the class type and call it later ...
|
| Difference between Select and Focus? | 10 Nov 2006 22:09 GMT | 4 |
Whats the difference? Thanks, Jon
|
| Writing a DrawToBitmap function for the RichTextBox control | 10 Nov 2006 21:44 GMT | 4 |
I am currently working on a project that requires that the contents of a RichTextBox control be drawn to a bitmap. I have attempted nearly everything including using calls into the Win32 API BitBlt function. Is t here a way to perform this feat without sifting through the contents
|
| Type alias in C# | 10 Nov 2006 20:22 GMT | 59 |
Maybe I'm stupid or maybe I am missing the obvious, but I can't find a way to define a type alias in C# for primitive types (class and interfaces I can inherit from, no problem). I.e I want to declare a type that is an alias for, say, int. Conceptually, this is what I want to do:
|
| DrawImage question | 10 Nov 2006 20:14 GMT | 6 |
Using DrawImage I draw (in OnPaint) a bitmap on a form protected override void OnPaint(PaintEventArgs e) { if (_album.Count > 0)
|
| disable popup blocker internet explorer at runtime | 10 Nov 2006 20:05 GMT | 1 |
I'm writing an application which handles Internet Explorer Automation. Through the application I'm able to automate logon on a certain webpage. When I automate the click on the logon button, a new window should open but it's being block by
|
| Threading and database connections | 10 Nov 2006 19:35 GMT | 5 |
I have an application that kicks off a long process on the database server with a separate thread and then forwards the user to another page which monitors the progress of this process by reading a table that is being updated by the long process. On my development machine
|
| How to spy into heap | 10 Nov 2006 19:24 GMT | 1 |
I like to inspect what is inside the heap and how different objects are stored within heap. Is there any tool that helps me to spy within heap? Thanks, Max
|
| what's the equivalent | 10 Nov 2006 19:16 GMT | 12 |
hey all, vb has a static keyword for variables, what is charp's equivalent,please? static tempVar as String thanks,
|
| How can I decrease size of mem usage. | 10 Nov 2006 18:59 GMT | 3 |
I've written a somewhat large program over the years (70.000 lines of code). When compiling the program I get a 2MB exe file. When running this program I get an corresponding image in the task manager showing a 40 MB memory allocation . Yes, the program allocates memory ...
|
| Screen capturing to video with DirectShow | 10 Nov 2006 18:56 GMT | 1 |
Is it possible to write an application that captures screen happenings to a movie file of some format using MS DirectShow? If it is, where do I start?
|
| webbrowser control in compact framework | 10 Nov 2006 18:54 GMT | 1 |
I am trying to use the webbrowser control in the compact framework. I am setting a URL to the webbrowser control and am able to see the page in my handheld device. I have two issues 1. I have a handheld device that scans items and does certain functions
|
| Sound Programming! | 10 Nov 2006 18:05 GMT | 1 |
Hi All, If someone can guide me how to write code for capturing sound input from the PC Soundcard & storing it as mp3 I will sincerely appreciate it.. Basically I have external devices which are plugged into the Soundcard Line In port, I need to capture the iput from those devices.
|