Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
A

AJ123

@AJ123
About
Posts
174
Topics
130
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • IIS - Server Application Unnavailable
    A AJ123

    thanks for reply i am running .Net 3.5. I am pretty certain i have just screwed up my ASPNet user. I am wondering what the easiest way to recreate it is.

    ASP.NET asp-net csharp sysadmin windows-admin business

  • IIS - Server Application Unnavailable
    A AJ123

    I appear to have broken my ASP.NET/IIS configuration. Everytime i goto round my localhost/*.ASPX i get a 'Server Application Unavailable' prompt. I have reinstalled Asp.Net via aspnet_regiis.exe and reinstalled IIS. But still no luck! 1) Does anyone have any ideas? 2) I think it maybe something to do with my ASPNET user - does any know what the requirements are for this user? Cheers Rich.

    ASP.NET asp-net csharp sysadmin windows-admin business

  • Load Assembly given a namespace
    A AJ123

    If i have a Namespace as a string is there are any framework support to find the assembly file with the most closely matching name. For example: If i have the assemblies x.DLL and X.Y.DLL. Then given the Namespace string 'X.Y.Z' - the 'X.Y.DLL' would be adopted. Thanks

    C# tutorial

  • ActiveX Control & Interop
    A AJ123

    I agree... It looks like interop is not calling through to the old property on the control. But i am at a loss... Managed to cast it back to the original interface that exposed the backcolor as uint. Bu that didn't help.

    C# com csharp question workspace

  • ActiveX Control & Interop
    A AJ123

    Yeah, its quite strange the ActiveX Control supports BackColor and ForeColor. When they come through COM Interop - the AxInterop file exposes them as .NET Color type. The standard interop files gives an interface with them as UINT. Neither of which work! Very frustrating considering the control works fine ouside of .NET.

    C# com csharp question workspace

  • ActiveX Control & Interop
    A AJ123

    Hi I have an ActiveX control which behaves well outside of the .NET environment. However when i used it via interop i can't seem to set the backcolor and forecolor properties. Anyone any ideas? Cheers

    C# com csharp question workspace

  • AppDomains & Loading Assemblies
    A AJ123

    Does anyone know if when I Load an assembly using Reflection I also have to load all of it Dependencies? This is the behavior I am currently seeing – but was hoping things would be a bit simpler. Cheers Rich

    C# question

  • AppDomain + Reflection
    A AJ123

    Soon as I do reflection on an Assembly in a seperate AppDomin. It would appear that it gets pulled into the currentDomain. Does anyone know how i can avoid this? Basically i just want a list of Types from an Assembly operating in my secondary domain. Anyone any suggestions? Rich

    C#

  • Stopping User Control executing in Designer
    A AJ123

    Hi there I have a user control which when placed on a form in the designer - appears to be running. A flashing cursor appears within one of the controls. Is there a property or attribute i should be using to stop this behaviour? Cheers Rich

    C# question

  • AppDomain - Loading a assemly
    A AJ123

    I am creating a testing harness for my app and merrily loading assemblies using reflection into a seperate app domain. What i was hoping to be able to do is unload the App Domain - releasing the file lock on the Assemblies. Allowing me to have write access to rebuild them in Visual Studio. Unfortunately the app still has locks on the assemblies. Can anyone think of what i might be missing? The code goes something like this: 1) Assembly assembly = reflectionDomain.Load(filename); 2) AppDomain.Unload(reflectionDomain); Anyone any clues? Cheers Rich

    C# csharp visual-studio testing beta-testing question

  • 'CopyLocal' - Reference Property
    A AJ123

    Hi Does anybody know where the Copy Local reference property is perstisted?? I assumed it would be in the project file, but I can't seem to find the defintion. Thanks

    C# question

  • MSBuild
    A AJ123

    I am just starting to look into MSBuild. Wonder if anyone could offer any pointers? Would the following be an easy thing to do? - Build a set of .CSProj files, in dependency order - Specify the 'reference path' as to pick up the correct dependies - Override what is in the project file and output to a build folder. Would MSbuild fully support this? Thanks in advance Aj

    C# question visual-studio

  • Iterating through Controls on A Form
    A AJ123

    Thanks Robert - Quite an elegant little solution there....:)

    C# csharp winforms question

  • Iterating through Controls on A Form
    A AJ123

    Hi There.... I am looking to iterate through A form's Controls collection. However i am also interested in control which are the child of panels. Is there any built support in WinForms? Or is the solution just to write my own little recursive method? Thanks in advance Aj

    C# csharp winforms question

  • VS2005 - ReferencePaths
    A AJ123

    Does anyone know of an easy way to maintain a series of assembly 'reference paths' across a large number of projects. I understand they are persisted in the proejct 'user' settings files. Initially i was wondering whether you could do something similar to a #Include in a xml. So at least they would only be stored once. Cheers Aj

    C# xml

  • Exception Windows - IDE
    A AJ123

    Hi there I've been a heavy user of the 'Exceptions' window in the IDE for a long time now. Its never really crossed my mind until now.... But aren't 'Thrown' and 'User-unhandled' mutually exclusive. As in if you have Thrown checked then 'User-unhandled' might as well not be checked? Thanks Rich

    C# visual-studio question

  • Form designer - executing user control properties
    A AJ123

    Thanks Ravi + Josh, both solutions appear to work well :)

    C# design question

  • Form designer - executing user control properties
    A AJ123

    Hi I have a user control which has a number of custom properties. Unfortunately these properties are not suitable for the designer to execute. As a result form’s which use this user control won’t open at design time in the designer. Is there some way to prevent the designer from executing my user control properties? Cheers Rich

    C# design question

  • Inserting a Row - Returning the ID
    A AJ123

    Found my answer :- There is a good discussion of this at: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnadonet/html/manidcrisis.asp[^]

    Database csharp question learning

  • ADO.NET - Inserting a row and getting the ID
    A AJ123

    Good Point! - Thanks Found my answer at : http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnadonet/html/manidcrisis.asp[^]

    C# csharp question learning
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups