| Thread | Last Post | Replies |
|
| Set Focus in axWebBrowser (newbie) | 23 Nov 2006 09:15 GMT | 2 |
I am quite new using csharp. I have a axWebBrowser control in my windows application. The axWebBrowser will contain a textbox. Is there any way to set focus to this text box from my windows application ?
|
| Cross-thread operation not valid ??? | 23 Nov 2006 08:45 GMT | 3 |
I receive this message: "System.InvalidOperationException: Cross-thread operation not valid: Control [your_control_name_here] accessed from a thread other than the thread it was created on"
|
| question about string | 23 Nov 2006 08:43 GMT | 4 |
I am just wondering what is the different by putting an extra "@" sign in front of string delcaration ? Specifically : string test = "hahaha"; string test1 = @"huhuuh";
|
| Jpeg Image and Picture Box | 23 Nov 2006 07:06 GMT | 1 |
How can I display a jpeg image on a Picture box or Panel and be able to set scrollbars to it. Thanks -zs
|
| Identifying Control with Focus and AppendText | 23 Nov 2006 06:45 GMT | 3 |
I'm trying to AppendText to a TextEdit. I have a procedure that will go through the controls on a Windows form and return the control that has "focus". I have a number of TextEdits on my form and don't know which control
|
| A threading problem | 23 Nov 2006 03:23 GMT | 2 |
This concerns controlling access to methods in different classes. The meat of it is as follows: public class CommsControl {
|
| NetworkStream Read/Write operations - # bytes read/written. | 23 Nov 2006 02:44 GMT | 1 |
Is there a way to find out how many bytes NetworkStream Read/Write actually read/wrote when there is an exception (i.e. socket read/write timeout). Or, can I assume that if there is an exception that no bytes are read/written. Thanks,
|
| Stream stats | 23 Nov 2006 00:44 GMT | 11 |
I've heard it's possible to extract information from a game as it's running. For example some people extract the RPM of a car and have a real tacho connected to their PC, or just log certain information to a file. How is this done? I've tried google but can't find anything ...
|
| PreTranslateMessage | 22 Nov 2006 22:20 GMT | 2 |
In MVC++ it is possible to override PreTranslateMessage. Is this not possible in a form under C# ? - H
|
| quoted string in .Net (@="\u...") convert to unicode | 22 Nov 2006 21:55 GMT | 4 |
I have this situation: string h = "#u00d8"; h = h.Replace("#","\\"); // => h = @"\u00d8" WriteLine(h); //=> "\u00d8"
|
| Get error messages back from a Remote machine | 22 Nov 2006 21:32 GMT | 1 |
I've a c# app that I execute on a remote machine, which works as I expect it to, but when I encounter an error on the remote machine how do I know what's going on, since it's a remote app? For instance on the remote app that I execute I check for the existence of a
|
| Array of Class Question | 22 Nov 2006 21:29 GMT | 2 |
I'm looking at this code at MSDN: http://msdn2.microsoft.com/en-us/library/system.collections.ienumerable.aspx using System; using System.Collections;
|
| String builder | 22 Nov 2006 20:53 GMT | 8 |
I have Function with string parameteres: public string newLine(String string1,String string2,String string3){ StringBuilder webLine = new StringBuilder(); webLine.Append("<tD nowrap>" + string1 + "</td><td nowrap>" +
|
| Get Calling Class type in base clases static method. | 22 Nov 2006 20:49 GMT | 1 |
How do you think i can get this to work.. Der1.GetCallingClassType() should return Der1 public class Base {
|
| Graphics Help | 22 Nov 2006 20:30 GMT | 2 |
Hello, the objective was to print a filled circle to the picturebox, and print the color name to a textbox each 2 seconds. Following is the code I used, however, I could never see anything except the last item in the arraylist being printed, tried different ways to iterate ...
|