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
C

CiNN

@CiNN
About
Posts
41
Topics
16
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • error C2512: 'Cryptography::CRC32' : no appropriate default constructor available
    C CiNN

    my last post has the source code which still don't compile with me http://www.rarhost.com/download-pvyb7b.html

    C / C++ / MFC help question

  • error C2512: 'Cryptography::CRC32' : no appropriate default constructor available
    C CiNN

    both since I can't compile I can't run

    C / C++ / MFC help question

  • error C2512: 'Cryptography::CRC32' : no appropriate default constructor available
    C CiNN

    here is le test project source for visual studio 2008 b2

    C / C++ / MFC help question

  • error C2512: 'Cryptography::CRC32' : no appropriate default constructor available
    C CiNN

    I don't seee anything that would prevent it from running either... I don't know whats wrong...

    C / C++ / MFC help question

  • error C2512: 'Cryptography::CRC32' : no appropriate default constructor available
    C CiNN

    I guess it does I just replaced the EXPORTS macro Visual Studio made for my code to be explicit on the forum. btw I'm using visual studio 2008 beta 2

    C / C++ / MFC help question

  • error C2512: 'Cryptography::CRC32' : no appropriate default constructor available
    C CiNN

    librarie project namespace Cryptography { class __declspec(dllexport) CRC32 { public: CRC32(void); [..] } } test program project using namespace Cryptography; CRC32 *pcrc=new CRC32(); when I try to use my CRC32 class I get this error error C2512: 'Cryptography::CRC32' : no appropriate default constructor available whats up ?? :sigh:

    C / C++ / MFC help question

  • how to initiate a class stored in string variable
    C CiNN

    Use an Interface

    C# tutorial

  • How to convert Struct to array
    C CiNN

    Use Serialization ? If the client is using .net

    C# data-structures tutorial question

  • how to hide base class method
    C CiNN

    okay

    C# visual-studio tutorial question

  • how to hide base class method
    C CiNN

    how do you hide unsupported method from a base class ? so that they don't show up in intellisense.

    C# visual-studio tutorial question

  • AllocConsole and Console
    C CiNN

    why not

    C#

  • AllocConsole and Console
    C CiNN

    I am using AllocConsole to add a console window to a window form at runtime but i can't write to it using console.write.

    C#

  • Pausing A Loop in Windows Application
    C CiNN

    make a recursive function and use a variable as the incrementer and in the button method increment the variable and call the function.

    C# algorithms data-structures help workspace

  • How to read a file that is always written to?
    C CiNN

    you just have to keep tracks of the position of the writing process and limit yourself to not read beyond where the last write position was.

    C# question tutorial

  • IsInputKey override and ding sound
    C CiNN

    i need to override this to enable getting tab in my keydown override.

    C# question

  • IsInputKey override and ding sound
    C CiNN

    when i override to handle tab in a textbox i have a ding sound like if the key is not supported/is not allowed in here. protected override bool IsInputKey( Keys keyData ) { if ( keyData == Keys.Tab ) { return true; } return base.IsInputKey( keyData ); } so how do i suppressed this sound ?

    C# question

  • Column Click with right mouse button ?
    C CiNN

    the column click event from listview doesnt handle the right mouse button? how to get it working

    C# tutorial question

  • make a new structure type like Int32
    C CiNN

    public struct Int32 : IComparable, IFormattable, IConvertible, IComparable, IEquatable how do you make a structure like Int32 , for exemple NewInt i = 15;

    C#

  • Total Posts: 1 Member Since: Jan 30, 2006 [C#] loading .pgm file within a Bitmap object
    C CiNN

    you forgot to scale the grayvalue # Each gray value is a number proportional to the intensity of the pixel, adjusted by the ITU-R Recommendation BT.709 gamma transfer function. (That transfer function specifies a gamma number of 2.2 and has a linear section for small intensities). A value of zero is therefore black. A value of Maxval represents CIE D65 white and the most intense value in the image and any other image to which the image might be compared. in the exemple 15 so pixel =(int)((grayValue *255)/15); PixelFormat should be the default Canonical # Each gray value is represented in pure binary by either 1 or 2 bytes. If the Maxval is less than 256, it is 1 byte. Otherwise, it is 2 bytes. The most significant byte is first. so you need to do either a readbyte or readuint16

    C# csharp graphics help html

  • Total Posts: 1 Member Since: Jan 30, 2006 [C#] loading .pgm file within a Bitmap object
    C CiNN

    write in a memory stream the bmp header and decode the pgm data to the stream and load the stream as a bitmap and voila.

    C# csharp graphics help html
  • Login

  • Don't have an account? Register

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