| Thread | Last Post | Replies |
|
| GetByte adding an extra byte? | 22 Aug 2007 16:23 GMT | 7 |
string USMesg; USMesg = "?Credits?Remaining?"; byte[] bArray = Encoding.UTF8.GetBytes(USMesg); After I execute the code, the first two bytes are:
|
| philisophical question about object class (what was first: egg or fowl?) | 22 Aug 2007 16:16 GMT | 5 |
somebody asked me a question: string is derived from object class, right? (i said yes) so how it could be object class declares method returning string? thanks for any explanation / link / whatever :)
|
| File reading problem from DVD writer | 22 Aug 2007 15:49 GMT | 2 |
I tried to write a utility for copy video file from DVD-RW Rom. When I tried to access file from DVD-RW ROM, it trows exception "Access to the path 'J:\VIDEO_TS\VIDEO_TS.BUP' is denied.". I tried below code for file copy utility.
|
| Random Number and String Generators | 22 Aug 2007 15:35 GMT | 7 |
Does anyone know of a site or have code for a function that will generate a random string or random number? I need one where I can tell it what type of value I need and where I can set the length of the desired output.
|
| Disable code generation on double-click of control | 22 Aug 2007 15:31 GMT | 1 |
(Originally posted to WindowsForms newsgroup with no response, is there a Visual Studio newsgroup?) There are times when I mistakenly double-click a control and then VS goes to the code window and either generates the code signature for the default
|
| Force a TextBox validation in code? | 22 Aug 2007 15:10 GMT | 1 |
I have an form that sends a message (an employee code) to another form. When that form receives the message it plops that value in a textbox and I want to run the code in the validation event of that control without calling the validation event handler directly. I was
|
| Collection Editor woes... | 22 Aug 2007 15:10 GMT | 1 |
I have a control that is subclassing a label control and I want to a a property that is a List of a custom class. The collection editor _seems_ to work fine. I can add new items to the list and it saves them. I can even run the application and everything works...then at
|
| user32.dll - messages | 22 Aug 2007 14:56 GMT | 4 |
i use visual studio 2005 with c# i try to to locate windows and controls in the window. when i use the function GetClassName (located in user32.dll) i get the Class.
|
| Question about PInvokeStackImbalance? Thanks | 22 Aug 2007 13:56 GMT | 2 |
I wrote a class for playing wav file, the code: class SoundPlayer { // flag values for SoundFlags argument on PlaySound
|
| Image to raw results with weird error | 22 Aug 2007 13:12 GMT | 1 |
I am trying to do a simple task: convert bitmap to raw and back to bitmap as fast as possible. Here are the 2 methods I am using: private byte[] ToRaw(Bitmap bmp)
|
| what is a 'provider' in .net? | 22 Aug 2007 12:59 GMT | 6 |
Can anybody tell me exactly what a provider is? And give an example?
|
| Design/Pattern guidance to refector my current design for unit testing | 22 Aug 2007 12:58 GMT | 1 |
I would like to start unit testing my projects, I'm the sole developer in a startup with stacks of projects that needed to be done yesterday (nice sob story, I know) - point is I keep breaking things! Moving too fast to get a new feature out and I'm breaking stuff left and right ...
|
| Video for windows capture in the background? | 22 Aug 2007 12:42 GMT | 2 |
Hi guys, what i'm trying to do is do frame processing with the possibility of the app to not be in focus.What happens if the capture window gets hidden is that no more frames are sent to the callback...I've tried fyield to no avail.I'd greatly appreciate it if
|
| Non-visual component | 22 Aug 2007 12:40 GMT | 1 |
Has anybody got a link for a tutorial on how you develop a component that doesn't have a visual appearance, i.e. a component that - when dropped on a form - creates an icon in the frame at the bottom of the form designer (like e.g. Timer, NotifyIcon etc).???
|
| string.IndexOf help | 22 Aug 2007 12:30 GMT | 4 |
In my project I want to search thru a text in a text box or RichTextBox. When I search I want to list all lines that contain the string I am searching for. e.g.
|