| Thread | Last Post | Replies |
|
| AppDomain.. etc | 14 Mar 2006 14:40 GMT | 2 |
If I know a executable's path, how can I load into the Current Domain. I assume that after loading, I will get a reference, so I can read the assembly's properties, including its resource files... etc... The above all assumes that I work in a full trust environment... so
|
| How to do in c# | 14 Mar 2006 14:21 GMT | 2 |
I am study a walkthrough at ms-help://MS.VSCC.v80/MS.MSDN.v80/MS.VisualStudio.v80.en/dv_deploy/html/4bd4b63a-2b91-431e-839c-5752443f0eaf.htm It is a VB example, there are code: <Security.Permissions.SecurityPermission(Security.Permissions.SecurityAction.Demand)>
|
| Crystal Reports Deployiment Failure | 14 Mar 2006 14:19 GMT | 2 |
I'm desesperate, for long 4 days that I am trying to deploy an application with crystal reports, and it fails... I checked the documentation and it says the merge modules necessary to implement on the installer.. I already put them there and every time I call a
|
| How to disable RowFilter | 14 Mar 2006 14:18 GMT | 1 |
I'have RowFilter in my aplication: DataView view = (DataView)this.klienciBindingSource.List; view.RowFilter = string.Format("IMIE LIKE '%{0}%'", textBox1.Text); and when I change text in textBox1 the dataGrid is filtering, but when I
|
| How to retrive data to samefields where we enter the data | 14 Mar 2006 14:15 GMT | 1 |
how to retrive the data,to same fields where we entered,and it must be editable...without datagrides,datalist..i want data must be visible in the same fields where i entered.Its urgent reply soon
|
| foreach with options? | 14 Mar 2006 14:05 GMT | 3 |
I have a collection which I need to navigate through in several different ways. Is there any way to structure my class such that I can have several different iterators? Ideally, I'd like to do something like:
|
| Using ArrayList Synchronized | 14 Mar 2006 13:45 GMT | 1 |
I have a class whose methods are getting called from multiple threads in my application. For example class DataDistribution
|
| reusing Code | 14 Mar 2006 13:21 GMT | 2 |
I have some code that is exactly the same except for 1 name. In the "for loops" below the 2nd parameters change as they are pointing to separate string arrays in the structure: nhDataBean.benefitGroupCodeList.GetUpperBound(0)
|
| Color Serialization | 14 Mar 2006 12:59 GMT | 2 |
I have a class with properties, and one of the properties is of type Color. I am Serializing this class to an XML file. In the file the XML tage for the Color property is remaining empty: "<EditorBackcolor />".
|
| Increase all digits in a number(string) one step | 14 Mar 2006 12:56 GMT | 10 |
Does anyone have a nice algorithm/method to increase all digits one step, e.g. 123123 to 234234 and 4444 to 5555 and 999999 to 000000? Best regards Niklas
|
| C#1.1 and C#2.0 compatibility | 14 Mar 2006 12:30 GMT | 2 |
Could somebody please answer the following questions? 1) Can all the .Net 1.1 executables run on a PC without the .Net 1.1 runtime, but with the .Net 2.0 runtime ? 2) Is the retro-installing flawless (I mean installing the .Net runtime 1.1
|
| c# update program question | 14 Mar 2006 10:25 GMT | 2 |
In my Windows Server 2003, I have an user account MyAccount with password MyPassword. I have some c# files in a particular folder MyFolder in that Win2003 machine.
|
| Automatic increase of version number for an assembly during the build process? | 14 Mar 2006 10:13 GMT | 3 |
In VS.Net 2003 it was easy to make the build number to increase automatically at each build. Therefore it was easy to ensure that only one assembly would get a certain build number. I'm doing "No touch deployment" so it's particularly important that the versioning works as it ...
|
| "Start without debugging" troubles | 14 Mar 2006 10:05 GMT | 1 |
I'm writing an app using C# visual studio express edition. When i run it in debug mode it runs fine and works perfectly, but when i run it without debugging (or from explorer) it crashes and comes up with a "send error report" dialog. Does anyone know why this happens, or how to ...
|
| Hiding a member in an extended class...? | 14 Mar 2006 09:12 GMT | 8 |
Hello NewsGroup, I have a base class and six classes that inherit from this base class. All members in the base class are used in it's extended classes except, in one of the extended class one member in the base class is not required. Is it
|