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
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
R

Rizwan Majeed

@Rizwan Majeed
About
Posts
5
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • how to get/set ASCII code of a character?
    R Rizwan Majeed

    You can get/set ACSII code for any of the character and vice versa as follows: // The encoding. ASCIIEncoding ascii = new ASCIIEncoding(); //Conversion From ACSII code to character Byte[] decodedBytesForChar= ascii.GetBytes("A"); //returns ACSII code for character A i.e. 65 Console.WriteLine("ACSII code for character A = {0}", decodedBytesForChar[0]); //Conversion From ACSII character to code Byte[] encodedBytes = new Byte[1]; encodedBytes[0] = 97; Console.WriteLine("ACSII character for code 97 = {0}", ascii.GetString(encodedBytes)); Rizwan

    C# tutorial question

  • Problem opening and reading file [modified]
    R Rizwan Majeed

    This code seems me ok, I think there could be some issues related to file/system security. Riz

    C# help csharp

  • Device Handling in C++?
    R Rizwan Majeed

    hi Sam, I have to communicate with a palm print device to check for a valide palm print. How could I manage to do it in C++ (under Windows & Linux environments), if there is no DLL for the Device. Is there any help about such type of problems i.e. Device Handling in C++ or VC++. If you have any information regarding this topic please let me know. Thanx, Riz.

    C / C++ / MFC c++ help question

  • Device Handling in C++?
    R Rizwan Majeed

    Is there any documentation or help in device handling using C++. If any one has the idea, please share it. Thank you.

    C / C++ / MFC c++ help question

  • Change Titletext of an SDI App at the very beginning
    R Rizwan Majeed

    To change the Window title you must use the SetWindowText() function as folows: 1- Override the function PreTranslateMessage() in the MainFrame Class 2- Write the SetWindowText() function here. Regards, Rizwan Majeed.

    C / C++ / MFC 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