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
N

NaNg15241

@NaNg15241
About
Posts
211
Topics
63
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Services-like platform?
    N NaNg15241

    I'd like to be able to make it cross-platform using MONO

    C# csharp database design help question

  • Services-like platform?
    N NaNg15241

    Hello, I wonder if there is a services-like platform in C# where I can build addons onto. And when I say services, I mean the kind of services Windows has, which I can inject dependencies, trigger a start\stop and add\remove addons as I wish. I will also need a way of controling it, like a console, MMC or some other kind of UI. Does anyone know of something similar to what I'm looking for? it'll really help me out :) Thanks in advance.

    C# csharp database design help question

  • black full-screen snapshot in win vista/7
    N NaNg15241

    Has anyone figured out the problem atleast? has its name or any info about it? It would really help me alot, thanks.

    C / C++ / MFC graphics game-dev help c++ winforms

  • black full-screen snapshot in win vista/7
    N NaNg15241

    Hello. I'm trying to capture a screen shot while in full-screen mode in a game. The game can use either Direct3D (directx) or OpenGL as its displaying driver. while trying to get the screenshot in both drivers (in fullscrteen mode) the image is black or unuseful. I'm aware that the problem is known, but I don't have any solution for it. I'm searching for the solution to this problem in C\C++ (though other languages will do aswell). I've tried to use GDI+, use a robot for the printscreen (btw it doesn't work even without the robot) and a bit more options, and still no idea how to get a screenshot of the fullscreen game in win vista\7. I'd appreciate any help. Sincerely, Me.

    C / C++ / MFC graphics game-dev help c++ winforms

  • ASP.NET Forums download? [modified]
    N NaNg15241

    Hello, I'm searching for a free dotnet based forum to download and install in my site, something nice with a nice admin area, like vBulletin or PhpBB. preferred to work with MySQL, though it can work with MSSQL 2005\2008. So far I've found DNN - however it doesn't meet my requirements, and some more numerous paid options. I'd be very thankful for your recommendations and links :) P.S I'd also appreciate message boards such as this one (codeproject), as long as it have a nice admin control panel :) Thanks.

    modified on Monday, July 20, 2009 3:15 PM

    ASP.NET csharp asp-net mysql sql-server algorithms

  • looking for a design pattern
    N NaNg15241

    the thing is - i was strongly advised not to hold the A class instance in Bs instance, someone told me it's bad design. What do you think? is it that bad of a design, could there be better? or this is the best option there is?

    Design and Architecture regex design architecture question

  • design pattern needed (for C#)
    N NaNg15241

    well excuse me for not having English as my native language and my day-to-day language ;-)

    C# regex csharp design architecture question

  • design pattern needed (for C#)
    N NaNg15241

    are you sure? (or are you just teasing me?) :x I can't find in google some info about it. Can you maybe give me a link for more info about it?

    C# regex csharp design architecture question

  • design pattern needed (for C#)
    N NaNg15241

    I'm lookin for a design-pattern that match what I need: I have class A which should hold a collection of class B or its inehrited classes. class B should be able to run functions and access properties on A and A should be able to run functions and access properties on B. I've been suggested to pass reference of As properties to B opon construction, but I'm lookin for the design-pattern... anyone know of any design-pattern similar to this? Thanks alot :) NaNg.

    C# regex csharp design architecture question

  • looking for a design pattern
    N NaNg15241

    I'm lookin for a design-pattern that match what I need: I have class A which should hold a collection of class B or its inehrited classes. class B should be able to run functions and access properties on A and A should be able to run functions and access properties on B. I've been suggested to pass reference of As properties to B opon construction, but I'm lookin for the design-pattern... anyone know of any design-pattern similar to this? Thanks alot :) NaNg.

    Design and Architecture regex design architecture question

  • internal and internal protected
    N NaNg15241

    No, the definitions of internal and internal protected are wrong. As I explained. In the code you can totally erase the "internal", because you're only playing with private\public modifiers.

    C#

  • internal and internal protected
    N NaNg15241

    You got something wrong. Public = Accessible from everywhere Protected = Accessible from class or derived classes. Private = Accessible only from the same class (if you don't specify anything, by default it will be Private) internal = Access is only for the same assembly. internal means that if I\anyone-else download your class library file (dll) and try to use it, I won't be able to use the stuff that signed with "internal". So what that you basically did was playing with the "Private" modifier. Hope you get what I wrote (I can be not-understandable in the morning). NaNg.

    C#

  • DateTime Format
    N NaNg15241

    mm = minutes MM = months so that format you want is dd-MM-yyyy

    C# help

  • Request.Form to Array
    N NaNg15241

    Request.Form returns NameValueCollection. you should do this: foreach (String var in Request.Form.Keys) temp.Add(Request.Form[var]); Hope I helped. :)

    C# data-structures question

  • Serialization problem
    N NaNg15241

    Hello. So this is my problems: I have to find a way to save a class of mine to a file. Solution: I found serialization and I thought it might work. But... When I tried BinarySerialization, some chars would just disapear, and I'd get an exception for "not a correct format", so BinarySerialization is OUT of the question (and I tried it in a few ways). XmlSerialization is throwing non-stopable exceptions, I just went to the one after, so that's out of the question also. I tried SOAP serialization, but now I came across another problem. I need to serialize a generic collection which I built. This gives me an exception, saying that it cannot serialize a generic class. (that's after successfuly serializing List). Another thing that I have with SOAP serialization is that i'm not sure that it'll work in Linux (I was unable to install mono), since I need to import the SOAP class from Windows folder. Can anyone recommend me on what to do? Waiting for your help. NaNg.

    C# help question wcf linux xml

  • plz help me with datagridview question
    N NaNg15241

    I don't know how to do it with the MS DataGridView. But there are plenty of open sources grid views that can do that. I'd try to search in codeproject for some. I also recommend that you'll look at this: http://www.codeproject.com/cs/miscctrl/csharpgridcontrol.asp[^] NaNg.

    C# question help

  • Serialization problem
    N NaNg15241

    My problem is that I can't serialize with binary formatter (even like you did, I can't), and SOAP doesn't let me serialize generic classes that I've made. I don't get what's hard to understand, I wrote it perfectly clear in the first message.

    C# help wcf linux xml json

  • Serialization problem
    N NaNg15241

    Hello. So these are my problems: I have to find a way to save a class of mine to a file. I found serialization and I thought it might work. But... When I tried BinarySerialization, some chars would just disapear, and I'd get an exception for "not a correct format". XmlSerialization is throwing non-stopable exceptions, I just went to the one after. I tried SOAP serialization, but now I came across another problem. I need to serialize a generic collection which I built. This gives me an exception, saying that it cannot serialize a generic class. (that's after successfuly serializing List). Another thing that I have with SOAP serialization is that i'm not sure that it'll work in Linux (I was unable to install mono), since I need to import the SOAP class from Windows folder. Can anyone recommend me on what to do? Waiting for your help. NaNg. :)

    C# help wcf linux xml json

  • Serialization problem
    N NaNg15241

    nevermind, I found the problem while debugging. It saved in the event B from some reason. I just added: [field: NonSerialized()] to every event. It works fine now. Thanks anyways :)

    C# help json question

  • Serialization problem
    N NaNg15241

    set a property which checks if this.OnChange != null and if not it triggers it.

    C# help json question
  • Login

  • Don't have an account? Register

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