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
M

milestanley

@milestanley
About
Posts
20
Topics
16
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • When is the moment to release C# 5.0?
    M milestanley

    As async programming, roslyn ctp and so on... When is the moment to release C# 5.0 by Microsoft?

    The Lounge csharp question announcement

  • Advice from Steve Jobs. Goodbye Hero.
    M milestanley

    I love Steve Jobs, but now..he was gone.... X|

    The Lounge help question discussion

  • How to defeat Microsoft?
    M milestanley

    How to defeat Microsoft, so can you teach me how to do?

    The Lounge tutorial question

  • How to deploy an Outlook 2003 add-in application(C# and VS 2008)?
    M milestanley

    I wrote an application that outlook 2003 in C#, but I don't know how to deploy it? Who can help me?

    C# csharp visual-studio help tutorial question

  • Do you know which office outlook 2003 component can be sign into Microsoft Exchange Server via outlook?
    M milestanley

    There has to be tools in Visual Studio 2008 for outlook that we can add to my software to allow us to connect via outlook connection to exchange.... so , which one can do that?

    C# csharp visual-studio sysadmin tools question

  • A problem about Crystal Reports ....
    M milestanley

    The charts look very messy when used with the database, so we need to modify the query to narrrow what info is displayed. Currently it is showing all of the information and it is too crowded. so How To Make it Clearer?

    C# database help tutorial question

  • If the 2012 prediction is true...
    M milestanley

    half-believe, half-doubt I hope that we human beings can understand the situation now... protect nature

    The Lounge question

  • If the 2012 prediction is true...
    M milestanley

    Recently, Our planet has suffered too many disasters, like flood, earthquake, hurricane, and so on. Is 2012 really coming?

    The Lounge question

  • Why not C++ reflection?
    M milestanley

    I'm kinda wondering...Why not C++ reflection?

    C / C++ / MFC c++ question

  • Silverlight ---- Viewbox Control : How ?
    M milestanley

    Yes, I have added...

    WPF visual-studio csharp c++ dotnet xml

  • Silverlight ---- Viewbox Control : How ?
    M milestanley

    But it doesn't work...

    WPF visual-studio csharp c++ dotnet xml

  • Silverlight ---- Viewbox Control : How ?
    M milestanley

    Hi, I don't understand how i can use viewbox control in Silverlight 3. I may use Silverlight Toolkit (for SL 3) or Silverlight 3 Controls implements native Viewbox? When i use this : xmlns:controls="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls" It doesn't work : The tag 'Viewbox' does not exist in XML namespace 'clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Toolkit'. Somebody can help me ? (Note: I use Visual Studio 2010 as the IDE) Thanks

    WPF visual-studio csharp c++ dotnet xml

  • Why is this?....The thread '<No Name>' (0xd88) has exited with code 0 (0x0).
    M milestanley

    When I run my Silverlight application, there was a message in Output Window: "The thread '<No Name>' (0xd88) has exited with code 0 (0x0)." Then, my application cannot run, and Why?

    WPF question

  • About pointer assignment [modified]
    M milestanley

    a.h: static ClassOne *one; a.cpp: ClassOne::one = this; //So, can I do it like this? But an error has occured: "expected constructor, destructor, or type conversion before '=' token"

    modified on Thursday, April 15, 2010 9:54 PM

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

  • How to assign to array?
    M milestanley

    As follows:

    int arr[], brr[];
    arr = brr; //error: cannot assign one array to another,
    //and I have a question, Why can't, but other language(i.e java,C#) can do that?

    so, how to do that assign one array to another?

    C / C++ / MFC question csharp java data-structures help

  • Strange Initialize..........
    M milestanley

    In "Programming Priciples and Practice Using C++". chapter 17.5 destructors

    //a very simplified vector of doubles
    class vector{
    int sz; // the size
    double* elem; //a pointer to the elements
    public:
    vector(int s) //constructor
    :sz(s), //"initialize sz", I have no idea what does it mean that writting?
    elem(new double[s]) //initialize elem, and the same as above
    {
    for(int i=0; i < s;i++) elem[i]=0; //initialize elements
    }
    int size() const {return sz;} //the current size
    };

    C / C++ / MFC c++ graphics question

  • Calculate factorial of any number less than 10000,but I don't know how to start with?
    M milestanley

    Calculate factorial of any number less than 10000,but I don't know how to start with? I just want to get an idea, not the source code.

    C / C++ / MFC css tutorial question

  • I want to copy strings,but occur this....."Access to memory errors....",why?
    M milestanley

    /*Copy strings*/ #include "stdafx.h" #include <iostream> using namespace std; /*Achieve via array*/ void copy_array(char from[], char to[]) { int i = 0; while(from[i] != '\0') { to[i] = from[i]; i++; } to[i] = '\0'; } /*Achieve via pointer*/ void copy_pointer(char *from, char *to) { while((*to++ = *from++) != '\0'); } int _tmain(int argc, _TCHAR* argv[]) { char *from = "c plus plus"; char *to = "oooooooooooooooo"; //copy_array(from, to); copy_pointer(from, to);//Here: Test.exe Department of 0x00411536 unhandled exception: //0xC0000005: Write Access Violation occurs when the //position of 0x00417ac8,Why? cout << to << endl; return 0; }

    C / C++ / MFC c++ data-structures performance question

  • What should I do about the RadioButtionList?
    M milestanley

    I'm so helpless,how to determine which radio button is selected?

    ASP.NET tutorial question

  • On Windows Programming, I'm a rookie,how can i get the name and information of the process ?
    M milestanley

    Such as the title!!!

    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