| Thread | Last Post | Replies |
|
| display something in textBox of my form | 11 Jun 2007 18:12 GMT | 1 |
In my form I have a textbox. I have a class where I have a method to add two number. Can I define in the method of my class to display the result in the textbox of my form?
|
| edit in place for data grid columds | 11 Jun 2007 17:38 GMT | 6 |
can anyone send me to some good examples of edit in place for data frid columns i see dot net let me assign a control in the IDE any good sources of reading on editing columns with controls and setting
|
| concurrency exception | 11 Jun 2007 14:54 GMT | 1 |
I try to run this: OdbcDataAdapter odbcDA = new OdbcDataAdapter("select * from job_1", odbcCon); DataTable dataTable = new DataTable();
|
| Can I draw overlapped PNG files with transparent background inimagebox control? | 11 Jun 2007 14:26 GMT | 2 |
I'm trying to draw many overlapped PNG files with transparent background in imagebox control. But the transparent background in this control is rendered as the main control's background color.
|
| InvalidOperationException appeared after introduction of WebBrowser control | 11 Jun 2007 13:56 GMT | 2 |
We are experiencing a tuff-to-debug problem ever since we introduced a WebBrowser control into our failry large application. I'm not sure if the problem description below contains enough details, so if I need to elaborate on something please ask for it.
|
| Shortes way to copy an complete array and to get the length ? | 11 Jun 2007 13:11 GMT | 1 |
I have 2 arrays string[] arr1; string[] arr2; Ok there are two way to copy arr1 into arr2:
|
| API Call | 11 Jun 2007 13:11 GMT | 1 |
How to call following API in C#? LONG SCardListReaders( SCARDCONTEXT hContext, LPCTSTR mszGroups,
|
| Data from unmanaged to managed | 11 Jun 2007 12:39 GMT | 3 |
I'm trying to specify the requirement from unmanaged DLL component that will be used by a managed application written in C#. The unmanaged DLL is implementing some kind of algorithm for defect detection that will generate results. Each defect result should be a
|
| this cf sender in event handlers | 11 Jun 2007 12:08 GMT | 3 |
Can someone please explain why the assertion in the following code fails? Could the assertion be made to succeed somehow? // code begins class MyButton : Button
|
| log4net implimentation in a DLL ..??? | 11 Jun 2007 11:00 GMT | 2 |
Here is my problem: log4net works fine with my Client (Windows Application .Net 1.1) but does not log any thing when i use it in my server (Com+ DLLs). Does any one know why or how to make it work.
|
| Rethrowing does not work? | 11 Jun 2007 10:40 GMT | 13 |
I do not understand something. A caught exception stack points to an argument-free 'throw' in a catch block. Meantime, it is widely known that these statements re-throw the original exceptions. I expected, therefore, that the stack points to the original 'throw e' code line.
|
| finding out "Process ID" via cmd Console | 11 Jun 2007 10:34 GMT | 1 |
I have a cmd file (batch file) which starts an exe after setting parameters. I need to find out the Process ID of the exe via a command. The problem is that my program, written in C# only knows the PID of the cmd file. I don't want to use a method like
|
| Is const allowed anywhere? | 11 Jun 2007 10:23 GMT | 8 |
I have just started learning C# ; I was working in C++ till now (and would like to if allowed, but learning new things dont hurt). I am used to specifiying "const" to get the assurance that unless someone specifically cast-away the constness, object wont change. So, as part
|
| Checking for a PDF reader | 11 Jun 2007 10:07 GMT | 3 |
I've been asked to write a WinForms app which will create reports as PDF documents. The client has agreed that all desktops (WinXP Pro, 32-bit Vista Business) *will* have Adobe Acrobat Reader installed but, in the interests of
|
| Why using command parameters? | 11 Jun 2007 09:57 GMT | 4 |
DbParameter dateAndTime = this.factory.CreateParameter(); dateAndTime.ParameterName = "@DateAndTime"; dateAndTime.DbType = DbType.DateTime; string utcDtString = nameValueCollection.Get("dateAndTime").TrimEnd('Z');
|